如何从命令行在Ubuntu上设置默认浏览器?


13

我在Fluxbox上使用Ubuntu 10.04。

自从我安装了Chromium浏览器以来,它已被设置为默认系统浏览器(不知道为什么,不知道何时,也许我在不注意的地方单击了接受)。现在,我单击的每个Web链接(例如,来自Skype)都将打开Chromium,而不是Firefox。

如何使Firefox成为系统的默认浏览器?

我需要使用命令行设置此首选项。


@slhck:不完全是..我需要从命令行执行此操作
Heisenbug

哦,那我们将更加清楚:)
slhck 2011年

Answers:


20

在终端上使用

sudo update-alternatives --config x-www-browser

这将提供已安装浏览器的列表,类似于以下内容(属于我的):

There are two alternatives which provide `x-www-browser'.
Selection    Path                         Priority    Status
-------------------------------------------------------------
* 1          /usr/bin/chromium-browser    40          auto mode
  2          /usr/bin/firefox             40          manual mode

Press enter to keep the current choice[*], or type selection number:

只需点击所需浏览器的选择号即可。


很高兴,我现在将对其进行编辑。
卢卡萨2011年

以及如何始终使用bash将默认浏览器更改为“ Chromium”,而不先获取其编号?
Mathias Lykkegaard Lorenzen 2013年

3
@MathiasLykkegaardLorenzen sudo update-alternatives --set x-www-browser /usr/bin/chromium-browser,还有一个命令以列出所有替代项的命令--list name。查看联机帮助页。
Winny
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.