首先要確認ip地址,使用ifconfig或者ip addr檢視IP地址(一般網路卡名是eth0)
如果沒有eth0或者ipv4的地址的話,需要開啟網路卡
- 確保vmware左上角–虛擬機器–可移動裝置–網路裝置–設定中切換網路連線方式 NAT或者橋接模式
- 編輯/etc/network/interfaces檔案
vim /etc/network/interfaces
- 使用vim命令修改這個檔案 eth0為dhcp模式(我設定靜態IP老失敗,還是動態分配吧)
- 重啟網路卡
/etc/init.d/networking restart ifconfig eth0 down ifconfig eth0 up
開啟SSH,首先開啟配置檔案
vim /etc/ssh/sshd_config
需要找到 PasswordAuthentication 這一行,按”i”進入輸入模式,去掉PasswordAuthentication前面的#號,如果後面是”no”則修改為”yes”
wp儲存後,輸入service ssh start 開啟ssh,
service ssh start
update-rc.d ssh enable # 設定ssh開機自啟動
update-rc.d ssh disabled # 關閉自啟動
之後用Xshell連線linux就不用教了吧
~
本作品採用《CC 協議》,轉載必須註明作者和本文連結