This is my gParted screen

[1] Find the correct UUID number for your windows partitions:
Code: Select all
sudo blkid -c /dev/null
In my case: /dev/sda6: UUID="af4f8440-66b3-4001-9708-f9e1d092c8dc" TYPE="ext4"
[2] Create permanent mountpoints for your partitions to live in, in my case:
sudo mkdir /media/Data
[3] Edit fstab as root:
Code: Select all
gksudo gedit /etc/fstab
[4] Add the following lines to the end of fstab, examples:
Code: Select all
UUID=af4f8440-66b3-4001-9708-f9e1d092c8dc /media/Data ext4 defaults,noatime 0 2
[5] If you have already mounted these partitions manually through computer(icon) - unmount them.
[6] Run the following command that will test for errors and if there are none mount the partitions to their new home without requiring a reboot:
Code: Select all
sudo mount -a
[] Once it's mounted take possession of the mounted partition. For example:
Code: Select all
sudo chown /media/Data