NFS

From RCATs
Revision as of 12:51, 8 July 2023 by Ali3nw3rx (talk | contribs) (→‎COMMANDS)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

COMMANDS

##Show available NFS shares.
showmount -e <FQDN/IP>

#mount drive
mount -t nfs <FQDN/IP>:/<share> ./target-NFS/ -o nolock	Mount the specific NFS share.umount ./target-NFS

##unmount drive
umount ./target-NFS	Unmount the specific NFS share.