如何在CentOS安装glib-devel
时间:2019-11-20 08:52:41 来源:igfitidea点击:
如何在RHEL/Fedora/CentOS Linux下安装glib-devel?
执行:
# yum -y install glib-devel
如果你没有存储源,可以使用阿里云的:
备份repo
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
下载新的CentOS-Base.repo 到/etc/yum.repos.d/
CentOS 5
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-5.repo
CentOS 6
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-6.repo
CentOS 7
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
再执行安装程序
# yum --disablerepo=\* --enablerepo=base -y install glib-devel
名称base 在CentOS-Base.repo文件中查看[base]
。