<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://maemo.octonezd.me/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=84.20.228.4</id>
	<title>Maemo Wiki Mirror - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://maemo.octonezd.me/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=84.20.228.4"/>
	<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php/Special:Contributions/84.20.228.4"/>
	<updated>2026-04-22T11:06:35Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=User:Ruskie&amp;diff=50250</id>
		<title>User:Ruskie</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=User:Ruskie&amp;diff=50250"/>
		<updated>2010-02-16T16:52:17Z</updated>

		<summary type="html">&lt;p&gt;84.20.228.4: /* My repos */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= About me =&lt;br /&gt;
Sometime&lt;br /&gt;
&lt;br /&gt;
= My repos =&lt;br /&gt;
&lt;br /&gt;
 non-optified repo: deb https://repo.codemages.net/ nonopt/&lt;br /&gt;
 optified repo: deb https://repo.codemages.net/ opt/&lt;br /&gt;
&lt;br /&gt;
What do the repos contain?&lt;br /&gt;
* zsh - just don&#039;t set it as your default shell&lt;br /&gt;
* xmms2 with wavpack, mpg123, mpcdec, ogg, flac, etc... support - also updated to not start at max loud&lt;br /&gt;
* fcron - requires some manual work after the install(I&#039;ll try to give it an event.d script and do that stuff after the fact but not just yet)&lt;br /&gt;
* gcoreutils and gtar&lt;br /&gt;
* rsyslog&lt;br /&gt;
* curl&lt;br /&gt;
* djmount&lt;br /&gt;
* tinc&lt;br /&gt;
* xset and xrdb&lt;br /&gt;
&lt;br /&gt;
 create a fcron user&lt;br /&gt;
 chown fcron:fcron /etc/fcron.*&lt;br /&gt;
 chown -R fcron:fcron /var/spool/fcron&lt;br /&gt;
 &lt;br /&gt;
 Then edit /etc/event.d/rcS-late&lt;br /&gt;
 &lt;br /&gt;
 And after initctl emit MOUNTS_OK&lt;br /&gt;
 &lt;br /&gt;
 put:&lt;br /&gt;
 /etc/init.d/fcron start&lt;br /&gt;
&lt;br /&gt;
= Repartitioning =&lt;br /&gt;
Here is what I did to repartition:&lt;br /&gt;
http://talk.maemo.org/showpost.php?p=411490&amp;amp;postcount=51&lt;br /&gt;
&lt;br /&gt;
Copied from the post by request:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 &lt;br /&gt;
 echo &amp;quot;Not for running only REFERENCE!!!&amp;quot;&lt;br /&gt;
 exit&lt;br /&gt;
 &lt;br /&gt;
 ### THIS ALL APPLIES TO ALL PR 1.0 PR 1.0.1 PR 1.1 ###&lt;br /&gt;
 &lt;br /&gt;
 # backup your user&lt;br /&gt;
 mount /dev/mmcblk1p1 /media/mmc1&lt;br /&gt;
 cp -a /home/user /media/mmc1/&lt;br /&gt;
 &lt;br /&gt;
 # partitioning&lt;br /&gt;
 sfdisk -uM --no-reread /dev/mmcblk0 &amp;lt;&amp;lt; FDSK&lt;br /&gt;
 0 2048 c&lt;br /&gt;
 2049 20544 83&lt;br /&gt;
 22593 768 82&lt;br /&gt;
 23361 7170 5&lt;br /&gt;
 23362 2048 83&lt;br /&gt;
 25410 5120 83&lt;br /&gt;
 &lt;br /&gt;
 FDSK&lt;br /&gt;
 &lt;br /&gt;
 # REBOOT&lt;br /&gt;
 &lt;br /&gt;
 # do this sometime&lt;br /&gt;
 mkfs.ext2 /dev/mmcblk0p5&lt;br /&gt;
 mkfs.ext2 /dev/mmcblk0p2&lt;br /&gt;
 mkfs.ext2 /dev/mmcblk0p6&lt;br /&gt;
 mkfs.vfat /dev/mmcblk0p1&lt;br /&gt;
 mkswap /dev/mmcblk0p3&lt;br /&gt;
 &lt;br /&gt;
 # change /etc/event.d/rcS-late&lt;br /&gt;
 # comment out generation of fstab&lt;br /&gt;
 # the following sed command will add a comment character &amp;quot;#&amp;quot;&lt;br /&gt;
 # at the start of lines 10-20 &lt;br /&gt;
 sed &amp;quot;10,20s:\(.*\):#\1:&amp;quot; /etc/event.d/rcS-late &amp;gt; /etc/event.d/rcS-late.new&lt;br /&gt;
 cp /etc/event.d/rcS-late.new /etc/event.d/rcS-late&lt;br /&gt;
 &lt;br /&gt;
 # add mount /home/user/MyDocs&lt;br /&gt;
 # this sed command inserts /bin/mount /home/user/MyDocs || echo &#039;Failed to mount&#039; on line 23&lt;br /&gt;
 sed &amp;quot;23i/bin/mount /home/user/MyDocs || echo &#039;Failed to mount /home/user/MyDocs partition.&#039;&amp;quot; /etc/event.d/rcS-late &amp;gt; /etc/event.d/rcS-late.new&lt;br /&gt;
 cp /etc/event.d/rcS-late.new /etc/event.d/rcS-late&lt;br /&gt;
 rm /etc/event.d/rcS-late.new&lt;br /&gt;
 # change /etc/init.d/rcS&lt;br /&gt;
 # this sed command starts on line 197 and if it finds: load_extra_module&lt;br /&gt;
 # it will replace it with: load_extra_module newline and a mount for usr and opt&lt;br /&gt;
 sed &amp;quot;197s:load_extra_modules:load_extra_modules\nmount /usr || echo &#039;Failed to mount /usr&#039;\nmount /opt || echo &#039;Failed to mount /opt&#039;:&amp;quot; /etc/init.d/rcS &amp;gt; /etc/init.d/rcS.new&lt;br /&gt;
 cp /etc/init.d/rcS.new /etc/init.d/rcS&lt;br /&gt;
 rm /etc/init.d/rcS.new&lt;br /&gt;
 # fstab&lt;br /&gt;
 cat &amp;lt;&amp;lt; FSTAB &amp;gt; /etc/fstab&lt;br /&gt;
 rootfs / rootfs defaults,errors=remount-ro,noatime 0 0&lt;br /&gt;
 /dev/mmcblk0p6 /usr ext2 rw,noatime,nodiratime,errors=continue 0 0&lt;br /&gt;
 /dev/mmcblk0p5 /opt ext2 rw,noatime,nodiratime,errors=continue 0 0&lt;br /&gt;
 /dev/mmcblk0p3 none swap sw 0 0&lt;br /&gt;
 /dev/mmcblk0p2 /home ext2 rw,noatime,nodiratime,errors=continue 0 0&lt;br /&gt;
 /dev/mmcblk0p1 /home/user/MyDocs vfat noauto,nodev,noexec,nosuid,noatime,nodiratime,utf8,uid=29999,shortname=mixed,dmask=000,fmask=0133,rodir 0 0&lt;br /&gt;
 &lt;br /&gt;
 FSTAB&lt;br /&gt;
 mkdir /usra&lt;br /&gt;
 mount /dev/mmcblk0p6 /usra&lt;br /&gt;
 cp -a /usr/* /usra/&lt;br /&gt;
 mount /home&lt;br /&gt;
 mount /home/user/MyDocs&lt;br /&gt;
 mount /dev/mmcblk1p1 /media/mmc1&lt;br /&gt;
 cp -a /media/mmc1/user /home/&lt;br /&gt;
 &lt;br /&gt;
 mkdir /tmproot&lt;br /&gt;
 mount -o bind / /tmproot&lt;br /&gt;
Output of df -h&lt;br /&gt;
 Filesystem                Size      Used Available Use% Mounted on&lt;br /&gt;
 rootfs                  227.8M    142.0M     81.6M  64% /&lt;br /&gt;
 /dev/mmcblk0p6            4.9G    293.1M      4.4G   6% /usr&lt;br /&gt;
 /dev/mmcblk0p5            2.0G    198.1M      1.7G  10% /opt&lt;br /&gt;
 /dev/mmcblk0p2           19.7G      1.2G     17.5G   6% /home&lt;br /&gt;
 /dev/mmcblk0p1            2.0G    287.4M      1.7G  14% /home/user/MyDocs&lt;br /&gt;
&lt;br /&gt;
= Setting profile from the terminal =&lt;br /&gt;
The reason for fcron in my case was that I wanted the ability to have it set a specific profile at a specific time. This is the script that does this:&lt;br /&gt;
cat /home/user/setprofile.sh &lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 profile=$1&lt;br /&gt;
 &lt;br /&gt;
 dbus-send \&lt;br /&gt;
            --print-reply \&lt;br /&gt;
            --type=method_call \&lt;br /&gt;
            --dest=com.nokia.profiled \&lt;br /&gt;
            /com/nokia/profiled com.nokia.profiled.set_profile \&lt;br /&gt;
            string:$profile &amp;gt; /dev/null&lt;br /&gt;
 echo &amp;quot;$(date +%Y-%m-%dT%H:%M) Set profile to $profile&amp;quot; &amp;gt; /tmp/setprofile.sh.log&lt;br /&gt;
&lt;br /&gt;
= My remove list =&lt;br /&gt;
Stuff I removed by default&lt;br /&gt;
&lt;br /&gt;
 adobe-flashplayer&lt;br /&gt;
 amazon-installer&lt;br /&gt;
 ap-installer&lt;br /&gt;
 as-config-applet-0&lt;br /&gt;
 as-daemon-0&lt;br /&gt;
 camel-as-provider-0&lt;br /&gt;
 camelisync&lt;br /&gt;
 ezitext-czech&lt;br /&gt;
 ezitext-danish&lt;br /&gt;
 ezitext-dutch&lt;br /&gt;
 ezitext-english-gb&lt;br /&gt;
 ezitext-english-us&lt;br /&gt;
 ezitext-essential-plugins&lt;br /&gt;
 ezitext-finnish&lt;br /&gt;
 ezitext-french-ca&lt;br /&gt;
 ezitext-french-fr&lt;br /&gt;
 ezitext-german&lt;br /&gt;
 ezitext-greek&lt;br /&gt;
 ezitext-italian&lt;br /&gt;
 ezitext-norwegian&lt;br /&gt;
 ezitext-polish&lt;br /&gt;
 ezitext-portuguese-pt&lt;br /&gt;
 ezitext-russian&lt;br /&gt;
 ezitext-spanish-es&lt;br /&gt;
 ezitext-spanish-us&lt;br /&gt;
 ezitext-swedish&lt;br /&gt;
 facebook-installer&lt;br /&gt;
 foreca-installer&lt;br /&gt;
 google-search-widget&lt;br /&gt;
 hildon-welcome&lt;br /&gt;
 hildon-welcome-default-logo&lt;br /&gt;
 libas-common-utils-0&lt;br /&gt;
 libas-protocol-0&lt;br /&gt;
 libas-storage-0&lt;br /&gt;
 libezitext&lt;br /&gt;
 libtinymail-1.0-0&lt;br /&gt;
 libtinymail-camel-1.0-0&lt;br /&gt;
 libtinymail-gnomevfs-1.0-0&lt;br /&gt;
 libtinymail-maemo-1.0-0&lt;br /&gt;
 libtinymailui-1.0-0&lt;br /&gt;
 libtinymailui-gtk-1.0-0&lt;br /&gt;
 modest&lt;br /&gt;
 modest-as-plugin-0&lt;br /&gt;
 modest-l10n-cscz &lt;br /&gt;
 modest-l10n-dadk &lt;br /&gt;
 modest-l10n-dede&lt;br /&gt;
 modest-l10n-engb&lt;br /&gt;
 modest-l10n-enus&lt;br /&gt;
 modest-l10n-eses&lt;br /&gt;
 modest-l10n-esmx&lt;br /&gt;
 modest-l10n-fifi&lt;br /&gt;
 modest-l10n-frca&lt;br /&gt;
 modest-l10n-frfr&lt;br /&gt;
 modest-l10n-itit&lt;br /&gt;
 modest-l10n-mr0&lt;br /&gt;
 modest-l10n-nlnl&lt;br /&gt;
 modest-l10n-nono&lt;br /&gt;
 modest-l10n-plpl&lt;br /&gt;
 modest-l10n-ptpt&lt;br /&gt;
 modest-l10n-ruru&lt;br /&gt;
 modest-l10n-svse&lt;br /&gt;
 modest-nokiamessaging-plugin-l10n-cscz&lt;br /&gt;
 modest-nokiamessaging-plugin-l10n-dadk&lt;br /&gt;
 modest-nokiamessaging-plugin-l10n-dede&lt;br /&gt;
 modest-nokiamessaging-plugin-l10n-engb&lt;br /&gt;
 modest-nokiamessaging-plugin-l10n-enus&lt;br /&gt;
 modest-nokiamessaging-plugin-l10n-eses&lt;br /&gt;
 modest-nokiamessaging-plugin-l10n-esmx&lt;br /&gt;
 modest-nokiamessaging-plugin-l10n-fifi&lt;br /&gt;
 modest-nokiamessaging-plugin-l10n-frca&lt;br /&gt;
 modest-nokiamessaging-plugin-l10n-frfr&lt;br /&gt;
 modest-nokiamessaging-plugin-l10n-itit&lt;br /&gt;
 modest-nokiamessaging-plugin-l10n-mr0&lt;br /&gt;
 modest-nokiamessaging-plugin-l10n-nlnl&lt;br /&gt;
 modest-nokiamessaging-plugin-l10n-nono&lt;br /&gt;
 modest-nokiamessaging-plugin-l10n-plpl&lt;br /&gt;
 modest-nokiamessaging-plugin-l10n-ptpt&lt;br /&gt;
 modest-nokiamessaging-plugin-l10n-ruru&lt;br /&gt;
 modest-nokiamessaging-plugin-l10n-svse&lt;br /&gt;
 modest-providers-data&lt;br /&gt;
 nokiamessaging&lt;br /&gt;
 osso-startup-wizard&lt;br /&gt;
 osso-tutorial-l10n-cscz&lt;br /&gt;
 osso-tutorial-l10n-dadk&lt;br /&gt;
 osso-tutorial-l10n-dede&lt;br /&gt;
 osso-tutorial-l10n-engb&lt;br /&gt;
 osso-tutorial-l10n-enus&lt;br /&gt;
 osso-tutorial-l10n-eses&lt;br /&gt;
 osso-tutorial-l10n-esmx&lt;br /&gt;
 osso-tutorial-l10n-fifi&lt;br /&gt;
 osso-tutorial-l10n-frca&lt;br /&gt;
 osso-tutorial-l10n-frfr&lt;br /&gt;
 osso-tutorial-l10n-itit&lt;br /&gt;
 osso-tutorial-l10n-mr0&lt;br /&gt;
 osso-tutorial-l10n-nlnl&lt;br /&gt;
 osso-tutorial-l10n-nono&lt;br /&gt;
 osso-tutorial-l10n-plpl&lt;br /&gt;
 osso-tutorial-l10n-ptpt&lt;br /&gt;
 osso-tutorial-l10n-ruru&lt;br /&gt;
 osso-tutorial-l10n-svse&lt;br /&gt;
 ovi-promotion-widget&lt;br /&gt;
 rtcom-accounts-plugin-gtalk&lt;br /&gt;
 rtcom-accounts-plugin-nokiachat&lt;br /&gt;
 sharing-rtcom&lt;br /&gt;
 sharing-service-flickr&lt;br /&gt;
 sharing-service-ovi&lt;br /&gt;
 skyhost-bin&lt;br /&gt;
 skyhost-vengine&lt;br /&gt;
 status-area-applet-activesync-0&lt;br /&gt;
 telepathy-spirit&lt;br /&gt;
 tutorial-home-applet&lt;br /&gt;
 dtg-installer&lt;br /&gt;
 osso-accounts-plugin-skype&lt;br /&gt;
 rtcom-abook-skype-plugin&lt;br /&gt;
 hildon-desktop-application-shortcuts-mr0&lt;br /&gt;
&lt;br /&gt;
You can check what any of these are with: apt-cache show name&lt;/div&gt;</summary>
		<author><name>84.20.228.4</name></author>
	</entry>
</feed>