2、與此重要的是,也需要在linux主機上安裝ssh服務程式,不然也連線不上,道理很簡單,linux系統上需要某個程式接受遠端客戶端的連線,我們需要在linux上安裝這個程式。命令附上:
sudo apt-get install openssh-server安裝完後,系統會自動啟動該服務程式
3、server responded 「algorithm negotiation failed」
網上的解決方式很有效:
修改ssh的配置檔案 /etc/ssh/sshd_config
在配置檔案中新增:
ciphers aes128-cbc,aes192-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr,3des-cbc,arcfour128,arcfour256,arcfour,blowfish-cbc,cast128-cbc
macs hmac-md5,hmac-sha1,[email protected],hmac-ripemd160,hmac-sha1-96,hmac-md5-96
kexalgorithms diffie-hellman-group1-sha1,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group-exchange-sha256,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group1-sha1,[email protected]
重啟sshd服務後,即可正常連線。
sudo service ssh restart
安裝Ubuntu遇到的一些坑
用u盤做啟動盤安裝ubuntu其實很容易,網上到處都是教程。但對顯示卡顯示問題,會出現開機黑屏的情況,故將解決方法記錄下來,以做備忘。配置 神船,顯示卡gtx1060。1 開機,按f7選擇u盤啟動。進入grub介面。2 按e編輯開機指令,在quite splash並在後面加上nomodeset,按f...
mysql遠端連線的一些坑(一)
在ubuntu上安裝mysql後,使用sqlyog遠端連線資料庫時遇到了2003,1130之類的問題特此記錄,以備後序方便查用。bind address 127.0.0.1只需找到該配置檔案再注釋該語句即可 nano etc mysql mysql.conf.d mysqld.cnf該錯誤是因為系統...
Ubuntu下安裝vsftp遇到的一些問題
1.執行make安裝vsftpd 報告錯誤 undefined reference to crypt 解決方法 開啟makefile vim makefile libs vsf findlibs.sh 末尾增加 lcrypt 變成 libs vsf findlibs.sh lcrypt 2.執行ma...