centos7最小化安装使用ip addr代替ifconfig
发布于 分类 Linux
56天前 有1个用户阅读过
上大学时买了第一台电脑后,我很长时间以来都是一个升级控,系统,软件,基本上会保持到最新版本状态,这两年没有这么明显的强迫症了,比如手机APP更新比较频繁,所以基本上会几个月才更新一次主要的软件。
最开始折腾VPS的时候,发现Linux源里的软件一般都是比较老的,为什么会没有经常更新呢?这是因为用在生产环境linux发行版,是用来做Server的,需要长时间,比如365天不间断运行。为了稳定和兼容,操作系统和软件会比较老。但早晚会有升级的一天。所以也得提前学习了解一下新版本。以便以后需要使用新版本时能快速部署。
centos7出来也很久了,一直没有尝鲜。先用虚拟机折腾一下centos7.从centos下载Minimal ISO
https://www.centos.org/download/
此处省略虚拟机安装过程...直到安装完成。
不习惯在虚拟机里操作,所以第一件事就是打算先找到IP地址,然后用熟悉的ssh工具操作。
首先找到网卡配置文件,先把网连上。已经不是eth0了,改eth0的教程可站内搜索,稍后补上。
vi /etc/sysconfig/network-scripts/ifcfg-eno16777736
将ONBOOT=no改为yes然后重启网络服务生效
service network restart
执行ifconfig,结果提示命令没有找到。ifconfig
-bash: ifconfig: command not found
觉得是不是命令变了,有啥新命令了,网上搜索了一下,果然是变了。需要用ip addr[root@localhost ~]# ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eno16777736: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
link/ether 00:0c:29:9f:73:f4 brd ff:ff:ff:ff:ff:ff
inet 192.168.128.137/24 brd 192.168.128.255 scope global dynamic eno16777736
valid_lft 1599sec preferred_lft 1599sec
inet6 fe80::20c:29ff:fe9f:73f4/64 scope link
valid_lft forever preferred_lft forever
找到IP后用ssh工具顺利连上了,然后就可以稍后继续折腾了。如果非要使用ifconfig怎么办?
[root@localhost ~]# yum search ifconfig
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirror.bit.edu.cn
* extras: mirrors.163.com
* updates: mirrors.163.com
========================= Matched: ifconfig ================================
net-tools.x86_64 : Basic networking tools
所以只需要安装net-tools,然后就可以使用ifconfig了[root@localhost ~]# ifconfig
eno16777736: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.128.137 netmask 255.255.255.0 broadcast 192.168.128.255
inet6 fe80::20c:29ff:fe9f:73f4 prefixlen 64 scopeid 0x20<link>
ether 00:0c:29:9f:73:f4 txqueuelen 1000 (Ethernet)
RX packets 10190 bytes 11430827 (10.9 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 3759 bytes 312700 (305.3 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 0 (Local Loopback)
RX packets 532 bytes 46496 (45.4 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 532 bytes 46496 (45.4 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
-- The End --