學習和工作中,總是遇到奇奇怪怪的一些問題,處理之後記錄在這裡。
一、由於網絡卡名改變導致的網路服務啟動失敗
1.現象:伺服器重啟之後發現網路不通,然後ifconfig 發現網絡卡eth0不見了,只有本地lo
lo link encap:local loopback
inet addr:127.0
.0.1 mask:255.0
.0.0
inet6 addr: ::1/128 scope:host
up loopback running mtu:12536 metric:1
rx packets:6 errors:0 dropped:0 overruns:0 frame:0
tx packets:6 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1
rx bytes:594 (594.0 b) tx bytes:594 (594.0 b)
然後嘗試了ifup eth0,返回結果說沒有這個裝置
然後重啟網路服務/etc/init.d/networking restart也是失敗的
restarting networking (via systemctl): networking.servicejob for networking.service failed because the control process exited with error code. see "systemctl status networking.service"
and"journalctl -xe"
for details.
failed!
查狀態/etc/init.d/networking status出現錯誤:failed to start raise network interf….
2.檢查網絡卡名dmesg |grep eth
[ 0.000000] psci: probing for conduit method
from
acpi.
[ xx.2***25] netif_napi_add
()called
with
weight 256 on
device
eth%d
[ xx.1***76] r8169
***:
03 enp2s3: renamed from eth3
[ xx.2***12] r8169 ***:01 enp2s1: renamed from eth1
[ xx.2***71] r8169 ***:02 enp2s2: renamed from eth2
[ xx.3***96] r8169 ***:00 enp2s0: renamed from eth0
發現網絡卡名發生變化
4.修改網路配置檔案:
vim /etc/network/inte***ces
將裡面的eth0都替換成新網絡卡名:enp2s0
auto enp2s0
iface enp2s0 inet static
address 192.168.5.39
gateway 192.168.5.1
netmask 255.255.255.0
(實用)Ubuntu Linux靜態IP網路配置
記錄備忘。基於ubuntu 14.04 lts server.首先檢視一下當前系統的網絡卡 sudo iconfig 比如這裡我除了回環網路lo外,網路介面名為em1,下面就去給它配置網路。sudo vim etc network inte ces auto em1 iface em1 inet s...
Ubuntu Linux中文支援及編碼問題
ubuntu linux 中文支援及編碼問題 顯示中文 sudo apt get update 然後就能在system administration language support 裡選擇並安裝中文了。這樣介面上就能顯示中文了,但是這樣預設的編碼標準是utf 8 而很多應用都是在windows 下...
ubuntu linux下直觀的網路流量監控
文 linux迷 在windows下可以用各種工具監控網路流量的變化和去向,比如有什麼金山安全衛士,還有微軟官方 出的乙個tcpview,都是比較好的工具,可是在linux下呢,尤其是今天我們要講的ubuntu下呢?因為前段時間linux迷發現網路很不穩定,上網速度奇慢,用netstat查詢看的又不...