小技巧:如何在 Kali Linux 中安裝 Google Chrome 瀏覽器

Lubos Rendek發表於2017-02-16

介紹

目的

我們的目標就是在 Kali Linux 上安裝好 Google Chrome Web 瀏覽器。同時,請參閱附錄為可能出現的問題進行排查。

要求

需要獲得已安裝 Kali Linux 或者 Live 系統的特權。

困難程度

容易。

慣例

  • # - 給定命令需要以 root 使用者許可權執行或者使用 sudo 命令
  • $ - 給定命令以常規許可權使用者執行

步驟說明

下載 Google Chrome

首先,使用 wget 命令來下載最新版本的 Google Chrome 的 debian 安裝包。

# wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

安裝 Google Chrome

在 Kali Linux 安裝 Google Chrome 最容易的方法就是使用 gdebi,它會自動幫你下載所有的依賴包。

# gdebi google-chrome-stable_current_amd64.deb

啟動 Google Chrome

開啟一個終端terminal,執行 google-chrome 命令來啟動 Google Chrome 瀏覽器。

$ google-chrome

附錄

非法指令 Illegal Instruction

當以 root 使用者特權來執行 google-chrome 命令是,會出現 非法指令 Illegal Instruction 錯誤資訊。因為通常情況下,Kali Linux 預設情況下的預設使用者是 root 使用者,我們需要建立一個虛的非特權使用者,比如 linuxconfig,然後使用這個使用者來啟動 Google Chrome 瀏覽器。如下:

# useradd -m -d /home/linuxconfig linuxconfig
# su linuxconfig -c google-chrome

libappindicator1 包未安裝

dpkg: dependency problems prevent configuration of google-chrome-stable:
 google-chrome-stable depends on libappindicator1; however:
  Package libappindicator1 is not installed.

使用 gdebi 命令來安裝 Google Chrome 的 debian 包可以解決依賴問題。參閱上文。 

在 Kali Linux 中以普通使用者啟動 google chrome


譯者簡介:

GHLandy —— 生活中所有歡樂與苦悶都應藏在心中,有些事兒註定無人知曉,自己也無從說起。


via: https://linuxconfig.org/how-to-install-google-chrome-browser-on-kali-linux

作者:Lubos Rendek 譯者:GHLandy 校對:wxy

本文由 LCTT 原創編譯,Linux中國 榮譽推出

相關文章