最近开始使用linuxmint,服务器在aliyun,没有在服务端特别设置超时时间,默认1分钟在linuxmint的console中没有动静,就会断开链接。比较烦。
在网上找到如下两种方式可以在linuxmint的terminal保持对服务端的ssh不断开。
1、更改ssh默认配置 默认是在/etc/ssh/ssh_config下,注意不是sshd_config[服务端的ssh配置文件] 增加:
Host *
ServerAliveInterval 30
2、增加ssh链接时的参数 -o ServerAliveInterval=30
比如:ssh root@192.168.2.218 -o ServerAliveInterval=30
附:linuxmint alias使用通过
在~目录下新建.profile文件,
通过添加如下内容:
alias dev-server="ssh root@192.168.2.218"
然后source ~/.profile 生效,之后即可执行dev-server命令运行对应的命令,免去输入一长串命令的烦恼。
如何在ubuntu下设置永久的alias别名:http://www.linuxdiyf.com/linux/13882.html