linux虚拟机安装完毕之后,ifconfig命令提示command not found

2019-07-09 19:27:15

用虚拟机安装了centos ,然后参考链接:


https://blog.csdn.net/qiruibbb/article/details/80804121




重新设置了网卡的配置,使虚拟机的系统可以正常上网之后。


习惯性的敲了ifconfig,结果提示command not found


网络上说ifconfig命令可以被ip addr等命令替代了。


如果还想使用,只需要执行:yum install net-tools 即可。



  • 2021-01-05 15:41:42

    nodejs修改时区

    ​let date = new Date(); date.setHours(date.getHours() + 8);

  • 2021-01-06 23:09:38

    mp3解码器转PCM合并

    首先,为了混合两个音频文件,您需要操纵它们的原始表示;由于MP3文件被压缩,您无法直接访问信号的原始表示.您需要对压缩的MP3流进行解码,以便“理解”您的音频信号的波形,然后可以混合使用.

  • 2021-01-08 16:47:37

    nodejs如何使用fetch

    node 中没有实现 fetch,你可以使用 node-fetch,使得在 node 中也可以使用 fetch.