一.需求提出
公司新分配了一台服务器,因为部署 Nginx 需要依赖 gcc 环境,但是服务器没有自带 gcc,低版本的 gcc 都没有,而且不能联网。
二.离线安装gcc
1.下载gcc-4.8.5的所有依赖,并上传到指定目录、安装
蓝奏云下载链接,密码:7llh
我自己是上传到了 /opt/gcc-4.8.5 下,安装命令如下:
rpm -ivh *.rpm --nodeps --force
[root@localhost gcc-4.8.5]# rpm -ivh *.rpm --nodeps --force
warning: cpp-4.8.5-28.el7.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
Preparing... ################################# [100%]
Updating / installing...
1:mpfr-3.1.1-4.el7 ################################# [ 14%]
2:libmpc-1.0.1-3.el7 ################################# [ 29%]
3:cpp-4.8.5-28.el7 ################################# [ 43%]
4:kernel-headers-3.10.0-862.el7 ################################# [ 57%]
5:glibc-headers-2.17-222.el7 ################################# [ 71%]
6:glibc-devel-2.17-222.el7 ################################# [ 86%]
7:gcc-4.8.5-28.el7 ################################# [100%]
2.验证是否安装成功
查看 gcc 版本信息:
gcc -v
如果终端打印 gcc 相关版本信息,说明安装 gcc 成功!
[root@localhost gcc-4.8.5]# gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper
Target: x86_64-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
Thread model: posix
gcc version 4.8.5 20150623 (Red Hat 4.8.5-28) (GCC)
评论