cd /etc/yum.repos.d
cp CentOS-AppStream.repo CentOS-AppStream.repo-bak
cp CentOS-Base.repo CentOS-Base.repo-bak
cp CentOS-Extras.repo CentOS-Extras.repo-bak
二、更换 CentOS-Base.repo 为 阿里云的 CentOS-Base.repo
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo
三、更新yum缓存
yum clean all
yum makecache
四、更改url
find /etc/yum.repos.d/ -name "*.repo" | xargs sed -i 's/$releasever/8-stream/g'
find /etc/yum.repos.d -name "*.repo" | xargs sed -i 's/$basearch/x86_64/g'
五、-----------
引用来自“布尔道长”的答案引用来自“eechen”的答案
yum源的配置文件位于 /etc/yum.repos.d
CentOS 6 建议加装下面两个源:
rpm -ivh http //mirrors ustc edu cn/fedora/epel/6/i386/epel-release-6-8.noarch.rpm
rpm -ivh http //rpms famillecollet com/enterprise/remi-release-6.rpm
安装好后可以查看以下remi的php和mysql版本,都提供有5.5版,但php5.5由remi-test提供,生产环境请慎用:
yum --enablerepo=remi-test,remi list php mysql
remi-test和remi源默认是不开启的,需要通过--enablerepo参数指定,把/etc/yum.repos.d/remi.repo里对应的[remi]和[remi-test]块下的enabled=0改为enabled=1则为默认开启.
epel源则有fedora社区维护,里面有很多centos官方源没有的软件,比如非常实用的命令行界面任务管理器htop:
yum --enablerepo=epel -y install htop
可以省略--enablerepo=epel,因为epel默认是开启,而epel-testing是默认不开启的,要默认开启,修改同上.
其他还有RPMForge源和RPMFusion源,更多的包可以到pkgs.org去找.
最后,没必要追求新版本软件,不要为了升级而升级,我依旧还在用CentOS官方源的PHP5.3.3和MySQL5.1.
还有CentOS是面向服务器的Linux发行版,非常不建议在CentOS装图形界面(除非必须),然后埋怨桌面软件少,玩Wine,玩桌面,Fedora和Ubuntu这类是更好的选择.
安装epel源不错。
图形界面我觉得还是可以安装的,有图形界面配置一些软件更直观一点,也减少了出错的几率
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)