码迷,mamicode.com
首页 > 其他好文 > 详细

Ubuntu安装配置NFS文件系统

时间:2014-05-10 10:49:06      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   tar   c   

Ubuntu安装配置NFS文件系统

NFS文件系统使用起来比较的方便简单,现在在为MPC8313ERDB配置一个NFS。

一 主机准备:

    1. 主机使用Ubuntu系统,首先安装软件包:

sudo apt-get install portmap nfs-kernel-server

    2. 配置文件/etc/exports

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

    4. 测试是否配置成功

sudo mount -t nfs -o nolock 127.0.0.1:/home/bing/nfs /mnt


二  MPC8313ERDB挂载NFS:

    运行以下命令(我这里设置Ubuntu的IP地址是:192.168.1.1):

mount -t nfs -o nolock 192.168.1.1:/home/bing/nfs /mnt/nfs


Ubuntu安装配置NFS文件系统,布布扣,bubuko.com

Ubuntu安装配置NFS文件系统

标签:style   blog   class   code   tar   c   

原文地址:http://blog.csdn.net/yao_guet/article/details/24987417

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!