LoginSignup
0
0

More than 1 year has passed since last update.

Install Google Chrome to Ubuntu 16.04

Last updated at Posted at 2023-01-13

Dowload old vesion chrome deb file

  1. Download Chrome 80 from Google chrome of old version.
  2. Select version 80.0.3987.149 form Google Chrome Linux Version/64-bit deb for Ubuntu/Debian.
    Then, you can download google-chrome-stable_current_amd64.deb file in Downloads folder.

Install to Ubuntu

cd ~/Downloads
sudo apt install -y ./google-chrome-stable_current_amd64.deb

If you get the following error,

You might want to run 'apt-get -f install' to correct these.
E: Unmet dependencies. Try using -f.

run the following command.

cd ~/Downloads
sudo apt-get -f install ./google-chrome-stable_current_amd64.deb

Above command solved the following error.

 google-chrome-stable : Depends: libu2f-udev but it is not installable
                        Depends: libvulkan1 but it is not installed

If you need other dependencies libappindicator1
and libindicator7, run following command.

sudo apt-get install libappindicator1 libindicator7

References


QiitaLink
Designed by RENOX

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0