ps:用U盘好麻烦,还是用NFS吧
我的:Ubuntu18.04
一:ubuntu安装和配置NFS
安装
sudo apt-get install nfs-kernel-server rpcbind
打开这个文件
/etc/exports
目录改为自己想要共享的
/home/chen-mp/keshe *(rw,sync,no_root_squash)
重启
sudo /etc/init.d/nfs-kernel-server restart
二:ubuntu添加一个网络设配器用来跟开发板通信
看我这个文章的第一第二个
【imx6ull】ubuntu桥接开发板实现通信 详细-CSDN博客
三:挂载开发板NFS
mount -t nfs -o 192.168.110.200:/home/chen-mp/keshe /mnt
然后出现了svc: failed to register lockdv1 RPC service (errno 111).
指的是在尝试注册 RPC(远程过程调用)服务时遇到了问题,特别是与 NFS(网络文件系统)相关的锁管理服务(lockdv1)无法成功注册。这里的 "errno 111" 是一个错误代码,通常表示 "连接被拒绝"(Connection refused)。
锁???因为锁无法注册,那我们就不用锁咯
mount -t nfs -o nolock 192.168.110.200:/home/chen-mp/keshe /tmp/
然后就成功啦!