Study

NFS 설정(S3C6410)

슈라。 2009. 4. 30. 13:35

1) /etc/exports 작성

# vi /etc/exports

 /nfsroot (tap) localhost(rw,insecure)
 /nfsroot (tap) 192.168.0.*(rw,insecure,no_root_squash,no_all_squash)
           --> 내용 추가 후 저장
# source /etc/exports

 

2) 부팅시 nfs server가 자동 실행되게 설정

# ntsysv
    -> nfs 추가 후 확인

 

3) nfs server 재시작

# /etc/rc.d/init.c/nfs restart

 

4) nfs mount(타겟 보드의 리눅스)

# mount -t nfs -o nolock,rsize=1024,wsize=1024 192.168.0.30:/nfsroot /mnt/nfs
      -> ','앞뒤는 공백 없게, ip는 서버의 ip

'Study' 카테고리의 다른 글

yum 사용 방법  (0) 2009.05.11
RPM 사용 방법  (0) 2009.05.11
tftp로 6410에 이미지 올리기  (0) 2009.04.30
TFTP 설정(S3C 6410)  (0) 2009.04.30
OpenCV 사용 설정  (0) 2009.03.02