Install Google Chrome 44 (Chrome 44.0.2403.18) on Ubuntu, Fedora and CentOS. Terminal commands to install the latest version of Chrome browser on Ubuntu 15.04, Ubuntu 14.04 and derivative systems.
Chrome 44 Beta brings improvements to Notifications API and promoted add to homescreen. The latest Chrome Beta (Chrome 44) channel release includes new ES6 features and a number of updates to existing APIs. Unless otherwise noted, changes described below apply to Chrome for Android, Windows, Mac, Linux and Chrome OS.
Install Chrome 44 (Beta) on Ubuntu and Debian Systems
Open Terminal and run the following commands to install Coogle Chrome 44 (Beta) on Ubuntu, Debian and derivative systems. Please note that same set of instructions are used to install Chrome on both 32 bit and 64 bit systems.
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo apt-get update
sudo apt-get install google-chrome-beta
To uninstall and remove Chrome 44, run the following commands (from both 32 bit and 64 bit systems):
sudo apt-get remove google-chrome-beta
Install Chrome 44 (Beta) on Fedora and CentOS Systems
Run the following commands in Terminal to install the latest version of Chrome 44 (Beta) on Fedora, CentOS and derivative systems. Please note that same set of instructions are used to install Chrome on both 32 bit and 64 bit systems.
$ sudo su
$ cat << EOF > /etc/yum.repos.d/google-chrome.repo
[google-chrome]
name=google-chrome - \$basearch
baseurl=http://dl.google.com/linux/chrome/rpm/stable/\$basearch
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
EOF
Now run the following commands to update the local repository and install the google-chrome-stable package on the system:
sudo yum update
sudo yum install google-chrome-beta
To uninstall and remove Chrome 44, run the following commands (from both 32 bit and 64 bit systems):
sudo yum remove google-chrome-beta