發表文章

目前顯示的是有「Mac OSX」標籤的文章

python3安裝matplotlib

mac osx 上的python3 似乎沒有 matplotlib,自己安裝解決了 參考

no matching key exchange method found. Their offer: diffie-hellman-group1-sha1

今天在用mac os ssh到遠端時遇到與錯誤訊息  no matching key exchange method found. Their offer: diffie-hellman-group1-sha1 後來加了這解決了 ssh -oKexAlgorithms=+diffie-hellman-group1-sha1  123.123.123.123 參考

line 1: Bad configuration option: useroaming

最近要用ssh連接aws ubuntu server突然發現一個問題 $ ssh -i "xxx.pem" ubuntu@xxx.xxx.xxx.com /Users/korekyourin/.ssh/config: line 1: Bad configuration option: useroaming /Users/korekyourin/.ssh/config: terminating, 1 bad configuration options 這時必須進入/Users/korekyourin/.ssh/config 把useroaming註解掉 vi /Users/korekyourin/.ssh/config UseRoaming no 註解掉,變成 #UseRoaming no 這樣ssh到server 才能成功 參考