【Xshell】连接【Ubuntu】电脑之ssh设置

参考: http://www.cnblogs.com/wuyuegb2312/archive/2013/03/28/2986963.html

1、如果安装的Ubuntu是桌面版而不是服务器版的,可能没有安装或开启SSH服务,安装openssh-server:

sudo apt-get install openssh-server

使用ps -e | grep ssh,如果只有ssh-agent表示还没启动,需要/etc/init.d/ssh start;若有sshd说明已启动。


2、中文乱码的解决方法

在确认Ubuntu支持中文的前提下(即Ubuntu可以显示中文),在“文件”菜单的“属性”中选择“终端”,“编码”选择“UTF-8”,并勾选“韩中日语言中的不确定字符处理为宽字符”,重新连接即可。还有一种解决方式,不过本人没有试过(http://blog.sina.com.cn/s/blog_65d642220100kjqi.html):


[root@localhost ~]# cd /etc/sysconfig/
[root@localhost sysconfig]# cp i18n i18n.bak    #备份i18n文件
[root@localhost sysconfig]# echo "" >i18n
[root@localhost sysconfig]# vim i18n      #加入以下内容
LANG="zh_CN.GB18030"
LANGUAGE="zh_CN.GB18030:zh_CN.GB2312:zh_CN"
SUPPORTED="zh_CN.GB18030:zh_CN:zh:en_US.UTF-8:en_US:en"
SYSFONT="lat0-sun16"


重新连接后中文显示正常。

你可能感兴趣的:(Xmanager,Linux)