|
|
不知道是怎么回事,archlinux 下 NFS 就是启动不了:
- # exportfs -a
- # exportfs -v
- /home/soros/e680i-nfs
- <world>(rw,async,wdelay,insecure,root_squash)
- # /etc/rc.d/portmap restart
- :: Stopping Portmap [DONE]
- :: Starting Portmap [DONE]
- # /etc/rc.d/nfslock restart
- :: Stopping nfslock [DONE]
- :: Starting nfslock [DONE]
- # /etc/rc.d/nfsd restart
- :: Stopping nfsd [FAIL]
- :: Starting nfsd [FAIL]
复制代码
配置文件:
- # cat /etc/hosts.allow
- #
- # /etc/hosts.allow
- #
- in.telnetd 192.168.1.localhost
- portmap: 192.168.1.,localhost
- nfslock: 192.168.1.,localhost
- lockd: 192.168.1.,localhost
- nfsd: 192.168.1.,localhost
- mountd: 192.168.1.,localhost
- statd: 192.168.1.,localhost
- # End of file
- # cat /etc/hosts.deny
- #
- # /etc/hosts.deny
- #
- ALL: ALL: DENY
- # End of file
- # cat /etc/exports
- # /etc/exports
- #
- # See exports(5) for a description.
- # use exportfs -arv to reread
- #/export 192.168.1.10(rw,no_root_squash)
- /home/soros/e680i-nfs *(rw,async,insecure,root_squash)
复制代码
第一次使用NFS。大家帮忙看看,谢谢! |
|