ubuntu 13下安裝ssh server
如果直接運行sudo apt-get install openssh-server,會提示錯誤,安裝不上,
可到下面地址下載deb安裝包,
http://pkgs.org/ubuntu-13.04/ubuntu-main-i386/openssh-server_6.1p1-4_i386.deb/download/
然後命令安裝
#dpkg -i openssh-server_6.1p1-4_i386.deb
安裝完以後,編輯ssh_config
#vi /etc/ssh/sshd_config
去掉下面兩行的注解
#GSSAPIAuthentication yes
#GSSAPIDelegateCredentials no
重啟服務 /etc/init.d/ssh restart
測試 $ssh test@localhost