I can't find a GUI, but I found this:
Auto Mounting HDD's
- You must have all your partitions mounted.
- Go to the Dash and open a Terminal.
Enter the following command:
sudo -H gedit /etc/mtab
A file will open in Gedit. Scroll to the bottom of the file and your newly mounted devices should be listed.
For example:
I looked for /dev/sda3
& /dev/sda4
and found them in these lines:
/dev/sda3 /media/my_name/Ext\040Storage\0401 ext4 rw,nosuid,nodev,uhelper+udisks2 0 0
/dev/sda4 /media/my_name/Ext\040Storage\0402 ext4 rw,nosuid,nodev,uhelper+udisks2 0 0
Make a note of these lines.
- Open a new Terminal window.
Enter this command:
sudo gedit /etc/fstab
A file will open in Gedit called fstab
. This is the config file for the auto mount.
Now scroll to the bottom of the fstab
file, copy the lines that you noted and paste them there, save and exit.
Now, you have your partitions mounted permanently.
To check everything is mounted without problem, open new Terminal window and enter this command:
sudo mount -a
If it shows no error, all is working..
Pysdm was a GUI for the above, but unfortunately there doesn't seem to be any answers available... So if anyone else is in the same predicament I hope that this helps.