使用更新版本的火狐

use*_*666 8 firefox 14.04

我在 ubuntu 14.04 上使用 firefox 28.0。于是我去firefox网站下载了最新版本的firefox。然后我提取并运行firefox。但是,当我在搜索框中键入 firefox 并打开它时,它仍然会打开旧版本吗?我需要做些什么来反映这些变化?

αғs*_*нιη 8

如果要安装最新版本的 Firefox,可以在终端中执行以下操作:

首先使用 update 命令更新你系统的包信息:

sudo apt-get update
Run Code Online (Sandbox Code Playgroud)

然后使用 install 命令将 Firefox 更新到最新版本:

sudo apt-get install firefox
Run Code Online (Sandbox Code Playgroud)

您也可以使用升级命令 ( sudo apt-get upgrade),但前提是您要更新所有当前安装的软件包。

  • 你有错误的命令...... `sudo apt-get update` 更新包列表(并且需要先运行),然后你运行 `sudo apt-get upgrade...` (2认同)