Ubuntu NFS设置

1. #sudo apt-get installnfs-kernel-server

会自动安装nfs-common和portmap

2.编辑exports文件:vim /etc/exports:

/home/zh/arm_linux 192.168.213.45(rw,sync,no_subtree_check,no_root_squash)

允许IP为192.168.213.45的开发板访问宿主机的/home/zh/arm_linux文件夹;

3.更新exports:#exportfs -r;

4.重启nfs服务:#/etc/init.d/nfs-kernel-server restart;

5.在超级终端或minicom中输入# mount -o nolock 192.168.213.91:/home/zh/arm_linux /mnt;

6.在宿主机上开发程序,交叉编译:

例如:#/usr/local/arm/4.4.1/bin/arm-linux-gcc -o hello hello.c

7.在开发板上#cd /mnt,#./hello即可运行程序了。


你可能感兴趣的:(linux,ubuntu,vim,终端)