ubuntu設置IP地址&修改vi模式鍵盤上下鍵錯位

解決ubuntu上面使用vi 出現方向鍵錯亂的狀況ios

編輯/etc/vim/vimrc.tiny 使用root權限操做:
將「set compatible」改爲「set nocompatible」ubuntu

新增一條配置:
set backspace=2vim

最終效果是:oop

set nocompatible
set backspace=2

保存退出。spa

 

Ubuntu 16.04修改IP地址(動態分配IP和靜態IP地址)rest

1.修改Ubuntu16.04的網卡名稱(默認的Ubuntu網卡名稱不是eth0 wlan0)code

執行:sudo vi /etc/default/grubserver

找到GRUB_CMDLINE_LINUX=""
改成GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"

執行:sudo grub-mkconfig -o /boot/grub/grub.cfg blog

重啓(這裏指的是重啓機器,僅僅重啓網卡可能不行),效果以下圖: dns

 

2.修改默認的network配置文件 
執行:sudo gedit /etc/network/interfaces 
默認文檔內容:

# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo iface lo inet loopback

修改以下:  

兩種修改方式:

# 第一種 動態獲取IP配置: 

auto eth0 
iface eth0 inet dhcp 

# 第二種 靜態獲取IP配置: 

auto eth0 
iface eth0 inet static 
address 10.1.112.135 
netmask 255.255.255.0
gateway 10.1.112.2
dns-nameserver 114.114.114.114

保存 退出。

3. 重啓網卡(+重啓電腦) 

執行:sudo /etc/init.d/networking restart 

4. 完成配置

相關文章
相關標籤/搜索