![]() |
2009-05-07
, 18:42
|
Posts: 30 |
Thanked: 29 times |
Joined on Aug 2008
@ Canada
|
#2
|
![]() |
2009-05-07
, 19:35
|
|
Moderator |
Posts: 7,109 |
Thanked: 8,820 times |
Joined on Oct 2007
@ Vancouver, BC, Canada
|
#3
|
So, what to do? Do I need to revert my brilliant idea and copy everything back to /home/user?
L.
The Following User Says Thank You to qole For This Useful Post: | ||
![]() |
2009-05-07
, 20:02
|
Posts: 146 |
Thanked: 15 times |
Joined on Oct 2008
|
#4
|
Yes, put /home/user back, but you can symlink other parts of home, for instance the document directories under MyDocs. Find out what specific directories are using up the most space, and symlink only those ones.
And yes, you can only symlink directories that can be stored on FAT partitions, so no executables, symlinks, etc are possible inside the symlinked directories.
![]() |
2009-05-07
, 23:26
|
|
Moderator |
Posts: 7,109 |
Thanked: 8,820 times |
Joined on Oct 2007
@ Vancouver, BC, Canada
|
#5
|
![]() |
2009-05-08
, 01:51
|
Posts: 146 |
Thanked: 15 times |
Joined on Oct 2008
|
#6
|
Sorry I wasn't clear, and I was even a bit wrong. If you are using your standard SD card (which should have a FAT partition as the first partition for a few good reasons), then you will be symlinking to FAT, which is lacking a few things that are available on ext2/ext3 partitions.
![]() |
2009-05-08
, 06:17
|
|
Moderator |
Posts: 7,109 |
Thanked: 8,820 times |
Joined on Oct 2007
@ Vancouver, BC, Canada
|
#7
|
![]() |
2009-05-11
, 00:12
|
Posts: 146 |
Thanked: 15 times |
Joined on Oct 2008
|
#8
|
You should always leave a token FAT partition on your card to be automounted by Maemo. Please search the forums for the reasons why it isn't an especially good idea to have your SD card entirely formatted as a linux filesystem.
![]() |
2009-05-11
, 04:46
|
|
Moderator |
Posts: 7,109 |
Thanked: 8,820 times |
Joined on Oct 2007
@ Vancouver, BC, Canada
|
#9
|
umount /media/mmc2 mount -t ext3 /dev/mmcblk0p1 /media/mmc2 -o noatime
![]() |
2009-05-11
, 15:26
|
Posts: 146 |
Thanked: 15 times |
Joined on Oct 2008
|
#10
|
hm, maybe a manual umount / mount...
Code:umount /media/mmc2 mount -t ext3 /dev/mmcblk0p1 /media/mmc2 -o noatime
also, are you sure it is auto-mounting as ext3? I suspect it is mounting ext2...
I had a brilliant idea to make room: to move my /home/user to the internal memory card, and make a link:
ln -s /media/mmc2/HOME /home/user
Soon I discovered that my brilliant idea was stupid. First, because my gnome setups are not saved. Secondly, because when I plug the N800 to my PC, /media/mmc2 gets unmounted making another mess...
So, what to do? Do I need to revert my brilliant idea and copy everything back to /home/user?
Thanks!
L.