if do not google chrome, next command is possible:
#google-chrome --no-sandbox
But It is also causes errors.
Objective
The objective is to install Google Chrome web browser on Kali Linux. See an appendix for a possible issue troubleshooting.
Requirements
Privileged access to your Kali Linux installation or Live system is required.
Difficulty
EASY
Conventions
- # - requires given linux commands to be executed with root privileges either directly as a root user or by use of
sudo
command - $ - requires given linux commands to be executed as a regular non-privileged user
Instructions
Download Google Chrome
To start, use wget
command to download a latest Google Chrome debian package:
# wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
Install Google Chrome
The easiest way to install google chrome on you Kali Linux is to by use of gdebi
which will automatically download all depended packages.
# gdebi google-chrome-stable_current_amd64.deb
Start Google Chrome
To start Google Chrome, open up a terminal and run google-chrome
command:
$ google-chrome
Appendix
Illegal Instruction
The Illegal Instruction
error message appears when running the google-chrome
command as privileged root user. Since by default Kali Linux's default user is root, we need to create a dummy non-privileged user eg. linuxconfig
, and use this user to start Google Chrome browser:
# useradd -m -d /home/linuxconfig linuxconfig # su linuxconfig -c google-chrome
Package libappindicator1 is not installed
dpkg: dependency problems prevent configuration of google-chrome-stable: google-chrome-stable depends on libappindicator1; however: Package libappindicator1 is not installed.
To resolve Google Chrome's dependencies problems use gdebi
to install Google Chrome's debian package. See above.
'LINUX' 카테고리의 다른 글
How to get high precision nano second delay in linux I (0) | 2019.03.04 |
---|---|
How To Install Krita On Linux (0) | 2019.03.04 |
How to measure time in milliseconds using ANSI C (0) | 2019.03.03 |
Nanosecond time measurement with clock_gettime, CPU idling (0) | 2019.03.03 |
fatal error: linux/init.h: No such file or directory (0) | 2019.03.03 |