IT/OS (Unix Linux Windows)

[Linux]nfs 마운트

에스카르차 2021. 6. 10. 14:15
728x90

1. nfs서버에서 /etc/exports 수정
파일시스템이름  마운트대상(권한)
/batch                     server1(rw,no_root_squash)

2. exports 동기화
$ exportfs -r
$ exportfs -v

3. 대상서버에서 마운트
$ mount -t nfs server1:/batch /batch_server1

728x90