在debian linux中找不到sudo apt-get-repository:命令

时间:2017-06-03 17:55:36

标签: linux ubuntu debian

我打算将Firefox安装到debian linux。我用过ubuntu命令

sudo add-apt-repository ppa:mozillateam/firefox-next    

但我遇到了一些错误

找不到sudo apt-get-repository:命令。

所以我不能继续安装firefox到我的debian linux ..

有谁能告诉我如何跳过这个问题以及如何安装firefox到debian

1 个答案:

答案 0 :(得分:1)

我建议你查看你正在使用的Debian版本。默认情况下,Debian附带了Iceweasel Web浏览器而不是Firefox。

如何在Debian Jessie中安装firefox,

  1. 将Mozilla存档添加到APT存储库 以root身份打开终端,并将新文件添加到/etc/apt/sources.list.d/ directory

    $ touch /etc/apt/sources.list.d/debian-mozilla.list

  2. 在编辑器deb http://mozilla.debian.net/ jessie-backports firefox-release

    中编辑此文件
    1. 添加Mozilla存档密钥 此行将mozilla.debian.net存档添加到您的存档列表中。由于mozilla.debian.net上的软件包已签名,因此运行apt-get update现在会吐出一个未找到错误的密钥。要添加密钥,您需要下载p kg-mozilla-archive-keyring package并安装它。该软件包要求安装debian-keying软件包。
    2. 命令,

      $ cd ~/
      $ wget mozilla.debian.net/pkg-mozilla-archive-keyring_1.1_all.deb
      $ dpkg -i pkg-mozilla-archive-keyring_1.1_all.deb
      
      1. 安装Firefox,更新存档并安装Firefox:
      2. 命令,

        $ apt-get update
        $ apt-get install -t jessie-backports firefox
        

        完成上述所有步骤后,您安装了Firefox。

        在Debian wheezy上安装Firefox浏览器

        1. 修改/etc/apt/sources.list file并添加以下行。

          deb http://packages.linuxmint.com debian import

        2. 更新您的包裹清单。

          $ apt-get update

        3. 上面的命令将获取mint包存储库列表。作为最后一步安装firefox浏览器。

          $ apt-get install firefox

        4. Debian Jessie以及后来的另一个信息,如果你使用Jessie,那么它可以在software-properties-common软件包中找到:

          sudo apt-get install software-properties-common
          

          而在Debian Wheezy和早期,Debian中提供了apt-get程序add-apt-repository。

          它位于包裹中:python-software-properties

          sudo apt-get install python-software-properties
          

          实际上,在0.75版本中添加了该软件包。 Debian Stable('squeeze')中的当前版本是0.60,所以它没有它。目前在Debian Testing(“wheezy”)中的版本是0.82.7.1debian1,所以它可以在那里

          我要求您完成此question,它会对您有帮助。