centos7 use ifconfig command

[1]Default no install ifconfigcommand,if you want to use ifconfig need install net-tools

yum -y install net-tools
[[email protected] ~]# ifconfig 
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.1.123  netmask 255.255.255.0  broadcast 192.168.1.255
        inet6 fe80::215:5dff:fe01:a2c  prefixlen 64  scopeid 0x20<link>
        ether 00:15:5d:01:0a:2c  txqueuelen 1000  (Ethernet)
        RX packets 2986228  bytes 4432302967 (4.1 GiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 1541033  bytes 95355497 (90.9 MiB)
        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 112  bytes 10970 (10.7 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 112  bytes 10970 (10.7 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
[[email protected] ~]# systemctl stop NetworkManager
[[email protected] ~]# systemctl disable NetworkManager
rm ‘/etc/systemd/system/multi-user.target.wants/NetworkManager.service‘
rm ‘/etc/systemd/system/dbus-org.freedesktop.NetworkManager.service‘
rm ‘/etc/systemd/system/dbus-org.freedesktop.nm-dispatcher.service‘

[2]grub2,对这我不太了解,兴起的是ipv6我用不到,可以禁用掉

vim /etc/default/grub

GRUB_CMDLINE_LINUX="ipv6.disable=1 crashkernel=auto  vconsole.font=latarcyrheb-sun16 rd.lvm.lv=centos_maria    db/swap vconsole.keymap=us rd.lvm.lv=centos_mariadb/root rhgb quiet"

[[email protected] ~]# grub2-mkconfig -o /boot/grub2/grub.cfg 
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-3.10.0-123.el7.x86_64
Found initrd image: /boot/initramfs-3.10.0-123.el7.x86_64.img
Warning: Please don‘t use old title `CentOS Linux, with Linux 3.10.0-123.el7.x86_64‘ for GRUB_DEFAULT, use `Advanced options for CentOS Linux>CentOS Linux, with Linux 3.10.0-123.el7.x86_64‘ (for versions before 2.00) or `gnulinux-advanced-d6e32a08-4535-4ae1-8220-c1f0d51464b3>gnulinux-3.10.0-123.el7.x86_64-advanced-d6e32a08-4535-4ae1-8220-c1f0d51464b3‘ (for 2.00 or later)
Found linux image: /boot/vmlinuz-0-rescue-7f8cb19f06a84d6a939e964ca4edcaa7
Found initrd image: /boot/initramfs-0-rescue-7f8cb19f06a84d6a939e964ca4edcaa7.img
done

reboot 后生效!

centos7 use ifconfig command

时间: 2024-10-10 12:36:25

centos7 use ifconfig command的相关文章

CentOS7 下ifconfig command not found解决办法

今天尝鲜用VMWare安装了CentOS7,选择了最小安装包模式,安装完毕之后想查看一下本机的ip地址,发现报错 # ifcon -bash: ifconfig: command not found 谷歌了一下,整理了一下解决思路 1. 查看ifconfig命令是否存在 查看 /sbin/ifconfig是否存在 2.如果ifconfig命令存在,查看环境变量设置 #echo $PATH 如果环境变量中没有包含ifconfig命令的路径 临时修改环境变量:在shell中输入 $export PA

Centos7下ifconfig command not found 解决办法

最近重装了centos7,今日准备使用ifconfig命令的时候,结果~出现了command not found !尼玛,这是什么鬼~ so 搜了一下,有幸搜到了一份可用的文章的,亲测很有用. 1.查看ifconfig命令是否存在,查看/sbin/ifconfig是否存在 2.如果ifconfig命令你存在,查看环境变量设置:echo $PATH     如果环境变量中没有包括ifconfig命令路径.可以修改环境变量:export PATH=$PATH:/sbin 然后再输入ifconfig命

CentOS7执行ifconfig Command not found 未找到命令

问题:刚学linux刚按照网络上安装的centos7装完之后登陆成功输入ifconfig,傻眼了[[email protected]~]# ifconfig  -bash: ifconfig: 未找到命令 解决方法: 这可是新安装的系统,怎么会没找到熟悉ifconfig命令呢?网上搜一下,一大堆人都在说是环境变量问题,但我确信我的/etc/profile设置是对的,于是终于找到一篇文章说是安装下net-tools就好 [[email protected]bogon~]# yum install

centos7提示ifconfig command not found解决

安装centos7时,选择了minimal install的话,没有安装网络组件. yum install net-tools 可以解决问题.

CentOS 7.0下解决ifconfig: command not found的方法

在CentOS7.0中输入ifconfig命令会遇到-bash: ifconfig: command not found. 在CentOS最小安装时是没有附带ifconfig,我们进入sbin目录下可以查看到ifconfig命令是没有安装的 因此这个时候我们只要安装net-tool插件,此插件中带有ipconfig命令 yum install -y net-tools 安装完成后,可以直接使用ifconfig命令了 原文地址:https://www.cnblogs.com/Chan94/p/10

ifconfig出现bash: ifconfig:command not found解决办法之解决连环问题

Centos7中没有安装ifconfig命令的解决方法 在这之前,centos7最小化安装默认是不能联网的,首先必须切换到root用户,再解决网络问题 一.      切换到root用户 二.      解决网络问题 三.      安装ifconfig   一.切换到root用户 Linux下切换root用户提示Authentication failure错误的解决方法 第一种情况可能是root密码输入错误造成的,再仔细检查一遍是否输入错误 第二种是刚安装完,没有设置root用户密码导致的,

CentOS 7 ifconfig: command not found

# ifcon-bash: ifconfig: command not found谷歌了一下,整理了一下解决思路 查看ifconfig命令是否存在 查看 /sbin/ifconfig是否存在 如果ifconfig命令存在,查看环境变量设置 #echo $PATH 如果环境变量中没有包含ifconfig命令的路径 临时修改环境变量:在shell中输入 $export PATH = $PATH:/sbin 然后再输入ifconfig命令即可,但是这只是临时更改了shell中的PATH,如果关闭she

bash: ifconfig: command not found 问题解决

ifconfig使用出现问题了?竟然提示找不到~~于是百度~~ [[email protected] /]$ ifconfig 提示:“bash: ifconfig: command not found” 切换到root用户下 [[email protected] /]$ ifconfig 依然提示:“bash: ifconfig: command not found” 分析问题 1.whereis ifconfig 看一下这个命令在哪个目录下 2.echo $PATH 看一下该目录是否在路经下

ifconfig: command not found(CentOS专版,其他的可以参考)

ifconfig: command not found 查看path配置(echo相当于c中的printf,C#中的Console.WriteLine) echo $PATH 解决方案1:先看看是不是root用户,如果不是就 su 切换到root用户 su 解决方案2:(如果没看见 /sbin)[我们这显然不是这个问题] 这个一般都是因为配置没弄好,永久解决: 打开/etc/profile文件,在其中输入export PATH=$PATH:/sbin 解决方案3:(CentOS后来换指令了,看看