NFS(Network File System)
 
 

nfs-utils을 설치한다.

 

파일을 공유할 서버


# mount -t iso9660 /dev/hdb /mnt/hdb

# cat > /etc/exports

/mnt/hdb      211.xxx.xxx.xxx(rw,sync)


# service nfs start


클라이언트측


mount -t nfs 211.xx.xx.xxx:/mnt/hdb /mnt/hdb


FSTAB

 

211.xxx.xx.xx::/mnt/hdb /mnt/hdb nfs timeo=10,defaults

+ Recent posts