Do you want BuboFlash to help you learning these things? Or do you want to add or correct something? Click here to log in or create user.



Question
In linux, in networking, say you have an NFS (Network File System) server with fully qualified host name of nfsserver1, and you want to have access to its /some/folder shared directory. How do you do it (i.e. what command do you issue)?
Answer

mount -t nfs nfsserver1:/some/folder /mnt/nfs

^^ note we need to mount the share folder on the nfs server
^^^ note the use of -t flag to set the mount type to nfs
^^^^ note how we treat the share folder on nfsserver1 (i.e. nfsserver1:/some/folder) as any other device that is mounted
^^^^^ note the /mnt/nfs folder can be any mount folder you create (I am just useing /mnt/nfs as an example.


Question
In linux, in networking, say you have an NFS (Network File System) server with fully qualified host name of nfsserver1, and you want to have access to its /some/folder shared directory. How do you do it (i.e. what command do you issue)?
Answer
?

Question
In linux, in networking, say you have an NFS (Network File System) server with fully qualified host name of nfsserver1, and you want to have access to its /some/folder shared directory. How do you do it (i.e. what command do you issue)?
Answer

mount -t nfs nfsserver1:/some/folder /mnt/nfs

^^ note we need to mount the share folder on the nfs server
^^^ note the use of -t flag to set the mount type to nfs
^^^^ note how we treat the share folder on nfsserver1 (i.e. nfsserver1:/some/folder) as any other device that is mounted
^^^^^ note the /mnt/nfs folder can be any mount folder you create (I am just useing /mnt/nfs as an example.

If you want to change selection, open document below and click on "Move attachment"

28. Network File System, NFS
g the exportfs command with no options should then show /mnt/cdrom 192.168.1.0/24 /mnt/cdrom localhost.localdomain which lists directories and hosts allowed to access them. It is useful to test <span>mounts from your local machine before testing from a remote machine. Here we perform the NFS mounting operation proper: mkdir /mnt/nfs mount -t nfs localhost:/mnt/cdrom /mnt/nfs You can see t

Summary

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Details

No repetitions


Discussion

Do you want to join discussion? Click here to log in or create user.