*****vm虚拟机设置桥接模式+ubuntu设置固定ip
1.查看虚拟机网卡:
ip addr
2.查看ddns:
cat /etc/resolv.conf
3.修改配置
vim /etc/network/interfaces
auto ens33 //其中eth0为虚拟网卡的名字
iface ens33 inet static // 设为静态
address 192.168.28.211 //这个ip地址可以设的大一些
netmask 255.255.255.0 //掩码:可以通过ifconfig查看
gateway 192.168.28.1 //网关:可以"netstat -rn"查看
3.设置dns服务器:
vim /etc/resolvconf/resolv.conf.d/base
nameserver 192.168.28.1
nameserver 114.114.114.114
4.重启:
init 6
5.查看IP,测试网络:
ifconfig
ping baidu.com
*****修改主机
1.修改主机名称:
vim /etc/hostname
ubuntu-test
2.追加主机与IP的绑定:
vim /etc/hosts
ubuntu-test 192.168.28.210