伺服器建立虛擬機器並開啟ssh服務和修改ip
阿新 • • 發佈:2018-11-22
我是通過VMware Workstation Pro 連線的公司伺服器,然後開始建立虛擬機器
然後就建立了一個Ubuntu系統的虛擬機器
首先,檢視是否有網路,開始安裝ssh服務,這樣就可以連線xshell遠端操作
安裝openssh-server。
直接輸入命令:
sudo apt-get install openssh-server
輸入y確認下載,並等待安裝完成
檢查是否安裝成功
sudo ps -e |grep ssh
開啟ssh服務
sudo service ssh start
(要在有網路的狀態下!!)
1.可以通過命令列來修改ip
# This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). # The loopback network interface auto lo iface lo inet loopback # The primary network interface auto eth0 #iface eth0 inet dhcp iface eth0 inet static address ip gateway 閘道器 netmask 255.255.255.0
儲存,重啟reboot
2可以通過視覺化介面修改
填寫自己的ip。掩碼,閘道器,dns可以參考下原有虛擬機器的,或者可以試試(114.114.114.114/8.8.8.8)