I've got an entry for an external harddrive in my fstab:
UUID="680C0FE30C0FAAE0" /jgdata ntfs noatime,rw
But sometimes this drive isn't plugged in at boot time. This leaves me half way through a boot, with a prompt to "Continue Waiting, press S or press M" but no keypress has any affect at this stage (including Ctrl-Alt-Delete, not even caps-lock).
Short of writing a script to check the output of fdisk -l
, how can I mount this drive at boot time only if it is present? It would be handy to have an fdisk entry for this drive, so I can just type mount /jgdata
instead of needing a device name.
You're all on the right trail. I've found a way that is a little more clean and better form.
The correct option to add in
fstab
isnofail
, however, it needs to come afterauto
. If you change it tonoauto
, it will never mount during boot. If you addnobootwait
to the bootloader, you could potentially miss something serious, such as mounting the partition beforefsck
finishes checking it, or not mounting a partition that is used in the boot process.After making the above change, The system will start normally (and mount the volume) if the device is plugged in while the system is shutdown. It will also boot normally if the device is not present at boot time.
The only inconvenience is that if you connect the device while the system is running, depending on configuration (too many variables to test), the device may not mount immediately. This can be remedied with a simple
mount -a
ormount /specific_device
or a reboot.I had the same issue - I've done one extra step
If you use the
nofail
option in/etc/fstab
, the system will look for your disk (and partition) at boot time. If the device is plugged, the filesystem will be mounted. If not, the boot will continue as normal.See arch wiki: https://wiki.archlinux.org/index.php/Fstab
Example
I've tried to boot the system with and without the device plugged, and it works ok.
What I've not achieved is to automount when disk is plugged after boot (when isn't plugged at boot). I must use
mount -a
as root to mount all again.worked for me.
nofail
- Do not report errors for this device if it does not exist.x-systemd.device-timeout=30
- Boot will take 30 seconds longer if device does not exist (default is 90 secs).Source: https://wiki.archlinux.org/index.php/fstab#External_devices
does the noauto option let the boot process continue?
it doesn't automatically mount if present, but it does get it known if present so a simple mount /jgdata works...then a scripted mount /jdata wouldn't need an output check, just catch the error and keep booting
edit: upon some further reading bootwait is probably a more correct option to pass...(usually used for network shares that might not be present until later in the boot process, but it might still cause a hang, idk)
and the mount script could be added like so: https://stackoverflow.com/questions/2062543/running-a-script-with-the-help-of-grub-and-menu-lst
The recommended way to mount during the boot is instructing their system through the fstab file. Looking at your Ask, I could see you are almost there, lacks only the instruction that sets the device to use automount options, allowing your system to mount the device when its available.
So, just rewrite the line in your fstab to be like below:
After change and save it, try to mount it by hand:
It's important to note that:
<options>
needs to be written following a very specific format, separated by commas but no spaces after each comma. Be careful with this ;-)Thanks!