After a reboot, some partitions which were mentioned in fstab were not mounted as expected. The format of the line for the partitions which were mounted correctly and those which were not mounted correctly look the same so I am wondering whether some log exists of any problems which prevented the restoration of the missing partitions.
I am not able to see the console during a reboot but need to determine and fix the problem later.
There's a few things you could try:
mount -a
cause any errors to get printed to your terminal? This will only use information available in the fstab to mount all available mounts, and should provide details of any mounts that are still failing to succeed.noauto
option enabled?localmount
andnetmount
andnfsmount
init scripts for mounting things at boot./var/lib
before/var/
. You can use the first numeric parameter in the fstab to control which mounts get mounted first.dmesg
, or one of the various logs in/var/log
should be able to help. Your boot sequence should be being logged by default, but because it's dependant on your system logger's configuration it can change a little, even on different versions of the same distribution. The usual culprits are/var/log/messages
andvar/log/kernel
.Note that some mount services such as s3 fuse require networking services to be enabled prior to the mount happening, so you may need to create an init.d service to enable the mount and order it accordingly. Credit: https://github.com/s3fs-fuse/s3fs-fuse/issues/412