ubuntu 의 NFS 서버 와 타 겟 기기 의 NFS 클 라 이언 트
Configure NFS Server to share any directories in local network.
[1]
Configuration on the system you want to build NFS server
root@dlp:~#
aptitude -y install nfs-kernel-server
root@dlp:~#
vi /etc/exports
# write like below *note
/home 10.0.0.0/24(rw,sync,fsid=0,no_root_squash,no_subtree_check)
# *note
/home
⇒ shared directory
10.0.0.0/24
⇒ range of networks NFS permits accesses
rw
⇒ possible to read and write
sync
⇒ synchronize
no_root_squash
⇒ enable root privilege
no_subtree_check
⇒ disable subtree check
root@dlp:~#
/etc/init.d/nfs-kernel-server restart
* Stopping NFS kernel daemon
...done.
* Unexporting directories for NFS kernel daemon...
...done.
* Exporting directories for NFS kernel daemon...
...done.
* Starting NFS kernel daemon
...done.
[2]
Configuration on NFS clients
root@www:~#
aptitude -y install nfs-common
root@www:~#
mount -t nfs dlp.server.world:/home /home
root@www:~#
df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/ubuntu-root 18G 1.3G 16G 8% /
udev 993M 4.0K 993M 1% /dev
tmpfs 401M 228K 401M 1% /run
none 5.0M 0 5.0M 0% /run/lock
none 1002M 0 1002M 0% /run/shm
/dev/vda1 228M 25M 192M 12% /boot
dlp.server.world:/home 18G 1.3G 16G 8% /home
# home directory on NFS is mounted
root@www:~#
vi /etc/fstab
# add at the last: change home directory this server mounts to the one on NFS
dlp.server.world:/home /home nfs defaults 0 0
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
MVC의 심연를 보면 Trygve Reenskaug씨가 고안했다고 쓰여 있다. 뷰에 조작 오브젝트가 있는 경우와, 단순히 키보드나 마우스의 상태를 픽업하는 것을 고려하는 예이다. 그러나 잘 생각하면 이상하다. 예를 들어 키보드에...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.