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
DNS 캐쉬를 비우는 방법... (0) | 2006.09.22 |
---|---|
php를 fast-cgi로 configure (0) | 2006.08.25 |
특정 아이디만 root 로그인 허용 (0) | 2006.08.22 |
FreeBSD에서 루트 비번 잊었을때... (0) | 2006.05.16 |
Python을 PHP처럼 CGI로 사용하려면? (0) | 2004.07.23 |