Q. How do I mount NFS filesystem twice in two different dirs on same Linux client?
NFS Server : nfsserver:/data
Mount to dirs /home/data and /backup
A. You will not able to do that. However mount command has bind option to remount part of the file hierarchy somewhere else.
Procedure
First mount to /home/data
# mount -t nfs4 nfsserver:/data /home/data
Now bind /home/data to /backup
# mount --bind /home/data /backup
# ls /backup /home/data
Read man page of mount command for more information:
$ man mount
🐧 Get the latest tutorials on Linux, Open Source & DevOps via RSS feed or Weekly email newsletter.
🐧 4 comments so far... add one ↓
🐧 4 comments so far... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
hello , i want to help for linux commands and working in linux so plz regarding me some helping notes or documents through i m doing mastering thanks for your goodness.
Mr Singh,
Try IBM DeveloperWorks LPI Tutorials. An absolute must in my opinion.
Thanks for this – I was getting “stale NFS file handle” because I had mounted the filesystem twice. Clearly I should not have done so!
Do you know if there is anything that causes issues with bind when using a CIFS mount?
I have a few directories that I mount that way, but after a while, it starts listing everything in them (the bind mounted ones) as directories. The original CIFS mount is still fine though.