Method 1
We can install chrome from google official repository . first we need to add the repository source to the update manager.
Step 1 » Setup key .
vm@vm:~$ wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
Step 2 » Type this command exactly to add chrome repositories .
vm@vm:~$ sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
vm@vm:~$ sudo apt-get update
Step 4 » Finally install google chrome
vm@vm:~$ sudo apt-get install google-chrome-stable
Method 2 : ( Manual installation)
Download google-chrome-stable_current_i386.deb from official google website (https://www.google.com/chrome/) .
Just follow the steps .
Before installing , we need to install dependencies .
Step 1 » Type apt-get update on terminal as a sudo user.
vm@vm:~$ sudo apt-get update
This command will update the packages list index.
Step 2 » Now we need to install libnss3-1d and libxss1
vm@vm:~$ sudo apt-get install libnss3-1d libxss1
vm@vm:~$sudo dpkg -i google-chrome-stable_current_i386.deb
參考:http://www.krizna.com/ubuntu/install-google-chrome-ubuntu-12-04/
No comments:
Post a Comment