Ubuntu NFS mount
2024. 12. 31. 16:08ㆍOS
Server
# 모듈 설치
sudo apt update
sudo apt install nfs-kernel-server -y
# 디렉토리 생성
sudo mkdir -p /nfs/temp
sudo chown -R test:test /nfs/temp
sudo chmod -R 770 /nfs/temp
# NFS 설정파일 수정 및 적용
sudo vi /etc/exports
--------------
/nfs/temp {IP 대역}(rw,sync,no_subtree_check,no_root_squash) {IP 대역}(rw,sync,no_subtree_check,no_root_squash)
--------------
sudo exportfs -a
# 확인
sudo exportfs -v
# 서비스 재시작 및 확인
sudo systemctl restart nfs-kernel-server
sudo systemctl status nfs-server
# access 확인
showmount -e <host-ip>
# 서버 로그 확인
sudo journalctl -xe | grep nfs
# 마운트 확인
mount | grep nfs
Client
# 모듈 설치
sudo apt update
sudo apt install nfs-common -y
# Server 접속
sudo mkdir /mnt
sudo chown test:test /mnt
sudo mount -t nfs <host-ip>:/nfs/test /mnt
# access 확인
showmount -e <host-ip>
# 마운트 해제
sudo umount /mnt
sudo umount -lf /mnt #(강제)
# 마운트 확인
mount | grep nfs
'OS' 카테고리의 다른 글
Ubuntu rm: cannot remove '{디렉토리}': Is a directory (0) | 2024.12.31 |
---|---|
Ubuntu exportfs 명령어 옵션 (0) | 2024.12.31 |
Linux \r\n --> \n 변환 (0) | 2024.12.24 |
Windows 11 새로 만들기에 메모장(notepad)이 없어졌을 때 (0) | 2024.12.14 |
윈도우창 단축키 (0) | 2024.07.13 |