4

I have a partition mounted with mount /mnt/filesys.bin /mnt/mymnt/

Each time I reboot, I need to remount. How can I keep this mounted after every reboot?

2 Answers2

14

From man fstab:

The file /etc/fstab contains descriptive information about the filesystems the system can mount. fstab is only read by programs, and not written; it is the duty of the system administrator to properly create and maintain this file.

To do what you want you just need to add an entry for this mount in /etc/fstab as follows:

  1. Open new terminal window Ctrl+Alt+T.

  2. Open the file /etc/fstab for edit with root privileges, using nano:

    sudo nano /etc/fstab
    
  3. Go to the bottom of the file and add the following line - here I'm assuming it is an image file, so we need to use the loop option (reference):

    /mnt/filesys.bin /mnt/mymnt/ auto nofail,defaults,loop 0 0
    

    If you want to mount physical device (or partition), you can identify it by several different ways, for example by its UUID. To find the UUID use sudo blkid while the device is mounted (or use the GUI tool Disks). In this case the entry could look like:

    /dev/disk/by-uuid/a58b40e4-eb9b-4720-835b-785a3be3ae33 /mnt/mymnt/ auto nosuid,nodev,nofail 0 0
    

    or:

    UUID=a58b40e4-eb9b-4720-835b-785a3be3ae33 /mnt/mymnt/ auto nosuid,nodev,nofail 0 0
    

    Where a58b40e4-eb9b-4720-835b-785a3be3ae33 is the UUID of your device.

  4. Save the file: Ctrl+O, then exit from nano: Ctrl+X.

  5. Restart the system or type sudo mount -a to see the result.

Do not forgot to remove that entry if you remove the image file.

pa4080
  • 29,831
  • 2
    For external media I use UUID and the 'nofail' option. To get the UUID, issue the blkid command in terminal, while the device is mounted,then to fstab use UUID=<uuid> /mnt/mymount auto nofail,defaults – Stephen Boston Nov 22 '18 at 09:56
  • If I was writing the answer now I would include some example of systemd.mount unit. – pa4080 Mar 21 '23 at 20:47
5

@pa4080 is totally right, but the really easy solution is (running as the superuser, so sudo su first):

mount /mnt/filesys.bin /mnt/mymnt/
grep mymnt /etc/mtab >>/etc/fstab

The first line mounts your device with whatever other options you need, the second will put it into /etc/fstab with the same options so that it gets mounted on every reboot.

Auspex
  • 1,124
  • You're the only person with a solution that's an actual command, on the command line. Everyone else has an essay about how to manually modify the files by hand. – Andrew Koster Oct 19 '21 at 22:32