Mount NFS filesystem in two different directories on same system
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
E-mail this to a friend
Printable version
Related Other Helpful FAQs:
- Linux Optimize Directories ( File Access Time ) in ext3 Filesystem
- How do I find out more information about ext3 or ext2 file system?
- Red Hat Enterprise Linux how do I add a new hard disk for backup?
- How to: Find the inode size of an ext2 / ext3 filesystem
- How to: Formatting Linux Filesystem
Discussion on This FAQ
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!
Tags: bind, linux client, mount nfs, nfs filesystem, nfs server




April 3rd, 2007 at 6:03 am
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.
May 29th, 2007 at 9:38 pm
Mr Singh,
Try IBM DeveloperWorks LPI Tutorials. An absolute must in my opinion.