it seems i ll be forever noob
short: plz tell me line to append in fstab, so as to auto mount ext4 partition at startup with read write permission to all user.
long:
Since i install *buntu every 2 weeks or so i decided to give permanent space for music, photos, videos on one of the partition.
i used gparted to make following partition. (single hard disk drive)
2gb for swap
~15gb primary partition for / ext4
90gb primary partition for DATA ext4.
kubuntu does not mount the 90gb ext4 partition. i manually have to click on that drive and enter root password.
here is what i could do with help of dibl's question #15. (thanks dibl for creating best 20 noob question) and using some info from http://wiki.archlinux.org/index.php/Fstab:
appended this line:
but still
1. boot process is not smooth. it stucks at playmouth screen..resuming only after hitting alt+ctrl+del to show the log-in.
2. i dont have read write permission. (though now data partition is mounted without password )
Please tell me what i am doing wrong.
thanks in advance...
short: plz tell me line to append in fstab, so as to auto mount ext4 partition at startup with read write permission to all user.
long:
Since i install *buntu every 2 weeks or so i decided to give permanent space for music, photos, videos on one of the partition.
i used gparted to make following partition. (single hard disk drive)
2gb for swap
~15gb primary partition for / ext4
90gb primary partition for DATA ext4.
kubuntu does not mount the 90gb ext4 partition. i manually have to click on that drive and enter root password.
here is what i could do with help of dibl's question #15. (thanks dibl for creating best 20 noob question) and using some info from http://wiki.archlinux.org/index.php/Fstab:
Code:
sudo mkdir /mnt/data sudo nano /etc/fstab
Code:
# DATA partition on /mnt/data UUID=307fe982-f44f-4e15-adca-31de34976c7a /mnt/data ext4 auto,rw,noatime 0 2
1. boot process is not smooth. it stucks at playmouth screen..resuming only after hitting alt+ctrl+del to show the log-in.
2. i dont have read write permission. (though now data partition is mounted without password )
Please tell me what i am doing wrong.
thanks in advance...
Comment