安装Plasma 5 KDE ubuntu-无法添加PPA


8

我正在尝试使用以下命令在ubuntu 14.04上安装Plasma 5 KDE:

sudo apt-add-repository ppa:kubuntu-ppa/next-backports
sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get install kubuntu-plasma5-desktop plasma-workspace-wallpapers

它在出现以下消息的第一个命令后失败:

 Cannot add PPA: 'ppa:kubuntu-ppa/next-backports'.
Please check that the PPA name or format is correct.

我从以下链接中获得了全部

http://sourcedigit.com/14871-install-kde-plasma-5-2-ubuntu-14-04-ubuntu-14-10/

这是什么错误消息,我该如何解决?

Answers:


7

ppa:kubuntu-ppa/next-backports是PPA的有效名称,但没有使用该名称的PPA。是“ Kubuntu Package Archives”团队的有效PPA的列表。

  • backports – Kubuntu移植
  • beta – Kubuntu Beta Backports
  • experimental – Kubuntu实验
  • ppa – Kubuntu更新
  • staging-frameworks – Kubuntu登台框架
  • staging-kdeapplications – Kubuntu登台KDE应用程序
  • staging-misc – Kubuntu分期杂项
  • staging-plasma – Kubuntu分期血浆

因此,安装现有的PPA,例如

sudo apt-add-repository ppa:kubuntu-ppa/backports

那么AB解决问题的答案是?例如,如何查看存储库中的可用PPA?
Aizuddin Zali 2015年

0

情况1:您没有使用任何代理服务器

  • 重新安装证书,使用::-

    sudo -E add-apt-repository ppa:ppaname / ppa

    示例--- sudo -E add-apt-repository -y ppa:videolan / stable-daily

    [ sudo -E保留用户环境,包括任何代理配置 ]

情况2:如果您正在使用任何代理服务器

  1. 在终端中配置代理

       If there is no username and password for the proxy settings ::-
    
            export http_proxy=http://proxy:port
            export https_proxy=http://proxy:port
    
       In case of Username and Password for the proxy settings use this ::-
    
         export http_proxy=http://username:password@host:port
         export https_proxy=https://username:password@host:port
    
    
       After this do::-
                  sudo -E add-apt-repository ppa:ppaname/ppa
    

    示例--- sudo -E add-apt-repository -y ppa:videolan / stable-daily

    [ sudo -E保留用户环境,包括任何代理配置 ]

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.