首页 > 代码库 > Ok6410挂载NFS

Ok6410挂载NFS

虚拟机:

apt-get install portmap

apt-get install  nfs-kernel-server

mkdir   /nfs/root/mNFS

chmod 777 /nfs

chmod 777 /nfs/root

vi   /etc/exports

添加:/nfs/root  *(rw,sync,no_root_squash)

开发板:

mount   -t   nfs  192.168.0.128:/nfs/root    /mnt  -o nolock

添加到开机启动脚本:

/etc/init.d/rcS里添加

mount   -t   nfs  192.168.0.128:/nfs/root    /mnt  -o nolock

 

Ok6410挂载NFS