NFS: Difference between revisions

From RCATs
(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>")
 
No edit summary
Line 1: Line 1:
==COMMANDS==
==COMMANDS==
 
<syntaxhighlight lang="powershell">
<code>showmount -e <FQDN/IP> Show available NFS shares.
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
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>
umount ./target-NFS Unmount the specific NFS share.
</syntaxhighlight>

Revision as of 12:38, 8 July 2023

COMMANDS

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.