NFS文件系统挂载
服务器端配置如下
1.Server端需要安装NFS服务:
sudo apt-get install nfs-kernel-server
2.创建需要挂载的路径:
mkdir -p /home/workspace/mercury/nfs_path
3.创建共享目录:
①vim /etc/exports
②在文件中添加:
/home/workspace/mercury/nfs_path *(rw,sync,no_subtree_check,no_root_squash)
/home/workspace/mercury/nfs_path 192.168.10.*(rw,sync,no_subtree_check,no_root_squash)
4.重启服务并加入开机自启动:
systemctl restart nfs-kernel-server
systemctl enable nfs-kernel-server
机顶盒端挂载命令如下
mount -t nfs -o nolock 192.168.10.17:/home/workspace/mercury/nfs_path /mnt/nfs_share
其中:192.168.10.17:/home/workspace/mercury/nfs_path为我们设置在17服务器上的挂路径,/mnt/nfs_share是我们STB端需要挂载的地方
TFTP文件传输
服务的配置过程如下
1.Server端需要先安装tftp服务:
sudo apt-get install tftp-hpa tftpd-hpa
2.在server上建立一个tftp文件传输的文件夹:
mkdir -p /home/workspace/mercury/tftp_path
同时需要给这个文件夹完全读写的权限:
chmod 777 /home/workspace/mercury/tftp_path
3.然后创建tftp的配置文件:
touch /etc/xinetd.d/tftp
写入以下内容:
server tftp
{
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /home/workspace/mercury/tftp_path/ -c
disable = no
per_source = 11
cps = 100 2
flags = IPv4
}
4.完成写入后启动tftp服务
sudo service tftpd-hpa start
5.启动完毕后修改/etc/default/tftpd-hpa文件内容如下:
# /etc/default/tftpd-hpa
TFTP_USERNAME="tftp"
#TFTP_DIRECTORY="/srv/tftp"
TFTP_DIRECTORY="/home/workspace/mercury/tftp_path"
TFTP_ADDRESS=":69"
#TFTP_OPTIONS="--secure"
TFTP_OPTIONS="-l -c -s"
6.最后重启tftp服务
sudo service tftpd-hpa restart
7.放置需要传输的文件到我们创建的tftp文件夹下并修改权限,例如:
cp zImage /home/workspace/mercury/tftp_path/
cd /home/workspace/mercury/tftp_path
chmod 777 zImage
STB端读取文件
1.配置网络
dhcp
2.尝试ping检查网络配置是否正确
3.tftpboot命令拷贝文件至内存
tftpboot 0x80800000 zImage
#从tftp服务器拷贝名为zImage的文件到0x80800000的ram地址