vmware虚拟机安装ubuntu的server版本后,安装ssh和ssh协议
可以先用apt-cache search ssh这种方式查看一下
apt-get install openssh-server
apt-get install ssh
安装后可用dpkg -l|grep ssh
安装用可以使用service ssh restart 这种方式重启ssh协议
NAT结合DHCP方式(可以直接在本机没有局域网时登陆,这种方式不需要任何路由器,在单机情况下即可连通vmware里的ubuntu,最佳方案)
在Eidt -> virtual network editor中设置如下(此为全局设置)
在ubuntu的Vm -> Settings里设置如下
启动ubuntu,vi /etc/network/interfaces
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
#auto eth0
#iface eth0 inetdhcp
auto eth0
iface eth0 inetdhcp
#address 192.168.0.103
#gateway 192.168.0.1
#netmask 255.255.255.0
auto lo
iface lo inet loopback
# The primary network interface
#auto eth0
#iface eth0 inetdhcp
auto eth0
iface eth0 inetdhcp
#address 192.168.0.103
#gateway 192.168.0.1
#netmask 255.255.255.0
最后重启ubuntu网卡
/etc/init.d/networking restart
用ifconfig查看ip可以看到DHCP设置的IP就是那个228网段的