1. 程式人生 > >ubuntu 14.04 安裝chrome及給chromium 安裝 flash player

ubuntu 14.04 安裝chrome及給chromium 安裝 flash player

在網上嘗試很多方法,大多數是拷貝 libflashplayer.so,嘗試之後,沒有用。

最後還是從大牛處找到了辦法,其實就是chromium提示的安裝方法,不過chromium推薦用軟體更新器做,遠沒有命令方便。

簡單點說,開啟terminal:

sudo apt-get install pepperflashplugin-nonfree
sudo update-pepperflashplugin-nonfree --install

或者,推薦更好的辦法,裝chrome,這個flash player 直接正常使用.

一、新增PPA
從Google Linux Repository(
http://www.google.com/linuxrepositories/
)下載安裝Key,或把下面的程式碼複製進終端,回車,需要管理員密碼
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
Key安裝好後,在終端輸入:
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'

二、更新
在終端輸入:
sudo apt-get update

三、安裝
安裝穩定版Chrome,在終端輸入:sudo apt-get install google-chrome-stable
安裝Beta版Chrome,在終端輸入:sudo apt-get install google-chrome-beta
安裝不穩定版Chrome,在終端輸入:sudo apt-get install google-chrome-unstable
Done,萬事大吉!

以下為之前chromium安裝flash player不好用的原因(以下為轉載內容):

http://www.linuxidc.com/Linux/2014-01/95736.htm

Flash Player For Linux 自11.2 起已經停止更新,目前 Linux 平臺下面的 Flash Player 只能依靠 Google Chrom 的 PPAPI (Pepper Flash Player)進行更新(Chrome Only)(Adobe 僅維護這個版本),其它瀏覽器包括Chromium 都只能使用 Flash Player 11.2。

但由於 Chromium 宣佈將拋棄舊的標準(NPAPI),導致原本的 Flash Player 將無法在 Chromium 執行,所以決定在 Chromium 中使用 Pepper Flash Player ,這個Pepper Flash Player 是通過下載 Google Chrome 然後提取出來給 Chromium 使用的。

目前這個安裝器已經收錄於 Ubuntu 14.04 官方源(從 Debian源中匯入)。

Ubuntu 14.04 使用者可以通過以下命令安裝 Pepper Flash Player For Chromium :

sudo apt-get install pepperflashplugin-nonfree
sudo update-pepperflashplugin-nonfree --install

如果你想使用 Beta 版的 Google Chrome 中的 Pepper Flash Player ,那麼可以把第二個命令改為:

sudo update-pepperflashplugin-nonfree --install --beta --unverified

如果想使用非穩定版的 Google Chrome 中的 Pepper Flash Player,那麼可以把第二個命令改為:

sudo update-pepperflashplugin-nonfree --install --unstable --unverified

如果你想解除安裝這個 Flash Player ,那麼請執行以下命令:

sudo update-pepperflashplugin-nonfree --uninstall