第一种方法用开发板厂家提供的scp命令,这里不详说了,我一般不用,太麻烦。
第二种方法是用samba, 这种方法适合初学都,不过搭环境有些麻烦,假若你的开发板厂家的SD img 里没有移值好的samba,初学就很难搭起来。搭好了,就可以同WINDOWS 共享文件了。就是在开发板上建一个共享文件夹共享给windows。
假若不会移植samba,没关系,到
https://rocketboards.org/网站上下载个alta_socfpga工程的SD img,上面有移植好的samba。
下面是samba的配置方法
root@zjh:~# vi /etc/samba/smb.conf在最后添加
[home]
path = /home
browseable = yes
writeable = yes
valid user = zjh
添加 samba 用户并设置密码
root@zjh:~# smbpasswd -a zjh
New SMB password: xxxxxxxx
Retype new SMB password: xxxxxxxx
第三种方法采用网络挂载的主法。这个也很方便,但是要在主机上装linux才行。再在linux上按装NFS,以下是按装NFS的方法
安装 nfs
root@zjh:~# apt-get install nfs-kernel-server
修改配置文件root@zjh:~# vi /etc/exports
/home/work/rootfs *(rw,sync,no_root_squash)
说明:
rw:allow both read and write requests on this NFS volume. The default is to disallow anyrequest which changes the filesystem. This can also be made explicit by using the ro option.
sync:reply to requests only after the changes have been committed to stable storage (see asyncabove).
no_root_squash:turn off root squashing. This option is mainly useful for diskless clients.
下面是文件挂载命令:
mount -t nfs 192.168.100.63:/home/work/rootfs /home/xuser -o nolock
本帖最后由 5525 于 2016-7-13 20:09 编辑