一、使用的系統是centos系統,剛搭建好的cent 最小安裝模式是沒有ifconfig命令的。
[root@bogon ~]
# ifconfig
-bash: ifconfig: 未找到命令
(1)修改網路配置檔案
[root@bogon network-scripts]
# cd /etc/sysconfig/network-scripts/
[root@bogon network-scripts]
# ls
ifcfg-ens33
[root@bogon network-scripts]
# vi ifcfg-ens33
type=
"ethernet"
proxy_method=
"none"
browser_only=
"no"
bootproto=
"dhcp"
defroute=
"yes"
ipv4_failure_fatal=
"no"
ipv6init=
"yes"
ipv6_autoconf=
"yes"
ipv6_defroute=
"yes"
ipv6_failure_fatal=
"no"
ipv6_addr_gen_mode=
"stable-privacy"
name=
"ens33"
uuid=
"cfb1ad91-2690-47ed-9fcf-3ebefdd5bd1c"
device=
"ens33"
onboot=
"yes"
[root@bogon network-scripts]
# yum install net-tools
(3)使用ifconfig命令檢視埠
[root@bogon network-scripts]
# ipconfig
-bash: ipconfig: 未找到命令
[root@bogon network-scripts]
# ifconfig
ens33: flags=4163 mtu 1500
inet 192.168.238.130 netmask 255.255.255.0 broadcast 192.168.238.255
inet6 fe80::2a89:3fee:b7ad:da34 prefixlen 64 scopeid 0x20
ether 00:0c:29:10:6d:06 txqueuelen 1000 (ethernet)
rx packets 7383 bytes 9745045 (9.2 mib)
rx errors 0 dropped 0 overruns 0 frame 0
tx packets 3366 bytes 223498 (218.2 kib)
tx errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73 mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10
loop txqueuelen 1000 (local loopback)
rx packets 0 bytes 0 (0.0 b)
rx errors 0 dropped 0 overruns 0 frame 0
tx packets 0 bytes 0 (0.0 b)
tx errors 0 dropped 0 overruns 0 carrier 0 collisions 0
Linux最小化安裝後優化
1.配置網絡卡 bin bash 修改網絡卡名為eth0 eth1形式 sed i linux16.s net.ifnames 0 biosdevname 0 g boot grub2 grub.cfg 刪除原網絡卡名對應配置檔案 rm rf etc sysconfig network script...
linux系統最小化安裝後的初始化指令碼
作為運維人員,經常會初始化系統,系統在安裝過程中基本都會選擇最小化安裝,這樣安裝好的系統裡會缺少很多環境。下面分享乙個系統安裝後的初始化指令碼 bin bash 系統時最小化安裝的,這裡要安裝系統的軟體庫 yum groupinstall y development tools 建立目錄 d ser...
centos最小化安裝後出現yum工具用不了
1.沒配上。dns配置路徑 vi etc resolv.conf 配置檔案問nameserver 8.8.8.8或者為nameserver 114.114.114.114 2.採用最小化安裝,缺少很多任務具導致yum安裝工具不上。1 更新源為國內源 3 更新源步驟 網易 163 yum源是國內最好的...