ssh分客戶端openssh-client和openssh-server
如果你只是想登陸別的機器的ssh只需要安裝openssh-client(ubuntu有預設安裝,如果沒有則sudo apt-get install openssh-client),如果要使本機開放ssh服務就需要安裝openssh-server
sudo apt-get install openssh-server
然後確認sshserver是否啟動了:
ps -e |grep ssh
如果看到sshd那說明ssh-server已經啟動了。
如果沒有則可以這樣啟動:sudo /etc/init.d/ssh start
ssh-server配置檔案位於/ etc/ssh/sshd_config,在這裡可以定義ssh的服務埠,預設埠是22,你可以自己定義成其他埠號,如222。
然後重啟ssh服務:
sudo /etc/init.d/ssh stop
sudo /etc/init.d/ssh start
然後使用以下方式登陸ssh:
ssh [email protected] tuns為192.168.0.100機器上的使用者,需要輸入密碼。
斷開連線:exit
Ubuntu開啟安裝SSH登入
在新安裝的ubuntu系統後,預設是不支援ssh登入的,剛剛重新在vm中安裝的ubuntu16.04,不能使用xshell進行連線,所以,需要按照下面步驟進行安裝。這裡使用的是openssh系列工具1.更新下系統工具和依賴,執行sudo apt get update 執行安裝命令 sudo apt ...
Ubuntu開啟ssh服務
sudo apt get install openssh server sudo apt get install openssh client 然後確認sshserver是否啟動了 ps e grep ssh 如果只有ssh agent那ssh server還沒有啟動,需要 etc init.d s...
ubuntu開啟SSH服務
ssh分客戶端openssh client和openssh server 如果你只是想登陸別的機器的ssh只需要安裝openssh client ubuntu有預設安裝,如果沒有則sudo apt get install openssh client 如果要使本機開放ssh服務就需要安裝openss...