无法更新

无法更新

当我进入终端并输入 sudo apt-get update 时,响应是:E: 源列表 /etc/apt/sources.list (dist parse) 中的第 64 行格式错误 E: 类型'

这能修复吗?

答案1

编辑文件 /etc/apt/sources.list

$ sudo gedit /etc/apt/sources.list

找到第 64 行并修复错误。如果找不到错误,请注释该行。注释行以 开头#

这些deb线条看起来应该像这样

deb http://archive.canonical.com/ <dist> <section>`

在哪里

  • dist :精确,乌托邦,......
  • 部分:宇宙,主要,合作伙伴,...

请参阅https://help.ubuntu.com/community/Repositories/CommandLine

答案2

要解决此问题,只需备份位于以下位置的现有“sources.list”即可:/etc/apt/

备份 source.list 的步骤,

1. Open the terminal with Ctrl-Alt-T

2. cd /etc/apt/

3. sudo cp source.list /etc/apt/source.list.bak 

4. sudo sed -i -e '64d' /etc/apt/sources.list (this deletes the problematic line)

5. sudo apt-get update (this updates the database)

希望这可以解决问题 - 如果没有,请使用我们在步骤3中创建的bak文件恢复源文件。

相关内容