NFS is very useful in SW Debug period, which provided many advantages by employ the share FS while operation on different CPU. This service would be very helpful for Embedded Linux Debug. The configuration is show as follows.
1. NFS host configuration: add "/nfs *(rw,sync,no_root_squash)" to /etc/exports. note: /nfs is the dir you want to export.
2. NFS host run: service nfs restart.
3. NFS client run: mount -t nfs 109.105.1.41:/nfs /mnt/nfs.
This seems that /mnt/nfs is a link to /nfs in 109.105.1.41.
本文介绍如何通过配置NFS服务来提高嵌入式Linux调试效率。主要步骤包括:设置NFS主机导出目录、重启NFS服务及在客户端挂载共享文件系统。此方法有助于实现不同CPU平台间的文件共享。

被折叠的 条评论
为什么被折叠?



