Como instalar o Google Chrome no Kali Linux 2016 (rolagem Kali GNU / Linux \ n \ l)

0

Estou tentando instalar o Google Chrome no meu Kali Linux OS, mas sem sucesso.

Este é o meu processo:

root@localhost:~/Downloads# dpkg -i google-chrome-stable_current_amd64.deb
(Reading database ... 303734 files and directories currently installed.)
Preparing to unpack google-chrome-stable_current_amd64.deb ...
Unpacking google-chrome-stable (55.0.2883.87-1) over (55.0.2883.87-1) ...
dpkg: dependency problems prevent configuration of google-chrome-stable:
 google-chrome-stable depends on libappindicator1; however:
  Package libappindicator1 is not installed.

dpkg: error processing package google-chrome-stable (--install):
 dependency problems - leaving unconfigured
Processing triggers for menu (2.1.47) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for gnome-menus (3.13.3-8) ...
Processing triggers for desktop-file-utils (0.23-1) ...
Processing triggers for mime-support (3.60) ...
Errors were encountered while processing:
 google-chrome-stable

Quando tento instalar libappindicator1 , recebo:

root@localhost:~/Downloads# apt-get install libappindicator1
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package libappindicator1 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'libappindicator1' has no installation candidate

Como posso instalar o Chrome com sucesso

    
por Program-Me-Rev 02.01.2017 / 21:41

1 resposta

3

O pacote libappindicator1 está disponível para o lançamento do kali-linux.

Edite seu sources.list da seguinte forma:

deb http://http.kali.org/kali kali-rolling main contrib non-free

execute:

ap-get update
apt-get install libappindicator1
dpkg -i google-chrome-stable_current_amd64.deb
apt-get -f install
    
por 02.01.2017 / 22:13