NFS 기초 연결 (LINUX)
1. Overview
CentOS 에서 nfs를 마운트하는 방법입니다.
2. Prerequisites
OS : CentOS v7.6
Arch : x86
3. How to
클라이언트 사이드에서 필요한 패키지들을 다운받아줍니다.
$ yum install cifs-utils
$ yum install nfs-utils
마운트할 공유 폴더를 생성해줍니다.
$ mkdir -m 0777 mountdir
마운트!
$ mount -t nfs {nfs mount point} /root/mountdir/
nfs의 mount point는 nfs의 {hostname}:{mount할위치}
잘 마운트되었는지 확인
$ df -h |grep mountdir
(1) 부팅할때 자동마운트하기
$ vim /etc/fstab
#mount nfs
fsf-dal1301k-fz.adn.networklayer.com:/-----/data01 /root/mountdir/ nfs defaults 0 0
(2) 마운트 해제
$ umount /root/mountdir
댓글남기기