ubuntu16 0 4 設定固定ip位址

2021-07-30 23:58:38 字數 612 閱讀 1691

由於ubuntu重啟之後,ip很容易改變,可以用以下方式固定ip位址

1.設定ip位址

vi /etc/network/inte***ce

# the loopback network inte***ce

auto lo

iface lo inet loopback

# the primary network inte***ce

auto ens32

iface ens32 inet static

address 192.168.159.130

netmask 255.255.255.0

gateway 192.168.2.1

2.設定dns

vi /etc/resolvconf/resolv.conf.d/base

nameserver 8.8.8.8

nameserver 8.8.4.4

3.重新整理配置檔案

resolvconf -u

4.重啟網路服務

/etc/init.d/networking restart

如果上述命令重啟網絡卡失敗,可以手動關閉網絡卡,再開啟網絡卡,這是ip已經改過來了,變成你設定的固定的ip了

ubuntu16 04預設python設定

ubuntu16.04預設的pthon版本是2.7,如果想要用python3可以直接用python3 要執行的檔名,可是這樣不方便。將python3設定為預設版本 其實就是設定優先順序 sudo update alternatives install usr bin python python us...

ubuntu16 04自動設定行號

第一步 安裝vim 命令為 sudo apt get install vim 第二步 更改vim的配置檔案etc vim命令為 1 cd etc vim 2 sudo gedit vimrc 第三步 在vimrc最後令起一行插入下面內容 syntax on set tabstop 4 set shi...

ubuntu16 04和 18 04配置靜態ip

sudo vim etc network inte ces auto ens33 iface ens33 inet static address 192.168.211.30 netmask 255.255.255.0 gateway 192.168.211.2 dns nameservers 19...