I am using Ubuntu Minimal + LXDE. I am wondering how can I auto-mount a partition (internal) on boot automatically. Currently I do something like
mount /dev/sda3 /media/works
But I want it to be permanent. Also I have GParted, but the Partition > UnMount is greyed out (yes, unmount, even though I haven't mounted it)
Unmount is greyed out because the partition isn't there to be unmounted. You haven't mounted it yet.
To make the partition auto-mount, first find out the UUID of /dev/sda3 by doing:
I'll assume you're using ext4 on /dev/sda3. Open up
gedit
like so:(Or, in the command line,
sudo vim
orsudo nano
instead ofgksudo gedit
.)Now you want to add a line to the bottom of that file. It should look something like this (UUID will be different):
For more info on
fstab
, this is a good resource.Use Disks utility. Select the disk, then click Additional partition options icon. Choose Edit Mount Options from drop-down menu.