Klaus Knopper answers your Linux questions

Ask Klaus

Article from Issue 191/2016
Author(s):

Mounting and unmounting network storage devices

Mounting and Unmounting Network Storage Devices

I'm using a small NAS storage server as network drive, which I mount the "Unix way" by NFS (Network File System), rather than using a Windows-compatible Samba client, which also would be supported by the device. That way, the mount point is accessible to all programs, not only the file manager or special clients that can use the smb:// protocol.

The command for mounting that I use under the directory name /media/volume1 is:

sudo mount -t nfs 10.0.0.20:/volume1 /media/volume1

Now, when suspending and disconnecting my computer from the network for traveling, I sometimes forget to unmount the NFS directory /media/volume1, which results in all programs freezing when trying to access that directory. Trying to unmount in that situation with

sudo umount /media/volume1

does not work because the device is busy. Even when no processes are accessing the directory, unmounting fails because the server is not reachable.

Is there an "official" way to unmount NFS volumes when the server is not reachable?

NFS was built to be reliable even in the case of network dropouts or temporary server disconnects; the client will wait for a long, sometimes even an unlimited time for the server to respond again. Even signals like TERM (15) and KILL (-9) won't terminate a process that waits for an answer from the NFS server.

Furthermore, you can even reboot the NFS server and the client still won't terminate. This is the desired behavior in NFS design.

Some mount options, like -o intr or -o timeo=n or -o retrans=n (see the NFS man page) change that behavior, but still you won't be able to unmount the NFS filesystem when the server is unreachable.

However, an easy trick allows you to work around the protocol: Just set the IP address of the former NFS server as the secondary IP address of your network card or loop back device first:

sudo ifconfig lo:1 10.0.0.20 netmask 255.255.255.255

For the client to detect the NFS server (it does not matter whether or not any directories are exported), start the port mapper and, if installed, the NFS kernel-based server:

sudo /etc/init.d/portmap start

or

sudo /etc/init.d/rpcbind start

then:

sudo /etc/init.d/nfs-kernel-server start

(The /etc/exports file should exist; otherwise, the init script may decide not to start the actual NFS server.) An rpc.mountd process should now be running, answering to mount and umount requests from the client.

The NFS client will now act as if the former NFS server is back online (even though there is really a new NFS server running on the client computer now), send a detach command on umount and flush all client accesses (provided no processes are still actively using the mount point):

sudo umount -l /media/volume1

I use the -l (lazy) option of umount here, which will allow running processes to continue accessing the directory but hide the mount point from new processes and remove the mtab entry, so it is not listed as a mounted volume anymore in /proc/mounts or in the output of mount or df with no parameters.

Another tip: To avoid too lengthy command lines for mounting NFS volumes or Samba shares, /etc/fstab entries can be helpful. Note that intr and nolock options for NFS allow you to cancel a read/write command by hitting Ctrl+C and avoids contacting the NFS locking process on the server side. Also, for NFS on Linux, the sync option (which is known to slow down write access to local media) can actually make NFS more responsive because it avoids buffering too much data in long writes, thus avoiding a traffic jam on wireless networks (Listing 1).

Listing 1

/etc/fstab

 

With these entries, the network storage directories can be mounted just by typing

mount /media/volume1

or

mount /media/backup

without sudo, as normal user.

Klaus Knopper

Klaus Knopper is an engineer, creator of Knoppix, and co-founder of LinuxTag expo. He works as a regular professor at the University of Applied Sciences, Kaiserslautern, Germany. If you have a configuration problem, or if you just want to learn more about how Linux works, send your questions to: klaus@linux-magazine.com

Buy this article as PDF

Express-Checkout as PDF
Price $2.95
(incl. VAT)

Buy Linux Magazine

SINGLE ISSUES
 
SUBSCRIPTIONS
 
TABLET & SMARTPHONE APPS
Get it on Google Play

US / Canada

Get it on Google Play

UK / Australia

Related content

  • Ask Klaus!

    Klaus Knopper is the creator of Knoppix and co-founder of LinuxTag expo. He currently works as a teacher, programmer, and consultant. If you have a configuration problem, or if you just want to learn more about how Linux works, send your questions to: klaus@linux-magazine.com

  • Ask Klaus!

    Klaus Knopper answers your Linux questions.

  • Ask Klaus!

    Klaus addresses problems with Wheezy updates, Adobe Flash, dial-up settings, and mountpoint dates.

  • Ask Klaus!

     

  • Live Distros with NTFS

    A Linux live distro may be just what you need to recover a Windows computer brought down by a system problem or virus attack. Knoppix creator Klaus Knopper gives you some tips for accessing NTFS from live Linux.

comments powered by Disqus
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters

Support Our Work

Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.

Learn More

News