我尝试重新安装索播使用以下命令:
sudo tee -a /etc/apt/sources.list
但什么也没发生,然后我尝试下一个命令:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys CD30EE56
我收到以下错误:
E: Type 'sudo' is not known on line 60 in source list /etc/apt/sources.list
E: The list of sources could not be read.
有人能帮帮我吗?
答案1
您已将第二条命令附加到sources.list
with tee
。编辑您的sources.list
with sudo nano /etc/apt/sources.list
。删除该sudo ...
行(您应该在末尾找到它)保存并退出Ctrl+ O, Ctrl+ X。
然后更新你的源sudo apt-get update
,你就应该再次没问题了。
sources.list
如果在编辑时删除了,请打开sources.list
终端ctrl++并通过输入和成为root,然后检查文件,然后输入就全部了。altTsudo -s
cd /etc/apt
sources.list.distUpgrade
cp sources.list.distUpgrade sources.list
然后更新你的源,sudo apt-get update
它应该被修复。