-
Notifications
You must be signed in to change notification settings - Fork 2
centos 初始化
xiaoke_1256 edited this page Aug 8, 2024
·
5 revisions
$ sudo yum install ifconfig
还是没找到?
$ sudo yum search ifconfig
或
$ sudo yum search all ifconfig
然后
$ sudo yum install net-tools
从官网上下载新的源文件,地址如下: http://mirrors.aliyun.com/repo/Centos-7.repo
上传到 Centos服务器。
备份 /etc/yum.repos.d/CentOS-Base.repo 文件
cd /etc/yum.repos.d/
mv CentOS-Base.repo CentOS-Base.repo.bak
将Centos-7.repo 拷贝到/etc/yum.repos.d/
mv ~/Centos-7.repo /etc/yum.repos.d/CentOS-Base.repo
替换完成后,清除缓存并生成新的缓存:
sudo yum clean all
sudo yum makecache
Hi