在Ubuntu系统中,yum是Redhat系列的Linux发行版中的软件包管理工具,而Ubuntu则使用apt作为软件包管理工具。因此,在Ubuntu系统中,我们需要配置apt源而不是yum源。
要配置apt源,请按照以下步骤进行操作:
打开终端。
进入sources.list文件所在目录。输入以下命令:
cd /etc/apt/
sudo cp sources.list sources.list.bak
sudo nano sources.list
对于Ubuntu 20.04版本(Focal Fossa):
deb http://archive.ubuntu.com/ubuntu/ focal main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ focal-updates main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse
对于其他版本的Ubuntu,请将上述内容中的“focal”替换为您正在使用的Ubuntu版本的代号。
保存并关闭文件。按下Ctrl + X,然后按Y,最后按下Enter键。
更新apt源。输入以下命令:
sudo apt update
配置完成后,您就可以使用apt命令来安装、更新和移除软件包了。例如,输入以下命令来安装一个软件包:
sudo apt install 软件包名称
希望对您有帮助!