我打算将Firefox安装到debian linux。我用过ubuntu命令
sudo add-apt-repository ppa:mozillateam/firefox-next
但我遇到了一些错误
找不到sudo apt-get-repository:命令。
所以我不能继续安装firefox到我的debian linux ..
有谁能告诉我如何跳过这个问题以及如何安装firefox到debian
答案 0 :(得分:1)
我建议你查看你正在使用的Debian版本。默认情况下,Debian附带了Iceweasel Web浏览器而不是Firefox。
将Mozilla存档添加到APT存储库
以root身份打开终端,并将新文件添加到/etc/apt/sources.list.d/ directory
。
$ touch /etc/apt/sources.list.d/debian-mozilla.list
在编辑器deb http://mozilla.debian.net/ jessie-backports firefox-release
kg-mozilla-archive-keyring package
并安装它。该软件包要求安装debian-keying软件包。命令,
$ cd ~/
$ wget mozilla.debian.net/pkg-mozilla-archive-keyring_1.1_all.deb
$ dpkg -i pkg-mozilla-archive-keyring_1.1_all.deb
命令,
$ apt-get update
$ apt-get install -t jessie-backports firefox
完成上述所有步骤后,您安装了Firefox。
修改/etc/apt/sources.list file
并添加以下行。
deb http://packages.linuxmint.com debian import
更新您的包裹清单。
$ apt-get update
上面的命令将获取mint包存储库列表。作为最后一步安装firefox浏览器。
$ apt-get install firefox
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,它会对您有帮助。