手動配置靜態網絡卡位址不生效
網絡卡名變成了eth1
[root@localhost network-scripts]# ls |grep ifcfg
ifcfg-eth0
ifcfg-lo
[root@localhost network-scripts]# ifconfig
eth1 link encap:ethernet hwaddr 00:0c:29:3a:8b:02
inet addr:192.168.1.134 bcast:192.168.1.255 mask:255.255.255.0
inet6 addr: fe80::20c:29ff:fe3a:8b02/64 scope:link
up broadcast running multicast mtu:1500 metric:1
rx packets:5154 errors:0 dropped:0 overruns:0 frame:0
tx packets:299 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
rx bytes:529420 (517.0 kib) tx bytes:32319 (31.5 kib)
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:16436 metric:1
rx packets:0 errors:0 dropped:0 overruns:0 frame:0
tx packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
rx bytes:0 (0.0 b) tx bytes:0 (0.0 b)
[root@localhost network-scripts]# vim ifcfg-eth0
device=eth0
hwaddr=00:0c:29:52:39:18
type=ethernet
uuid=d12572cd-6808-4cae-b7b6-5480982206e8
onboot=yes
nm_controlled=yes
bootproto=static
ipaddr=192.168.1.119
netmask=255.255.255.0
gateway=192.168.1.1
手動設定靜態ip位址和閘道器後,儲存退出;然後重啟網路後出現錯誤
[root@localhost network-scripts]# service network restart
shutting down loopback inte***ce: [ ok ]
bringing up loopback inte***ce: [ ok ]
bringing up inte***ce eth0: error: no suitable device found: no device found for connection 『system eth0』.
[failed]
[root@localhost network-scripts]#
英漢互譯
no suitable device found: no device found for connection 『system eth0』.
沒有找到合適的裝置:沒有找到裝置連線的系統eth0」。
總結了以下解決方案
更改ifconfig顯示的eth1網絡卡名為eth0,並設定static ip位址
檢視以下資訊
[root@localhost network-scripts]# ls |grep ifcfg-
ifcfg-eth0
ifcfg-lo
[root@localhost network-scripts]# vim ifcfg-eth0
device=eth0
hwaddr=00:0c:29:3a:8b:02
type=ethernet
uuid=d12572cd-6808-4cae-b7b6-5480982206e8
onboot=yes
nm_controlled=yes
bootproto=static
ipaddr=192.168.1.119
netmask=255.255.255.0
gateway=192.168.1.1
重啟啟動網絡卡服務
[root@localhost network-scripts]# service network restart
shutting down loopback inte***ce: [ ok ]
bringing up loopback inte***ce: [ ok ]
bringing up inte***ce eth0: active connection state: activating
active connection path: /org/freedesktop/networkmanager/activeconnection/2
state: activated
connection activated
[ ok ]
[root@localhost network-scripts]# ifconfig
eth1 link encap:ethernet hwaddr 00:0c:29:3a:8b:02
inet addr:192.168.1.119 bcast:192.168.1.255 mask:255.255.255.0
inet6 addr: fe80::20c:29ff:fe3a:8b02/64 scope:link
up broadcast running multicast mtu:1500 metric:1
rx packets:3833 errors:0 dropped:0 overruns:0 frame:0
tx packets:273 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
rx bytes:380984 (372.0 kib) tx bytes:45223 (44.1 kib)
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:16436 metric:1
rx packets:0 errors:0 dropped:0 overruns:0 frame:0
tx packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
rx bytes:0 (0.0 b) tx bytes:0 (0.0 b)
VMware轉殖虛擬機器
在學習linux服務配置的過程中,必須使用兩台以上的虛擬機器才能在一台主機上完成服務配置並且驗證。這個時候再去從頭安裝虛擬機器費時費力,建議可以安裝完成之後改完yum源之後進行快照備份。不多廢話,下面開始介紹今天的內容 uuid手動設定的時候可能前24位廠商號有問題 沒有驗證過 uuid相同的裝置同...
VMware轉殖虛擬機器,轉殖機網絡卡啟動不了解決方案
vmware裡面轉殖了個虛擬機器,轉殖機網絡卡啟動不了,啟動報錯 device eth0 does not seem to be present,delaying initialization.failed 使用轉殖後的虛擬機器時發現原來在基本系統中的網絡卡eth0到了新系統卻沒有了,使用ifcon...
虛擬機器VMware轉殖Linux修改網絡卡的方式
在使用虛擬機器轉殖乙個自己的linux系統的時候,會導致第二個系統的網絡卡和第乙個系統的網絡卡配置一致,這會導致linux無法上網。所以我們一般會將linux的網絡卡配置修改一下。注意 轉殖後的系統有兩個網絡卡eth0和 eth1,但是實際起作用的是eth1,eth0是從之前轉殖過來的,eth1才是...