On Wed, Jan 30, 2013 at 02:31:00PM +0000, Edward Ned Harvey (lopser) wrote: > I don't happen to have any NFS systems handy right now to test on. > > When I google around, everybody's answering the wrong question - I know you > can't hard link local filesystem to a remote filesystem. I want to know > remote to remote. > > mount mynfs:/someexport /home/someexport > cd /home/someexport > touch foo > ln foo bar > > Can you hard link a NFS mounted file to another NFS mounted file on the same > NFS system?
Yes. 192.168.0.99:/media on /media/house type nfs4 (rw,noatime,addr=192.168.0.99,clientaddr=192.168.0.100) $ cd /media/house $ touch foo $ ln foo bar $ ls -al foo bar -rw-r--r-- 2 nobody nogroup 0 Jan 30 09:41 bar -rw-r--r-- 2 nobody nogroup 0 Jan 30 09:41 foo -dsr- _______________________________________________ Tech mailing list [email protected] https://lists.lopsa.org/cgi-bin/mailman/listinfo/tech This list provided by the League of Professional System Administrators http://lopsa.org/
