Google recently released a stable version of chrome 21, which brings many new features and improvements, especially for developers and gamers:
- Support for the getusermedia javascript API (allow applications to access your camera/microphone without additional plug-ins)
- HTML 5 supported by the getusermedia API
- Better integration with Google cloud Printing
- Better support for JavaScript APIs for game controllers
You can click here to download and install it, or install it using the command line method:
32-bit system:
Wget-O google-chrome_i386.deb http://goo.gl/itppy
Sudo dpkg-I Google-chrome *. Deb
64-bit system:
Wget-O google-chrome_amd64.deb http://goo.gl/iXDWk
Sudo dpkg-I Google-chrome *. Deb
The above is transferred from Ubuntu home
Right-click the file and install it in the Ubuntu Software Center.
If not,OpenTerminal
Run the CD command to enter the folder of the Deb installation package.
Enter sudo apt-Get install *. Deb (*. Deb is the file name of the installation package)
Prompt to enter the user password when entering the user password (the password is not displayed, enter your password continuously)
The next step is automatic installation.
I couldn't find it in Ubuntu Software Center, and only had chromium. So I checked googling first. Some people said that I could not install it directly on the official website, you have to install chromium in Ubuntu Software Center first, then install chrome, and then delete chromium. This should also be feasible, and it is indeed a little troublesome.
However, I still want to try to install the chrome official download version. After the download, install:
Code:Sudo dpkg-I google-chrome-stable_current_i386.deb
An error occurs:
Code:Decompressing Google-chrome-stable (from google-chrome-stable_current_i386.deb )...
Dpkg: The dependency problem makes the configuration of Google-chrome-stable unable to continue:
Google-chrome-stable depends on libxss1; however:
Libxss1 is not installed.
Google-chrome-stable depends on libcurl3; however:
The software package libcurl3 is not installed.
Dpkg: An error occurred while processing Google-chrome-stable (-- install:
Dependency problem-Not Configured
Processing the trigger for gnome-menus...
Processing the trigger for desktop-file-utils...
Processing the trigger for bamfdaemon...
Rebuilding/usr/share/applications/BAMF. index...
Processing the trigger for man-DB...
An error occurred during processing:
Google-chrome-stable
The reason is that libxss1 and libcurl3 libraries are missing. What about these libraries in those packages? I don't know! It seems quite troublesome to manually find and install these libraries.
However, I accidentally discovered this command to automatically solve the trust database:
Code:Sudo apt-get-F install
OK! The installation is successful.
Summary:
Go to the official website http://www.google.cn/chrome/intl/zh-CN/landing_chrome.html? Hl = ZH-CN & brand = chmi download: google-chrome-stable_current_i386.deb
Run the following command to install the SDK:
Code:Sudo dpkg-I google-chrome-stable_current_i386.deb
Run the following command to restore the library dependency:
Code:Sudo apt-get-F install
Today I found this