2

Hi I am new to Ubuntu Linux, I have installed on my dell latitude d600 every thing's smooth and fast, I have bean trying to install Google chrome, which I would like to use on Ubuntu, but unfortunately, it shell will not let me install it on my laptop.

blade19899
  • 26,704
pete
  • 29
  • 1
  • 1
  • 2

2 Answers2

1

Try the following.

Use this code for 32-bit system:

sudo apt-get install libxss1
wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
sudo dpkg -i google-chrome*.deb

For 64-bit system use:

sudo apt-get install libxss1
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

This installs a needed library for Google Chrome, then downloads the latest version of Chrome to the current working directory and installs it.

Run google-chrometo start the browser.


You can also download it here Download Google Chrome.

stderr
  • 221
  • 1
  • 7
  • When you open the terminal it is automatically in your home folder, not in the /tmp folder. One needs to do cd /tmp before using wget. And just search for chrome in the dash. google-chrome implies it needs to be started via terminal. Which is only handy when trying to troubleshoot. – blade19899 Feb 25 '14 at 21:42
1

Non terminal Method

If you are not a much of a terminal user you can go ahead to this link and download directly.

Using terminal

Step 1: Getting .deb installer

For Google Chrome 32-bit version

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

For Google Chrome 64-bit version

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

Step 2: Installing Google Chrome

Use this command to install Google Chrome or you can also do it by double clicking the downloaded file.

Use the code below if you prefer doing it using terminal command

sudo dpkg -i google-chrome*

google-chrome* refers to the full name of the file you installed

sudo apt-get -f install

Now you have successfully installed Google Chrome. Launch it by searching Chrome in Unity Dash.

Enjoy!

You can also refer to my blogpost here

Aatish Sai
  • 827
  • 7
  • 17