kermit
1安装
sudo apt-get install ckermit
2修改kermit的配置文件
修改~/.kermrc(没有则创建),添加如下条目:
set line /dev/ttyUSB0
set speed 115200
set carrier-watch off
set handshake none
set flow-control none
robust
set file type bin
set file name lit
set rec pack 1000
set send pack 1000
set window 5
注释:
set line /dev/ttyUSB0,设置设备,该设备为USB转串口,如果有串口设为ttyS0或其他
3使用
输入命令
$ kermit -c
出现如下提示后,表示连接成功
Connecting to /dev/ttyS0, speed 115200.
The escape character is Ctrl-\ (ASCII 28, FS)
Type the escape character followed by C to get back,
or followed by ? to see other options.
The escape character is Ctrl-\ (ASCII 28, FS)
Type the escape character followed by C to get back,
or followed by ? to see other options.
tftp
1.安装
sudo apt-get install
2.配置
sudo vim /etc/default/tftpd-hpa
内容:
TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/tftproot"
TFTP_ADDRESS="0.0.0.0:69"
TFTP_OPTIONS=" -l -c -s"
注释:
/tftpboot为共享目录,可自行设置
3.重启服务
sudo
4.测试
sudo mkdir
/tftproot
sudo chmod
777 /tftproot
在/tftpboot下创建test文件,输入任意内容
回到主目录(cd ~),输入
tftp 127.0.0.1
进入tftp模式(出现tftp>),输入
get test
即可将test文件发送到当前目录
nfs
1.安装
sudo apt-get install nfs-kernel-server
2.配置
修改/etc/exports文件,添加:
/nfs *(rw,sync,no_root_squash)
注释:
/nfs为共享目录,可自行设置
3.重启服务
sudo /etc/init.d/nfs-kernel-server restart
4.测试
在/nfs下创建test文件,输入任意内容,再将/nfs挂载到/mnt目录,在/mnt目录能看到test文件并内容一致,说明nfs搭建成功
sudo mount -t nfs localhost:/nfs /mnt