View Single Post
Posts: 446 | Thanked: 207 times | Joined on Sep 2012 @ Austria/Germany
#1
EXT4 has several advantages in comparison to the FAT filesystem which is the default for your N9's mmcblk0p1 (MyDocs) partition

+ support of symlinks, ownership and other file attributes....
+ no 4GB file size limitation
+ .....

cons:

- Windows doesn't have read/write support for ext4 ->
you can no longer plug in you phone and simply transfer files (no problems under linux of course!)

[HowTo]

I'm not a 100% but AFAIK open mode is a prerequisite to do this....

formatting you mmcblk0p1 partition to use EXT4 is quite easy...

1. backup your files and don't forget about the hidden files

2. unmount the mmcblk0p1 partition

open up terminal

Code:
#devel-su default pw is rootme
#umount /home/user/MyDocs
3. reformat the partition

Code:
/sbin/mkfs.ext4 /dev/mmcblk0p1
4. change /etc/fstab to match the parameters of your new partition

I use nano as a text editor but you can use whatever your comfortable with

Code:
nano /etc/fstab
alter the line for your MyDocs partition to accommodate for the new file system - mine looks like this:

Code:
/dev/mmcblk0p1 /home/user/MyDocs ext4 rw,noatime,errors=remount-ro,barrier=1 0 0
make sure that there are no typos and no additional spaces!!!

5. reboot!

that's it!





Hey guys,

i was wondering if there's a way to format the MyDocs partition with something like ext3 or something because this FAT **** is really annoying me...
Cannnot create symlinks, 4gb file size limitation....

is it possible to go ext3 with stock kernel?
Are there any downsides?

thanx anyway

Last edited by mcbook; 2013-12-02 at 09:37. Reason: Added little HowTo