介紹
目的
我們的目标就是在 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 —— 生活中所有歡樂與苦悶都應藏在心中,有些事兒注定無人知曉,自己也無從說起。
作者:lubos rendek
來源:51cto