🌈
[Ubuntu] How install Chrome on Ubuntu only CLI
1. Install .deb file
- Command
$ wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
or
- From Chrome Official
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.
Discussion