xshell 连接mac的ssh中文乱码的问题解决

时间:2021-04-14 21:20:06

在mac下面,进入终端,输入命令:

 vi ~/.profile


编辑文件,输入指令:

export LANG=en_US.UTF-8


或则用中文也可以的: export LANG=zh_CN.UTF-8


保存,就可以了。


注意 export指令后面的“=”左右两边不能带空格,否则会报错:

export: `=': not a valid identifier

~/.profile设置了export LANG=zh_CN.UTF-8不生效可以用下面的方法:

     如果~下面有.bash_profile或者.bash_login就用 sudo vi 添加export LANG=zh_CN.UTF-8到里面,否则
     ~/.profile被忽略的