Linux系统手动安装Firefox浏览器

大多数Linux发行版都以Firefox作为默认的浏览器,并可以轻松地从软件库中安装。例如:

Debian/Ubuntu:       sudo apt-get install firefox

Fedora:                     sudo dnf install firefox

OpenSUSE:               sudo zypper install firefox

Arch Linux:              sudo pacman -S firefox

但如果你想在同一个Linux系统上安装两个不同的Firefox,那么可以手动下载Firefox来安装。

Linux系统手动安装Firefox浏览器的步骤

首先,到Firefox中文网下载Firefox的tar.bz2文件。这个tar.bz2文件并不是源代码,而是已经编译好了的二进制文件。如果你喜欢用命令行下载,那么使用下面的命令:

64位系统

wget http://download.firefox.com.cn/releases/firefox/45.0/zh-CN/Firefox-latest-x86_64.tar.bz2

32位系统

wget http://download.firefox.com.cn/releases/firefox/45.0/zh-CN/Firefox-latest.tar.bz2

下载完成后,cd进入下载目录,解压tar.bz2文件。

tar xvf firefox*.tar.bz2
  • x选项表示解压(extract)
  • v选项表示显示命令运行详情(verbose)
  • f选项表示目标是一个文件(file),而不是磁带驱动器(tap drive).

解压后,在当前目录下会生成一个firefox目录。这些文件不是源代码,而是预先编译好的二进制文件,所以我们不需要编译。firefox目录下有一个叫做firfox的脚本文件。要启动Firefox,我们只要执行firefox脚本就行了。

./firefox/firefox

如果这些二进制文件保存在你的home目录下,那么你只有才能运行这个手动安装的Firefox,为了让其他用户也能运行,我们把Firefox的二进制文件移动到/opt/目录下。

sudo mv firefox/ /opt

然后创建一个软链接,我们把这个Firefox称为firefox-new,以区别系统自带的firefox。

sudo ln -s /opt/firefox/firefox /usr/bin/firefox-new

下次,我们可以在终端里输入firefox-new命令来启动firefox。如果你不想让Firefox在终端里显示信息,也可以按ALT+F2键,再输入firefox-new命令启动firefox。

firefox-new

That’s it!

Enjoy!

为这篇文章评分
[Total: 12 Average: 3.3]

Leave a Reply

Your email address will not be published.

The maximum upload file size: 2 MB. You can upload: image, audio, video, document, spreadsheet, interactive, text, archive, code, other. Links to YouTube, Facebook, Twitter and other services inserted in the comment text will be automatically embedded. Drop file here