E:源列表 /etc/apt/sources.list 第 4 行中未知类型“See”

E:源列表 /etc/apt/sources.list 第 4 行中未知类型“See”

我收到一条通知。我无法打开软件更新应用程序,也无法在终端中安装任何东西。它给出了这个。E: Type 'See' is not known on line 4 in source list /etc/apt/sources.list

答案1

我想到的一件事是,您是否取消了对某些注释行的注释/etc/apt/sources.list

如果这是突然发生的,而不是在安装时发生的,那么我认为一定是有什么东西或什么人篡改了sources.list……

仅供参考,注释行是以#(注释符号) 开头的行,在任何情况下都不应删除,#因为它会导致 apt 读取语法上无意义的文本。

中的所有有效行必须以或/etc/apt/sources.list开头。其余的应该是以符号开头的注释。debdeb-src#

从您的错误信息中我得出结论,您篡改了以下行中的注释/etc/apt/sources.list

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to

文件的头部看起来应该是这样的(假设你使用的是 Ubuntu 18.04 Bionic Beaver 版本):

#
# deb cdrom:[Ubuntu-Server 18.04.1 LTS _Bionic Beaver_ - Release amd64 (20180725)]/ bionic main restricted

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://hr.archive.ubuntu.com/ubuntu/ bionic main restricted

/etc/apt/sources.list以下是Ubuntu 18.04 LTS 的完整工作:

http://paste.ubuntu.com/p/zFMRBb7CDT/

http://hr.archive.ubuntu.com(根据您的国家和服务器偏好,您可能需要替换另一个 Ubuntu 存储库。)

相关内容