(Created page with "==COMMANDS== <code>showmount -e <FQDN/IP> Show available NFS shares. mount -t nfs <FQDN/IP>:/<share> ./target-NFS/ -o nolock Mount the specific NFS share.umount ./target-NFS umount ./target-NFS Unmount the specific NFS share.</code>") |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
==COMMANDS== | ==COMMANDS== | ||
<syntaxhighlight lang="powershell"> | |||
##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 | mount -t nfs <FQDN/IP>:/<share> ./target-NFS/ -o nolock Mount the specific NFS share.umount ./target-NFS | ||
umount ./target-NFS Unmount the specific NFS share.</ | |||
##unmount drive | |||
umount ./target-NFS Unmount the specific NFS share. | |||
</syntaxhighlight> |
Latest revision as of 12:51, 8 July 2023
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.