Ubuntu安装配置NFS文件系统

时间:2021-09-26 23:38:50

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