windows如何使用ssh登录ubuntu

来源:互联网 发布:批量修图软件 编辑:程序博客网 时间:2024/06/06 15:54
1.ssh的安装
gavin@ubuntu:~$ sudo apt-get install ssh

2.生成密钥
[html] view plaincopyprint?
  1. gavin@ubuntu:~$ ssh-keygen  
[plain] view plaincopyprint?
  1. Generating public/private rsa key pair.  
  2. Enter file in which to save the key (/home/gavin/.ssh/id_rsa):  
  3.          Created directory '/home/gavin/.ssh'.  
  4.          Enter passphrase (empty for no passphrase):  
  5.                  Enter same passphrase again:  
  6.                  Passphrases do not match.  Try again.  
  7.                  Enter passphrase (empty for no passphrase):  
  8.                          Enter same passphrase again:  
  9.                          Your identification has been saved in /home/gavin/.ssh/id_rsa.  
  10.                          Your public key has been saved in /home/gavin/.ssh/id_rsa.pub.  
  11.                          The key fingerprint is:  
  12.                          7f:47:de:fd:11:74:af:5c:89:a4:58:48:5d:c0:21:6a gavin@ubuntu  
  13.                          The key's randomart image is:  
  14.                          +--[ RSA 2048]----+  
  15.                          |         ooo+.   |  
  16.                          |        o oo     |  
  17.                          |       E . . . ..|  
  18.                          |      .   o o o +|  
  19.                          |        S. . ..oo|  
  20.                          |         .   + +o|  
  21.                          |          . . =.o|  
  22.                          |           . .  o|  
  23.                          |                .|  
  24.                          +-----------------+  

上述过程会提示输入ssh的登录密码,默认密钥的位置在~/.ssh目录中,这里将公钥改名为authorized_keys
[html] view plaincopyprint?
  1. gavin@ubuntu:~/cd .ssh  
  2. gavin@ubuntu:~/.ssh$ mv id_rsa.pub authorized_keys  

3.修改配置文件,/etc/ssh/sshd_config
[html] view plaincopyprint?
  1.  gavin@ubuntu:~/.ssh$ sudo vi /etc/ssh/sshd_config  
  2. ......  
  3. # AuthorizedKeysFile  %h/.ssh/authorized_keys  
  4. .....  
这里将AuthorizedKeysFile前的#号去掉即可


4.到windows平台,启动Puttygen,导入先前生成的私钥id_rsa,转换成putty所识别的格式(*.ppk),得到文件id_rsa.ppk.

5.windows上启动putty,进行如下配置
Session-Logging-Hostname:填上你的linux的ip
Windows -Translation - 在下拉菜单里选上UTF-8,这里不设置,登录后将会出现中文乱码。
Connection- Data - Auto login username:填上你登录ubuntu时用的用户名。
Connection- SSH-Auth-Private key file for authentication:选上id_rsa.ppk
保存Session配置

6.打开刚刚配置的ssh,成功登录
[html] view plaincopyprint?
  1. Using username "gavin".  
  2. Authenticating with public key "imported-openssh-key"  
  3. Passphrase for key "imported-openssh-key":  
  4. Linux ubuntu 2.6.32-21-generic #32-Ubuntu SMP Fri Apr 16 08:10:02 UTC 2010 i686 GNU/Linux  
  5. Ubuntu 10.04 LTS  
  6.   
  7. Welcome to Ubuntu!  
  8.  * Documentation:  https://help.ubuntu.com/  
  9. 409 packages can be updated.  
  10. 171 updates are security updates.  
  11.   
  12. Last login: Wed Jul  6 06:05:40 2011 from 192.168.27.112  
  13. gavin@ubuntu:~$  

7.其它事项
git带有puttygen工具
密钥的生成也可以直接使用puttygen
也可以不使用密钥机制,这样可以直接使用linux的用户名及密码登录
0 0
原创粉丝点击