Many times in organizations, data is located on the server which employess/users need to access by mounting the network shared directory to the local system and then they can access the data located on the server.
So, first of all we need to find out the network shared directory by using the commands below:-
showmount -e Server-IP
showmount -e 192.168.27.200
Export list for 192.168.27.200:
/usrdata 192.168.27.200
After this, we’ll need to mount the network shared directory to the local system as below:-
mount -t nfs 192.168.27.200:/usrdata /mnt
The command above will mount the network shared NFS directory to our local system and then we’ll be able to access the data on the server as below:-
cd /mnt
ls -al
Then we’ll see all the data which is accessible by the user in the /usrdata directory.
]]>