# CentOS7_Third > Ubuntu 마운트
Ubuntu mount
apt -y install nfs-kernel-server
systemctl restart nfs-server
systemctl enable nfs-server
systemctl stop firewalld
mkdir /share
chmod 707 /share
cd /share
touch test1
vim /etc/exports
> /share 192.168.111.*(rw,sync)
systemctl restart nfs-server
exportfs -v
CentOS7_Third
systemctl restart nfs-server
systemctl status nfs-server
systemctl enable nfs-server
shomount -e 192.168.111.134
mount -t nfs 192.168.111.134:/share /mnt/share2 # 192.168.111.134의 /share폴더와 /mnt/share2폴더 마운트
df # 마운트 확인