怎么在mac上访问ubuntu上的nfs
1.安装NFS服务 $sudo apt-get install nfs-kernel-server 2.配置export $sudo vim /etc/exports 然后加入 /home/craftor/nfs *(rw,sync,sub_tree_check,no_root_squash) $sudo exportfs -r 3.重启服务 $sudo /etc/init.d/nfs-kernel-server restart $sudo /etc/init.d/portmap restarts 4.设置开发板启动参数 set bootargs root=/dev/nfs rw nfsroot=172.19.24.67:/home/craftor/nfs ip=172.19.24.100:172.19.24.67:172.19.24.1:255.255.255.0:sep4020:eth0:off console=ttyS0,115200 mem=32mb 这是主机Ubuntu安装NFS,然后开发板从NFS启动的配置过程,可以参考一下!