Step 1: Don't use the Disks utility.Step 2: Fix your /etc/fstabNote: You might want to run the following command to make sure it really has that UUID number and that it is in fact formatted to ext3:- Code: Select all
sudo blkid -c /dev/null
** Create a mount point for this partition to live in. I'm going to use /mnt/Data but it can be anything you want. Just make sure you use the exact same mount point in fstab:
- Code: Select all
sudo mkdir /mnt/Data
** Change this:
/dev/disk/by-uuid/a8232d93-dc61-40a6-941c-5567a1b6134f /mnt/a8232d93-dc61-40a6-941c-5567a1b6134f auto nosuid,nodev,nofail,x-gvfs-show,x-gvfs-name=mppart 0 0
To this:
- Code: Select all
UUID=a8232d93-dc61-40a6-941c-5567a1b6134f /mnt/Data ext3 defaults,noatime 0 2
** If the partition is currently mounted unmount it.
** Then run the following command to test for syntax errors and if there are none mount the partition:
- Code: Select all
sudo mount -a