미션 NFS 서버 접속 및 구축하세요. NFS 서버 접속 방법 1번. mkdir /nfs 2번. yum -y install nfs-utils libnfsidmap 3번. systemctl start rpcbind 4번. mount -t nfs [접속할 곳 ip번호]:/[서버에 접속해서 공유할 폴더명] /[접속해서 내가 받을 곳] 예1) mount -t nfs 200.00.000.00:/nfs1 /nfs 예2) mount -t nfs 199.99.999.99:/home /mnt NFS 서버 구축 방법 1번. rpm -qa | grep nfs-utils 입력해서 nfs-utils 설치되어 있는지 확인하고 설치 안됐다면 2번 입력 2번. yum -y install nfs-utils 3번. vi /etc/exp..