🌈

[Ubuntu] How install Chrome on Ubuntu only CLI

2024/06/23に公開

1. Install .deb file

  • Command
$ wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

or

2. Install Chrome

  • Command
$ sudo apt install ./google-chrome-stable_current_amd64.deb

If permission denied(error 13), change the permission of .deb file.

chmod 600 google-chrome-stable_current_amd64.deb

3. Open Chrome

  • Command
google-chrome-stable

or

  • click the icon in start menu at lower left.

Nevertheless, if you cannot start the chrome, please try restart PC(I had same problem and solved by restart).

Summary

It's over, please enjoy the Chrome.

Reference

[1] GUI不要!UbuntuにコマンドラインだけでChromeをスムーズにインストールする方法

Discussion