在哪里可以获取 Ubuntu 中 Yum 的存储库列表?
我有一台普通机器(Ubuntu),我刚刚执行了apt-get install yum
但是,yum.cof 的存储库列表为空。那么,我在哪里可以获得最新的存储库列表?
I have a vanilla machine (Ubuntu) and I just did apt-get install yum
However, the yum.cof has empty repos list. So, where can I get the most updated list of repository?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要将 repolist 选项传递给 yum 命令。此选项将显示 RHEL / Fedora / SL / CentOS Linux 下配置的存储库列表。
默认是列出所有启用的存储库。将
-v
(详细模式)作为选项传递给yum
命令以列出更多信息。You need to pass the repolist option to the
yum
command. This option will show you a list of configured repositories under RHEL / Fedora / SL / CentOS Linux.The default is to list all enabled repositories. Pass
-v
(verbose mode) as an option to theyum
command to list more information.正如此处提到的::
因此,仍然使用
apt
(请参阅 apt-get HowTo)推荐的包管理。As mentioned here::
So using
apt
(see apt-get HowTo) remains the recommended package management.