oio11: (Default)
[personal profile] oio11

5

Setting up and managing an Ubuntu server all by myself, in coming months, is a part of my current plans. Hence, I am planning a swtich from Windows to Linux - - Ubuntu. I now need to get some grip on the command line, since I am all used to Windows' GUI.

Anyway... the most obvious start is installing apps on my computer, and I thought I should learn to do it via CLI. And this is what I did:

$ apt-cache search chrome browser 

the results showed that the proper term is "chrome-browser," so...

$ sudo apt-get install chrome-browser 

And then "Y" for the Y/n question.

But the installation threw errors. (I do not have my PC at hand, so can't mention what error exactly.) Does someone see anything wrong with the commands I issued? I am probably missing some command(s) in between, I think.

shareimprove this question
 
feedback

6 Answers

up vote 15 down vote accepted

Google Chrome isn't in the repositories - however, Chromium is.

To install Google Chrome, run the following:

For 32 bit:

wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb 

For 64 bit:

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

sudo dpkg -i ./google-chrome*.deb - this installs the deb

sudo apt-get -f install There is a dependencies issue with the Google Chrome deb that needs to be resolved - that is what the sudo apt-get -f install is for.

shareimprove this answer
   

..................................................................
http://askubuntu.com/questions/79280/how-to-install-chrome-browser-properly-via-command-line

May 2025

S M T W T F S
    123
45678910
11121314151617
181920212223 24
25262728293031

Most Popular Tags

Style Credit

Expand Cut Tags

No cut tags
Page generated Jun. 10th, 2025 06:18 pm
Powered by Dreamwidth Studios