ubuntu安装yum源的方法_查看yum源是否安装

(1) 2024-06-02 18:23

Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说ubuntu安装yum源的方法_查看yum源是否安装,希望能够帮助你!!!。

1.安装yum

apt-get install yum

2.配置yum源

由于是Ubuntu没有yum源,所以要想使用yum安装软件必须要配置yum安装源。在/etc/yum/repos.d/目录下创建两个文件,fedora-163.repo和fedora-updates-163.repo。分别复制以下配置信息保存即可。

推荐使用vim编辑器。在终端使用:

vi fedora-163.repo

进入第一个文件,然后:

在命令模式下按下键盘上的a进入插入模式;粘贴下面两个文件内容;按下ESC键;再输入 :wq! 强制保存 (可能创建的文件是只读的,这样可以不用修改权限即可更改文件内容)(需要在root用户下)

fedora-163.repo文件内容:

 
[fedora]

name=Fedora 17 - $basearch - 163.com

failovermethod=priority

baseurl=http://mirrors.163.com/fedora/releases/17/Everything/$basearch/os/

mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=fedora-17&arch=$basearch

enabled=1

metadata_expire=7d

gpgcheck=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$basearch



[fedora-debuginfo]

name=Fedora 17 - $basearch - Debug - 163.com

failovermethod=priority

baseurl=http://mirrors.163.com/fedora/releases/17/Everything/$basearch/debug/

mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=fedora-debug-17&arch=$basearch

enabled=0

metadata_expire=7d

gpgcheck=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$basearch



[fedora-source]

name=Fedora 17 - Source - 163.com

failovermethod=priority

baseurl=http://mirrors.163.com/fedora/releases/17/Everything/source/SRPMS/

mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=fedora-source-17&arch=$basearch

enabled=0

metadata_expire=7d

gpgcheck=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$basearch

fedora-updates-163.repo文件内容:

 
[updates]

name=Fedora 17 - $basearch - Updates - 163.com

failovermethod=priority

baseurl=http://mirrors.163.com/fedora/updates/17/$basearch/

mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=updates-released-f17&arch=$basearch

enabled=1

gpgcheck=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$basearch


[updates-debuginfo]

name=Fedora 17 - $basearch - Updates - Debug - 163.com

failovermethod=priority

baseurl=http://mirrors.163.com/fedora/updates/17/$basearch/debug/

mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=updates-released-debug-f17&arch=$basearch

enabled=0

gpgcheck=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$basearch


[updates-source]

name=Fedora 17 - Updates Source - 163.com

failovermethod=priority

baseurl=http://mirrors.163.com/fedora/updates/17/SRPMS/

mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=updates-released-source-f17&arch=$basearch

enabled=0

gpgcheck=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$basearch

3.执行配置

在终端输入

yum makecache

即可完成在Ubuntu中安装yum

今天的分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

上一篇

已是最后文章

下一篇

已是最新文章

发表回复