1. 首先要明白什么是ssh?
可以把ssh看做是telnet的加强版,telnet的密码和信息都是不加密的,而ssh则加密。
.
2. 开启ubuntu上的ssh功能
先安装,安装后就自动开启了.
(1).sudo apt-get install openssh-server openssh-client
.
(2)首先安装SSH服务
输入:sudo apt-get install openssh-server
启动SSH服务
输入:sudo /etc/init.d/ssh start
启动之后可以检查是否安装成功并启动
输入:ssh -v
OpenSSH_5.1p1 Debian-6ubuntu2, OpenSSL 0.9.8g 19 Oct 2007
usage: ssh [-1246AaCfgKkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]
[-D [bind_address:]port] [-e escape_char] [-F configfile]
[-i identity_file] [-L [bind_address:]port:host:hostport]
[-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]
[-R [bind_address:]port:host:hostport] [-S ctl_path]
[-w local_tun[:remote_tun]] [user@]hostname [command]
看到类似信息,说明安装并启动成功!
安装成功之后还需要修改配置才能使用
修改ssh配置 :
输入:sudo pico /etc/ssh/ssh_config
去掉 PasswordAuthenitcation, Port 22 ,Protocol 2,1这三行前的注释#
注意哦, ubuntu9.10里没有permitrootlogin之类的东西
这里需要重启一下系统。
3. 安装secureCRT
.
4. 查看ubuntu的ip
ifconfig(注意是ifconfig,不是windows上的ipconfig)
.
5. 连接
(1)secureCRT => Quick Connect(快速连接), 连接ubuntu, 输入ubuntu的id和pwd
(2)重启之后,设置SecureCRT连接Linux。
Protocol选择SSH2,Hostname输入Ubuntu的IP地址,Port输入22,Firewall选择none,username 输入Ubuntu的用户名
点击Connect
6. 汉字乱码问题的解决
连接成功了,发现secureCRT对汉字显示乱码。google了下,好像说ubuntu 2.6 kernel的ssh默认编码是utf8,而secureCRT的默认显示编码好像不是utf8,那么只要把secureCRT的显示编码修改成utf8就可以正确显示了。在secureCRT中,选择option(选项)->session option(会话选项)->apperance(外观)里把字符编码改成utf8。
连接后的截图如下
这样就可以把SecureCRT当Ubuntu下的终端一样使用了。