본문 바로가기

Development

nfs + 파일시스템 마운트하기

$ sudo -i

#nfs 클라이언트 설치

$ sudo apt-get install nfs-common

 

#nfs 서버 확인

$ show mount -e [nfs ip 주소]

 

#nfs 파일 시스템 마운팅

$ mount x.x.x.x:./xxxx/root /mnt

 

# 재부팅시 자동 마운팅

$ vi /etc/fstab

$ x.x.x.x:xxxx/root /mnt nfs rw,async,hard,intr,noexec 0 0