最终弄乱了我的 /etc/apt 文件夹

最终弄乱了我的 /etc/apt 文件夹

在进行在线教程时,我可能弄乱了我的 etc/apt/ 文件夹,因为每次我使用 apt 或 apt-get 命令时都会出现以下错误:

E: Type '&&' is not known on line 1 in source list /etc/apt/sources.list.d/kubernetes.list
E: The list of sources could not be read.
E: Type '&&' is not known on line 1 in source list /etc/apt/sources.list.d/kubernetes.list
E: The list of sources could not be read.

请帮忙

答案1

的内容kubernetes.list正在产生问题。由于此文件仅包含一行,这显然是不正确的,因此最好使用以下方法删除该文件:

sudo rm /etc/apt/sources.list.d/kubernetes.list

或者使用 nano 打开文件:

sudo nano /etc/apt/sources.list.d/kubernetes.list

并在行#前将其注释掉。使用Ctrl+保存文件X。然后尝试再次更新。

相关内容