Linux中国

小技巧:如何在 Kali Linux 中安装 Google Chrome 浏览器

步骤说明

下载 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中国 荣誉推出


本文转载来自 Linux 中国: https://github.com/Linux-CN/archive

对这篇文章感觉如何?

太棒了
0
不错
0
爱死了
0
不太好
0
感觉很糟
0
雨落清风。心向阳

    You may also like

    Leave a reply

    您的电子邮箱地址不会被公开。 必填项已用 * 标注

    此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据

    More in:Linux中国