View Single Post
Posts: 53 | Thanked: 3 times | Joined on Jul 2007
#35
Originally Posted by stewp6340 View Post
middguy,

Did you turn virtual memory on from Tools->Control Panel->Memory->Virtual tab? How much did you enable (default seems to be 64MB)?
Yes that's the way. Pickup 64 MB. You can lower it or disable it or even keep it after tar is over successfully.


While you are at it, use the partition type as 'b' instead of '6' for /dev/mmcblk0p1
i.e instead of
Code:
# apt-get install e2fsprogs
# umount /media/mmc1
# umount /media/mmc2 (for N800 only!)
# sfdisk /dev/mmcblk0
/dev/mmcblk0p1:1,15000,6
/dev/mmcblk0p2:15001,,
/dev/mmcblk0p3:
/dev/mmcblk0p4:
Use
Code:
# apt-get install e2fsprogs
# umount /media/mmc1
# umount /media/mmc2 (for N800 only!)
# sfdisk /dev/mmcblk0
/dev/mmcblk0p1:1,52500,b
/dev/mmcblk0p2:52501,,
/dev/mmcblk0p3:
/dev/mmcblk0p4:
That will make mmc1 partition as FAT32 instead of FAT16. Believe me you will realise its imprtance later. ALSO NOTE: that the above numbers are for 2 GB ard. The 52500 will put about 1.68 GB in MMC1 and 320 MB in mmc2 which is for dual boot partition on your mmc.

Last edited by tama; 2007-08-08 at 12:53.