无法下载存储库信息请检查互联网连接

无法下载存储库信息请检查互联网连接

我的互联网连接正常,但我无法从软件中心下载任何内容,也无法从终端更新或升级。

我更改了我的设置/etc/apt/sources.list以激活我拥有的所有资源。但它们都不起作用。

答案1

备份您的sources.list文件。

    cd /etc/apt/
    sudo cp sources.list sources.list.001  # if sources.list.001 doesn't exist 

生成一组默认源后,例如Ubuntu 源列表生成器。在这里您可以选择您的发行版本和国家/地区。否则,您可以在互联网上找到例如这里也

然后将其复制到你的sources.list文件中

    sudo nano /etc/apt/sources.list
                                     # Now paste the list, save and exit
    sudo apt-get update              # to resynchronize the package index 
                                     # files from their sources
    sudo apt-get -f install          # just in case you need to fix something

现在也可以使用软件中心了。

相关内容