Linux

在 rhel 6.1 上安裝 gcc

  • October 13, 2017

我的 RHEL 6.1 機器上似乎沒有安裝 GCC。另外,當我這樣做時:

sudo yum install gcc 

它吐槽:

Updating Red Hat repositories.
Setting up Install Process
No package gcc available.
Error: Nothing to do

相同的命令在 rhel 5.5 上執行良好。可能是什麼問題呢?

sudo yum search gcc

回報:

libgcc.x86_64 : GCC version 4.4 shared support library
libgomp.x86_64 : GCC OpenMP v3.0 shared support library

sudo yum grouplist

回報:

Loaded plugins: product-id, subscription-manager
Updating Red Hat repositories.
Setting up Group Process
Error: No group data available for configured repositories


sudo yum repolist

回報:

Loaded plugins: product-id, subscription-manager
Updating Red Hat repositories.
repolist: 0





ls -l /etc/yum.repos.d/

回報:

-rw-r--r--. 1 root root  67 Nov 28 06:28 redhat.repo
-rw-r--r--. 1 root root 529 Apr 27  2011 rhel-source.repo

yum install gcc正如您所懷疑的那樣,應該可以工作。也許您需要訂閱 RHN 中的特定頻道,但這個 gcc 建議似乎表明gcc所有這些頻道都應該提供該頻道,並且我假設您已經訂閱了其中至少一個:

  • 紅帽企業 Linux 桌面 (v. 6)
  • 紅帽企業 Linux HPC 節點 (v. 6)
  • 紅帽企業 Linux 伺服器 (v. 6)
  • 紅帽企業 Linux 工作站 (v. 6)

引用自:https://unix.stackexchange.com/questions/25562