NFS安装配置(1)

试着用NFS来实现两台Linux直接的文件共享,以便解决Openoffice远程转换文件的问题,但到底行不行得通有待验证。

下面说说NFS的配置。

因为9.11的服务器上的Linux系统已经自带了NFS,在/etc/init.d下面,查看了配置文件: etc/exports ,发现内容是空的,于是添加我要的配置:

/home 192.168.29.128(rw,sync) *(ro)

然后找到exportfs命令,./exportfs -rv(我的/usr/sbin没有配置到环境变量中,所以不能直接调用)

配置的具体含义可参考如下的文章:

http://blog.sina.com.cn/s/blog_60cbc1700100qlpb.html

http://www.west263.com/info/html/caozuoxitong/Linux/20090513/122538.html


由于我的portmap和nfs并没有添加进服务中,所以不能用service命令,直接找到可执行文件执行:

./portmap start

./nfs start

这样NFS就启动了。


去客户端(192.168.29.128)看看吧:

输入:showmount -e 168.168.9.11

可以看到服务端挂载的目录。

那么执行挂载操作吧:

sudo mount -t nfs 168.168.9.11:/home /home/linshutao/nfsmount/

然后报错了:
mount: wrong fs type, bad option, bad superblock on 168.168.9.11:/home,
       missing codepage or helper program, or other error
       (for several filesystems (e.g. nfs, cifs) you might
       need a /sbin/mount. helper program)
       In some cases useful info is found in syslog - try
       dmesg | tail  or so

网上说用这招:sudo apt-get install nfs-common

但我的又报错:dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
这个跟之前安装nfs-utils冲突,卸载:dpkg -r nfs-utils

再执行sudo apt-get install nfs-common就可以成功装上了。

解析来再执行sudo  mount  -t  nfs  168.168.9.11:/home  /home/linshutao/nfsmount/

就挂载上来了,去 /home/linshutao/nfsmount/下可以看到服务端的目录:/home哦!

好吧,接下来看OOo支不支持~~

你可能感兴趣的:(NFS安装配置(1))