源列表-突触包管理器

源列表-突触包管理器

我遇到了一些麻烦,我需要一个善良/耐心的人来帮助我。我是计算机世界的新手。当我拿到电脑时,我在安装 bitmessage 时遇到了麻烦,所以一个朋友建议我修改 /etc/apt/sources.list。它工作正常,一切都很顺利(我能够通过终端安装和使用 bitmessage)。所以我尝试通过 synaptic 包管理器安装 openshot 视频编辑器,一切顺利,直到我尝试使用它时,什么都没有发生(稍后会详细介绍)。所以我明智地认为,因为更新版本已从 . 中删除,/etc/apt/sources.list也许我应该将其编辑为原始状态(我按照朋友的建议在修改之前保存了它)。所以我打开了nano /etc/apt/sources.list. 并将其复制/粘贴到安装程序输入的原始文本中。这样做之后,我无法再访问 synaptic 包管理器,并收到以下消息:

E:malformed line 5 in source list/etc/apt/sources.list (URI)
E:the list of sources could not be read.
go to the repositiory dialog to correct the problem
E_cache->open()failed,please report

我已附上安装程序的原始/etc/apt/sources.list文本以及我朋友为我制作的文本。openshot 已安装但什么也没做。我不确定我是否正确保存了 sources.list,也不知道到底发生了什么。

感谢您付出的时间、智慧和耐心。

原来的sources.list

在此处输入图片描述

答案1

第五行是:

deb cdrom:[Debian GNU/Linux 8.1.0 _Jessie ...

你应该评论 cdrom 源并将mainrepo 添加到你的sources.list

有一个例子sources.list(它会对你有用。你也可以选择最近的镜像):

#

# deb cdrom:[Debian GNU/Linux 8.1.0 _Jessie ...

# deb cdrom:[Debian GNU/Linux 8.1.0 _Jessie

deb http://ftp.fr.debian.org/debian/ jessie main
deb-src http://ftp.fr.debian.org/debian/ jessie main

deb http://security.debian.org/ jessie/updates main
deb-src http://security.debian.org/ jessie/updates main

# jessie-updates

deb http://ftp.fr.debian.org/debian/ jessie-updates main
deb-src http://ftp.fr.debian.org/debian/ jessie-updates main

保存sources.list然后运行以下命令:

sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade

当您运行 synaptic 时,错误应该会消失。

相关内容