Please go to [my new post]({{ /posts/2016-11-21-a-very-short-ubuntu-debian-packages-installation/ | url }}#google-chrome).
$ sudo aptitude install chromium
Add Google Chrome repository from unofficial debian repository by add deb http://dl.google.com/linux/chrome/deb/ stable main
into last line of /etc/apt/source.list
$ sudo echo 'deb http://dl.google.com/linux/chrome/deb/ stable main' >> /etc/apt/source.list
$ sudo aptitude update
If you got the error look like this
W: GPG error: http://dl.google.com stable Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A040830F7FAC5991
It means your public key (In my case, (A040830F7FAC5991
is my public key) can't verify. Use the belowing command to sign & trust the new repository from google. using $ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys [Your public KEY]
example
$ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A040830F7FAC5991
It's time to Install Google Chrome!
$ sudo aptitude update
$ sudo aptitude install google-chrome-stable
Note: Google Chrome has 3 version:
google-chrome-beta
,google-chrome-stable
andgoogle-chrome-unstable
. My case usesgoogle-chrome-stable
for daily use.