无法找到软件包 ubuntu-after-install

无法找到软件包 ubuntu-after-install

sudo apt-get install ubuntu-after-install不起作用。我刚刚安装了 Ubuntu,所以我不知道我的安装是否有问题。

答案1

当 Apt 无法找到包时,您应该添加适当的存储库,在您的情况下运行以下命令:(例如ubuntu-after-install

sudo add-apt-repository ppa:thefanclub/ubuntu-after-install
sudo apt-get update
sudo apt-get install ubuntu-after-install

要添加 Universe、受限和合作伙伴存储库,请运行:

sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe restricted multiverse"
sudo add-apt-repository "deb http://archive.canonical.com/ubuntu $(lsb_release -sc) partner"
sudo apt-get update

相关内容