I have a system running Debian Wheezy (7.8) that connects to a storage volume exported via iSCSI using the open-iscsi
(version 2.0) software initiator. The iSCSI initiator correctly reconnects the volume at boot time, but it does so after the filesystems identified in /etc/fstab
have been mounted, thus I need to manually mount the filesystem on the volume after the boot process is finished. How do I get the system to delay mounting this filesystem until after open-iscsi has finished reconnecting the volume?
Asked
Active
Viewed 1,310 times
3
Jules
- 240
- 2
- 10
1 Answers
2
Set the network filesystems to have the _netdev
option in /etc/fstab
.
UUID=1b4fe7c0-b5fc-4b6d-9c1f /var ext4 defaults 1 2
UUID=b6fcc760-8230-4981-99a6 swap swap defaults 0 0
UUID=a69a5084-247d-4b62-b835 /data xfs noatime,_netdev 1 2
tmp
ewwhite
- 194,921
- 91
- 434
- 799
-
Thank you. One wonders why this option isn't mentioned in any of the documentation for the fstab file... – Jules Aug 21 '15 at 09:14
-
@Jules but it **is** mentioned in RHEL docs, here: https://access.redhat.com/solutions/3889 – al'ein Jan 04 '19 at 18:04