标签:
虚拟机:
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
标签:
原文地址:http://www.cnblogs.com/CoderTian/p/4191405.html