zoukankan      html  css  js  c++  java
  • CentOS 7最小化安装后找不到‘ifconfig’命令——修复小提示

    如果你不知道在哪里可以找到ifconfig命令,请按照以下简单的步骤来找到它。首先,让我们找出哪个包提供了ifconfig命令。要完成这项任务,输入以下命令:

    [root@jrserver app_files]# yum provides ifconfig
    Loaded plugins: fastestmirror
    Loading mirror speeds from cached hostfile
     * base: mirrors.163.com
     * epel: mirrors.tuna.tsinghua.edu.cn
     * extras: mirrors.aliyun.com
     * updates: mirrors.163.com
    net-tools-2.0-0.17.20131004git.el7.x86_64 : Basic networking tools
    Repo        : @base
    Matched from:
    Filename    : /usr/sbin/ifconfig

    或者你也可以使用以下命令:

    yum whatprovides ifconfig

    就像你在上面的输出中所看到的,net-tools包提供了ifconfig命令。因此,让我们安装net-tools包来使用ifconfig命令:

    yum install net-tools
    [root@jrserver app_files]# ifconfig 
    eno16777984: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
            inet 10.60.10.200  netmask 255.255.255.0  broadcast 10.60.10.255
            inet6 fe80::20c:29ff:fe05:766b  prefixlen 64  scopeid 0x20<link>
            ether 00:0c:29:05:76:6b  txqueuelen 1000  (Ethernet)
            RX packets 607480  bytes 1278116091 (1.1 GiB)
            RX errors 0  dropped 13  overruns 0  frame 0
            TX packets 404695  bytes 37875952 (36.1 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 18963942  bytes 5327444973 (4.9 GiB)
            RX errors 0  dropped 0  overruns 0  frame 0
            TX packets 18963942  bytes 5327444973 (4.9 GiB)
            TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
  • 相关阅读:
    [后缀数组] Luogu P5028 Annihilate
    [后缀数组] Luogu P3809 后缀排序
    [差分][线段树] Luogu P4243 等差数列
    [线段树] Luogu P4314 COU监控
    [二分][dp凸优化] Luogu P4383 林克卡特树lct
    [树上差分][dfs] Luogu P4652 One-Way Streets
    [dfs][思维] Luogu P3208 矩阵
    [dfs][二进制状压] Luogu P4906 小奔关闹钟
    [容斥] Luogu P5339 唱、跳、rap和篮球
    [dfs][模拟网络流] Luogu P4189 星际旅行
  • 原文地址:https://www.cnblogs.com/vijayfly/p/6202352.html
Copyright © 2011-2022 走看看