Created
July 21, 2025 15:31
-
-
Save goooooouwa/1cc89dca704ff96e34ce193e0ccac5be to your computer and use it in GitHub Desktop.
linux command line to mount NFS #mount #nfs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install nfs client on Ubuntu | |
# sudo apt install nfs-common | |
sudo mount -t nfs 192.168.x.x:/remote/path /local/path | |
# umount | |
sudo umount /mnt/nas |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment