我如何删除损坏的软件源?

我如何删除损坏的软件源?

我无意中在终端中添加了这一点:

sudo wget http://www.medibuntu.org/sources.list.d/gutsy.list -0 /etc/apt/sources.list.d/medibuntu.list

之后我收到这个错误:

E:not known on line 1 file /etc/apt/sources.list.d/medibuntu.list
E:Could not read source list
etc...etc...

我看到你已经解决了类似的问题……你能帮助我吗

原文(意大利语):

阻塞包

您输入要从终端获取的命令如下:

sudo wget http://www.medibuntu.org/sources.list.d/gutsy.list -0 /etc/apt/sources.list.d/medibuntu.list
dopodiche si e'bloccato gestione pacchetto e ricevo questo errore:
E:non riconosciuto alla riga 1nel file /etc/apt/sources.list.d/medibuntu.list
E:impossibile leggere elenco sorgenti
etc...etc...

我看到了一个类似的问题......我可以帮助

答案1

您使用的是哪个版本的 ubuntu?您尝试添加来自 ubuntu 7.10 之类的 gusty 存储库。因此,打开对话框,您可以在其中更改软件源(取决于您使用的 ubuntu)。

  • Synaptic - 设置>存储库>其他来源
  • 软件中心 - 编辑>软件源>其他来源

从列表中删除 medibuntu 源。然后

sudo apt-get update

如果你想正确添加 medibuntu,请使用此命令

sudo -E wget --output-document=/etc/apt/sources.list.d/medibuntu.list http://www.medibuntu.org/sources.list.d/$(lsb_release -cs).list && sudo apt-get --quiet update && sudo apt-get --yes --quiet --allow-unauthenticated install medibuntu-keyring && sudo apt-get --quiet update

答案2

如果您知道软件的名称,请尝试“dpkg -l | grep software”来查找,然后使用“sudo apt-get remove * --purge”或“sudo dpkg -r *”。

答案3

使用 Ubuntu Tweak 并清除您添加的软件源,在 Ubuntu Tweak 0.5.14 中,它位于 Package cleaner 部分

相关内容