我正在尝试在运行 Redhat 4.4.4-13 的 Amazon EC2 实例上安装 gedit。我以为它会像
sudo yum install gedit
但这只给了我:
Loaded plugins: fastestmirror, priorities, security
Loading mirror speeds from cached hostfile
amzn-main | 2.1 kB 00:00
amzn-updates | 2.1 kB 00:00
Setting up Install Process
No package gedit available.
Error: Nothing to do
尝试“yum repolist all”得到以下结果:
repo id repo name status
amzn-main amzn-main-Base enabled: 2,463
amzn-main-debuginfo amzn-main-debuginfo disabled
amzn-main-nosrc amzn-main-nosrc disabled
amzn-updates amzn-updates-Base enabled: 86
amzn-updates-debuginfo amzn-updates-debuginfo disabled
amzn-updates-nosrc amzn-updates-nosrc disabled
repolist: 2,549
因此,这台机器似乎没有任何常用的存储库,包括带有 gedit 的存储库。我该如何安装它们?我找不到任何相关文档。
答案1
你似乎没有运行 Red Hat,但是亚马逊 Linux。由于这被设计为服务器实例,他们可能选择不提供诸如之类的桌面工具gedit
。
答案2
这在 CentOS 中有效,因此在 RedHat 中也应该没问题。
cd /etc/yum.repos.d
vi name.repo
然后在其中添加以下内容:
[nameofrepo]
name=Description of the repo you're adding
baseurl=URL of the repo
enabled=1
gpgcheck=1
gpgkey=RPM GPD Key
然后执行 rpm --import GPD 密钥 URL,您就设置好了。