在嵌入式开发中,通常使用 nfs 进行挂载操作,开发板通过 nfs 可以访问到服务器上的网络文件系统,这样不管是在驱动开发还是应用程序开发中会有更高的效率。要使用 nfs 功能需要三部工作。
1、服务器端安装并启动 nfs 功能(见笔记 002)
2、服务器端设置 nfs 文件系统权限
A、在/etc/export文件中添加nfs文件夹路径
/home/zhoubin/nfs_root *(rw,sync,no_root_squash)
B、重新启动nfs服务
service nfs restart
3、设备端挂载
mount -t nfs -o nolock,vers=2 10.166.178.138:/home/mini2440/root_fs/nfs_root /mnt
4、开发板上电自动挂载 nfs 文件系统
4.1、在/etc/fstab 文件中添加一行
nfs /mnt nfs defaults 0 0
4.2、修改 /etc/init.d/rcS 文件, 添加挂接指令
mount -t nfs -o nolock,vers=2 10.166.178.138:/home/mini2440/root_fs/nfs_root /mnt