linux 在VirtualBox Ubuntu上的apt-get错误,E:列表文件/etc/apt/sources.list(组件)中的错误条目58 E:无法读取源列表

ncecgwcz  于 2023-10-16  发布在  Linux
关注(0)|答案(2)|浏览(302)

我在Windows PC上使用 Ubuntu 20.04Virtualbox。我正在尝试安装库或简单地使用apt-get更新,方法是:

sudo apt-get install libncurses5-dev libncursesw5-dev

 sudo apt-get update

 apt-get update

但他们都给予这个错误:

E: Malformed entry 58 in list file /etc/apt/sources.list (Component)

E: The list of sources could not be read.

sources.list中的第58行是:

deb http://download.virtualbox.org/virtualbox/debian contrib

我连接到互联网,我已经禁用防火墙使用
$ sudo ufw disable
我见过其他人通过改变给他们一个错误的行来解决他们的问题,但这和我的不一样,我没有足够的经验知道该改变什么。有什么想法吗?提前感谢!

2ic8powd

2ic8powd1#

请尝试以下操作:

deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian focal contrib
jhkqcmku

jhkqcmku2#

这将修复它:

sed -i '/download.virtualbox.org/d' /etc/apt/sources.list
echo "deb http://download.virtualbox.org/virtualbox/debian $(lsb_release -sc) contrib" >> /etc/apt/sources.list

相关问题