无法在我的存储库中找到 VLC 包?

无法在我的存储库中找到 VLC 包?

当我尝试使用 apt-get 安装 VLC 时,出现以下错误:

parameswaran@parameswaran-Compaq-Presario-CQ61-Notebook-PC:~$ sudo apt-get install vlc
[sudo] password for parameswaran: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package vlc

它发生在我的 Ubuntu i386 Compaq Presario cq61 上,我是 Ubuntu 新用户。

有人可以告诉我如何解决这个问题并在我的笔记本电脑上安装软件包吗?

答案1

vlc 在 universe 存储库中。很可能未启用。您可以前往软件中心添加它并运行

 sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"

(摘自我如何启用“Universe”存储库?

之后,运行

 sudo apt-get update
 sudo apt-get install vlc

答案2

打开终端并运行software-properties-gtk,将服务器更改为主服务器,然后运行:

sudo apt-get update
sudo apt-get install vlc

相关内容