[转帖]CentOS8完美升级gcc版本方法

centos8,完美,升级,gcc,版本,方法 · 浏览次数 : 0

小编点评

## How to upgrade GCC version in CentOS 8.3 This guide outlines the steps to upgrade the GCC version in CentOS 8.3 to a specific version. **Prerequisites:** * CentOS 8.3 * GCC version greater than 8.x.x **Steps:** 1. **Edit the yum repository configuration:** * Open the file `/etc/yum.repos.d/Centos-8.repo` * Modify the `base` section with the following content: ``` name=CentOS-$releasever - Base - mirrors.aliyun.comfailovermethod=prioritybaseurl=http://mirrors.aliyun.com/centos/$releasever/BaseOS/$basearch/os/gpgcheck=1enabled=1gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-Official ``` **Explanation:** * `name`: specifies the repository name * `releasever`: the CentOS release version * `Base`: specifies the base package repository * `mirrors.aliyun.comfailovermethod`: specifies the mirror method for downloading packages * `basearch`: specifies the package architecture (e.g., i686 for 64-bit) 2. **Install the desired GCC version:** * Use the `yum install` command with the following syntax: ``` yum install gcc-toolset-XX ``` **Example:** To install GCC 11.x.x: ``` yum install gcc-toolset-11 ``` 3. **Activate the new GCC version:** * Once the installation is complete, activate the `gcc-toolset-10` environment variable: ``` 1scl enable gcc-toolset-10 bash ``` 4. **Verify the new version:** * Check the GCC version using the `gcc --version` command. **Note:** * This guide provides a basic overview. Ensure you follow the specific installation instructions for your chosen GCC version. * The `gcc-toolset-XX` package will automatically update the original `gcc` package to the specified version. * This method allows you to switch between different GCC versions without affecting the original installation.

正文

https://blog.whsir.com/post-6114.html

 

在CentOS8系统中,默认gcc版本已经是8.x.x版本,但是在一些场景中,还是需要高版本的gcc,网上一些作死的文章还在复制粘贴的告诉你如何编译升级gcc版本。

之前吴昊也写过CentOS完美升级gcc版本方法:https://blog.whsir.com/post-4975.html,但是之前的文章不适用CentOS8的版本,吴昊也强调过,不要去编译升级gcc,编译升级后可能会给你带来额外的麻烦。

本文基于CentOS8.3版本验证通过,仅适用于CentOS8、Redhat8版本

在CentOS8版本中,红帽也提供了开发工具包管理gcc版本,install的包名从devtoolset-x变成了gcc-toolset-x,通过该方式升级gcc好处就是随时可以切换gcc版本,不破坏原有gcc环境。

截至本文发稿前gcc-toolset仅支持gcc9、gcc10、gcc11版本

例:升级gcc至10.x.x版本

配置yum源

 

安装gcc-toolset-10

激活gcc版本,使其生效

此时通过gcc --version命令可以看到,gcc版本已经变成10.x.x,值得注意的是这仅仅在当前bash生效,如果需要永久生效,可以请自行添加环境变量。

与[转帖]CentOS8完美升级gcc版本方法相似的内容:

[转帖]CentOS8完美升级gcc版本方法

https://blog.whsir.com/post-6114.html 在CentOS8系统中,默认gcc版本已经是8.x.x版本,但是在一些场景中,还是需要高版本的gcc,网上一些作死的文章还在复制粘贴的告诉你如何编译升级gcc版本。 之前吴昊也写过CentOS完美升级gcc版本方法:http

[转帖]CentOS7/完美升级gcc版本方法

https://zhuanlan.zhihu.com/p/535657060 在某些应用场景中,需要特定的gcc版本支持,但是轻易不要去编译gcc、不要去编译gcc、不要去编译gcc,我这里推荐使用红帽提供的开发工具包来管理gcc版本,这样做的好处是随时切换版本,并且可以并存多个版本,不破坏原有gc

[转帖]CentOS7完美升级gcc版本方法

https://blog.whsir.com/post-4975.html 在某些应用场景中,需要特定的gcc版本支持,但是轻易不要去编译gcc、不要去编译gcc、不要去编译gcc,我这里推荐使用红帽提供的开发工具包来管理gcc版本,这样做的好处是随时切换版本,并且可以并存多个版本,不破坏原有gcc

[转帖]initdb 简介

https://www.cnblogs.com/ctypyb2002/p/9793041.html 写总结前 要看完整呢 不能太随意. os:centos 6.8postgresql:10.3 查看initdb的参数 $ /usr/pgsql-10/bin/initdb --help initdb

[转帖]Linux下fio磁盘的性能工具的部署和使用

介绍 fio 功能强大的性能测试工具, 具备多线程、报告清晰、多种引擎。 没有任何基础的,建议看完fio介绍!后继续阅读。 接下来,以ubuntu为例展示安装和使用过程。 准备条件 fio 各个版本下载各个os下fio依赖包 libaio依赖库libaio centos 备用链接 安装 安装liba

[转帖]Centos8/Ubuntu 20 安装 seafile 7.1.12 专业版|企业版 脚本快速安装教程(可选择安装目录)

https://www.ittel.cn/archives/4762.html 好像没有更新了,之前介绍了安装seafile企业版7.0.14的安装教程,现在介绍下seafile企业版 7.1.12安装 教程。 目录 更新说明 : 说明下seafile企业版 7.1.12和seafile企业版 7.

[转帖]CentOS8安装MySQL8详细教程,爬坑必备

https://www.ab62.cn/article/23022.html 安装环境 CentOS:8.5.2111MySQL:8.0.30 MySQL Community Server 安装过程 下载MySQL Yum Repository 官网查看MySQL的yum仓库列表,地址https:/

[转帖]CentOS8时间同步服务

时间同步服务 CentOS7之前的版本用的是ntpdate服务,之后用的是chrony服务 默认是安装的了 查看版本 [root@centos8 ~]#rpm -qi chrony Name : chrony Version : 3.5 Release : 2.el8 Architecture: x

[转帖]linux(centos8):zabbix配置邮件报警(监控错误日志)(zabbix5.0)

http://t.zoukankan.com/architectforest-p-13204184.html 一,zabbix5.0发邮件报警的准备工作: zabbix5.0在linux平台上的安装:参见这一篇: https://www.cnblogs.com/architectforest/p/1

[转帖]nmcli管理网络 RHEL8和CentOS8怎么重启网络

1. 前言 本文主要讲解如何重启RHEL 8或者CentOS 8网络以及如何解决RHEL8和CentOS8系统的网络管理服务报错,当我们安装好RHEL 8或者 CentOS 8,重启启动网络时,会出现以下报错: # systemctl restart network.service 报错信息如下 F