标签:style blog class code tar c
Ubuntu安装配置NFS文件系统
NFS文件系统使用起来比较的方便简单,现在在为MPC8313ERDB配置一个NFS。
1. 主机使用Ubuntu系统,首先安装软件包:
sudo apt-get install portmap nfs-kernel-server
sudo gedit /etc/exports // 打开exports文件 //在文件的最后,加上这一句,给nfs文件夹加一个读写的权限 /home/bing/nfs *(rw, no_root_squash)3. 启动服务
service portmap start // 必须以此命令启动 sudo /etc/init.d/nfs-kernel-server restart
sudo mount -t nfs -o nolock 127.0.0.1:/home/bing/nfs /mnt
运行以下命令(我这里设置Ubuntu的IP地址是:192.168.1.1):
mount -t nfs -o nolock 192.168.1.1:/home/bing/nfs /mnt/nfs
Ubuntu安装配置NFS文件系统,布布扣,bubuko.com
标签:style blog class code tar c
原文地址:http://blog.csdn.net/yao_guet/article/details/24987417