安装:
sudo apt-get install ckermit
配置:
kermit在启动时会查找~/.kermrc文件,调用里面的命令来初始化kermit。只要将你所需的命令写到~/.kermrc文件里,启动后就可以省去一个一个敲命令的麻烦了!
# vi ~/.kermrc
set line /dev/ttyS0 ( 如果用的是 串口和usb转接线 的话这里应该为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
c
最后那个配置命理c 的意思是启动kermit后立刻执行connect命令!
当然上述配置脚本也可以被你添加到文件 /etc/kermit/kermrc 中!
使用:
启动:kermit
暂停:ctrl + \ 然后按回车即可继续
停止并退出:ctrl + \ 然后按q 即可推迟kermit
回到kermit 命令界面:ctrl + \ 然后按c ; 如果再按一下c就又开始输出了。
Ubuntu 14.04中编译kermit:http://www.linuxdiyf.com/linux/14424.html
Ubuntu 10.04下C-Kermit安装和使用(VMware+USB转串口):http://www.linuxdiyf.com/linux/7561.html
Ubuntu下C-Kermit安装和使用:http://www.linuxdiyf.com/linux/7339.html
RHEL6.0下C-kermit的安装及配置:http://www.linuxdiyf.com/linux/1461.html