# Redhat 계열
yum install nfs-utils
#ubuntu
apt-get install nfs-utils
vi /etc/exports
# [SHARED_DIRECTORY] [ALLOWED_HOST]([PERMISSION])
# /nfs 192.168.0.0/255.255.255.0(rw,no_root_squash)
# /nfs 192.168.0.0/24(rw,no_root_squash)
/nfs *(RW)
systemctl enable nfs-server --now
mount -t nfs 192.168.0.10:/home/share /mnt/linux