vmware設定為橋接模式
使用root登陸ubuntu
使用gedit開啟/etc/network/inte***ces
auto lo注意這裡不要使用eth0,不然後面重啟服務就會報錯。iface lo inet loopback
auto ens33
iface ens33 inet
static
address 192.168.8.100netmask 255.255.255.0gateway 192.168.8.2
這裡再新增乙個
dns-nameservers 114.114.114.114這個是dns,如果沒有這個,那麼每次重啟系統,/etc/resolv.conf中配置的dns就會被清空,如果有這個dns-nameservers的話,那麼就會自動根據這個配置進行生成,不需要每次啟動配置了。
配置dns伺服器:
sudo gedit /etc/resolv.conf
新增
nameserver 114.114.114.114重啟網路
Ubuntu設定固定IP
為虛擬機器設定固定ip的方法 1 設定ip 閘道器 子網掩碼 vi etc network inte ces,然後新增如下內容 auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.1.161 ...
ubuntu設定固定IP
首先設定ip sudo gedit etc network inte ce 這裡除了gedit外還可以使用vim或vi 將其內容刪除 然後寫下以下內容 auto lo iface lo inet loopback auto etho iface etho inet static address 19...
ubuntu設定固定IP
在網上查了一下,試了試,大概是這麼個步驟。首先設定ip sudo gedit etc network inte ce 將其內容刪除 加上一下內容 auto lo iface lo inet loopback auto etho iface etho inet static address 192.1...