zoukankan      html  css  js  c++  java
  • centos不联网Linux添加gcc,CentOS下离线安装gcc环境,图文详细,方法全面

    原文地址:https://blog.csdn.net/weixin_42356958/article/details/116729484

    CentOS下离线安装gcc环境,图文详细,方法全面

    下载

    方式1:如果有网的虚拟机还没有安装,可以直接

    yum install --downloadonly --downloaddir=/root/soft/gcc gcc

    yum install --downloadonly --downloaddir=/root/soft/gcc++ gcc-c++

    方式2:如果有网的虚拟机已经安装过,可以

    yum -y install yum-utils

    yumdownloader --resolve --destdir=/root/soft/gcc gcc

    yumdownloader --resolve --destdir=/root/soft/gcc++ gcc-c++

    可以看到,gcc的依赖如下

    6cb032a009590fb301fa3c8d3e294ba1.png

    gcc++的依赖如下

    cc79013e4bbd70ce953034aabc5a5e36.png

    方式3:看到我给的依赖包,直接网上下载好,这里是地址,可以在里面找到

    安装所需要的包

    #图中gcc所示需要的依赖

    cpp-4.8.5-39.el7.x86_64.rpm

    gcc-4.8.5-39.el7.x86_64.rpm

    glibc-devel-2.12-1.212.el6.x86_64.rpm

    glibc-headers-2.17-292.el7.x86_64.rpm

    kernel-headers-3.10.0-1062.el7.x86_64.rpm

    libmpc-1.0.1-3.el7.x86_64.rpm

    mpfr-3.1.1-4.el7.x86_64.rpm

    上传

    put D:AppStoreLinuxgcccpp-4.8.5-39.el7.x86_64.rpm /root

    put D:AppStoreLinuxgccgcc-4.8.5-39.el7.x86_64.rpm /root

    put D:AppStoreLinuxgccglibc-devel-2.12-1.212.el6.x86_64.rpm /root

    put D:AppStoreLinuxgccglibc-headers-2.17-292.el7.x86_64.rpm /root

    put D:AppStoreLinuxgcckernel-headers-3.10.0-1062.el7.x86_64.rpm /root

    put D:AppStoreLinuxgcclibmpc-1.0.1-3.el7.x86_64.rpm /root

    put D:AppStoreLinuxgccmpfr-3.1.1-4.el7.x86_64.rpm /root

    安装

    我这就强制安装了,因为逐个安装,很容易因为递进依赖,而报一堆错,需要下载一堆特别多的包。

    rpm -ivh *.rpm --nodeps --force

    检查

    gcc -v

  • 相关阅读:
    bzoj1607: [Usaco2008 Dec]Patting Heads 轻拍牛头
    bzoj1016: [JSOI2008]最小生成树计数
    bzoj1051: [HAOI2006]受欢迎的牛
    bzoj1003: [ZJOI2006]物流运输
    bzoj1079: [SCOI2008]着色方案
    bzoj1179: [Apio2009]Atm
    bzoj1877: [SDOI2009]晨跑
    bzoj1821: [JSOI2010]Group 部落划分 Group
    bzoj1305: [CQOI2009]dance跳舞
    bzoj1858: [Scoi2010]序列操作
  • 原文地址:https://www.cnblogs.com/eyesfree/p/15176403.html
Copyright © 2011-2022 走看看