如何在 Ubuntu 18.04 中重新创建 /etc/apt 文件夹中的存储库

如何在 Ubuntu 18.04 中重新创建 /etc/apt 文件夹中的存储库

/etc/apt我意外删除了包含的文件夹中的所有文件sources.list

现在我无法通过终端安装任何软件;每次都会出现此错误:

Package has no installation candidate

我该如何解决这个问题?提前谢谢您 :-)

答案1

您可以sources.list/etc/apt目录中创建。

sudo touch /etc/apt/sources.list

用 nano 打开文件。

sudo nano /etc/apt/sources.list

复制文件中的以下内容。

#------------------------------------------------------------------------------#
#                            OFFICIAL UBUNTU REPOS                             #
#------------------------------------------------------------------------------#


###### Ubuntu Main Repos
deb http://in.archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse 

###### Ubuntu Update Repos
deb http://in.archive.ubuntu.com/ubuntu/ bionic-security main restricted universe multiverse 
deb http://in.archive.ubuntu.com/ubuntu/ bionic-updates main restricted universe multiverse 

保存后你就可以运行

sudo apt update

并安装任何软件包。

相关内容