![]() |
2010-02-09
, 00:45
|
Posts: 172 |
Thanked: 170 times |
Joined on Jan 2010
@ Sweden
|
#2
|
![]() |
2010-02-09
, 00:57
|
Posts: 86 |
Thanked: 52 times |
Joined on Jan 2010
|
#3
|
![]() |
2010-02-09
, 01:02
|
Posts: 62 |
Thanked: 10 times |
Joined on Oct 2009
|
#4
|
Yes, what this does is move a few files to the 2GB home-partition, and add soft-links from the original locations to the new locations.
If you repeat, you will be moving the soft links instead of the real files, i.e. you will now be replacing the real files with the soft links you made earlier, and making new soft links to the old soft links.
![]() |
2010-02-09
, 01:16
|
Posts: 256 |
Thanked: 98 times |
Joined on Jan 2010
|
#5
|
![]() |
2010-02-09
, 01:52
|
Posts: 82 |
Thanked: 42 times |
Joined on Dec 2009
@ London
|
#6
|
I did this, and found free space on my root jumped to 93mb from 60mb before. Everything works normal.
![]() |
2010-02-09
, 02:01
|
Posts: 418 |
Thanked: 90 times |
Joined on Nov 2009
|
#7
|
![]() |
2010-02-09
, 02:07
|
Posts: 172 |
Thanked: 170 times |
Joined on Jan 2010
@ Sweden
|
#8
|
![]() |
2010-02-09
, 06:21
|
Posts: 1,427 |
Thanked: 2,077 times |
Joined on Aug 2009
@ Sydney
|
#9
|
![]() |
2010-02-09
, 07:13
|
|
Posts: 3,404 |
Thanked: 4,474 times |
Joined on Oct 2005
@ Germany
|
#10
|
The Following User Says Thank You to pycage For This Useful Post: | ||
1) root
2) rm -r /home/root/
3) root
4)
mkdir -p /home/root/usr/share
cd /usr/
for FILE in games include local src var
do
mv $FILE /home/root/usr/
ln -s /home/root/usr/$FILE /usr/
done
mkdir -p /home/root/var/cache
cd /var/cache/
for FILE in apt
do
mv $FILE /home/root/var/cache/
ln -s /home/root/var/cache/$FILE /var/cache/
done
cd /usr/share/
for FILE in fonts icons locale mime nokia-maps pixmaps sounds themes tutorial-applet zoneinfo
do
mv $FILE /home/root/usr/share/
ln -s /home/root/usr/share/$FILE /usr/share/
done
mkdir /home/root/usr/share/games
ln -s /home/root/usr/share/games
I did this, and found free space on my root jumped to 93mb from 60mb before. Everything works normal.
NOTE: just do this one time, since when i did it second time, my n900 firewire was broken. I have to reflash it myself. So, please do backup your files before doing this, and it might be risky although it works fine for me.