用nfs 传文件

1. 在ubuntu上 打开exports并添加

widora@widora-VB:/etc$ sudo vim exports
 

/home/cheng/tftp 172.28.13.53(rw,async,no_root_squash,no_all_squash)   //172.28.13.53是开发板的ip

2. 运行nfs服务器

widora@widora-VB:/etc/init.d$

sudo service nfs-kernel-server restart

 

3. 在开发板上添加

root@Widora:/etc# vim banner.failsafe 

mount -t nfs -o nolock 172.28.13.59:/home/cheng/tftp /mnt
 

4. 检查ubuntu和开发板能不能联通

开发板 ping 虚拟机

ping  172.28.13.59

虚拟机ping 开发板

ping 172.28.13.53

5. 到开发板的目录/mnt

ls 查看有没有虚拟机上的文件有没有安装到本机

如没有再手动安装一次

mount -t nfs -o nolock 172.28.13.59:/home/cheng/tftp /mnt

 

 

你可能感兴趣的:(Linux,Openwrt)