Mount accesible NFS Shares
We can mount an NFS that is being shared over the network if we find an active NFS service running on a target machine.
Check if any NFS share exists
showmount -e $targetIP
Create a folder and mount the share under that folder
mkdir $folder
sudo mount -t nfs $targetIP:$folderToMount ./$folder/ -o nolock
After retrieving the information needed, go back to the initial point and unmount the share
cd $folder/..
sudo umount ./target-NFS
Last updated