Ubuntu, bless its heart, usually comes with some solid browser options like Firefox or the open-source Chromium. But let's be honest, sometimes you just need that familiar Google Chrome experience – maybe for its speed, its robust security features, or that vast library of extensions that just make life easier.
If you're nodding along, you're in the right place. Installing Chrome on Ubuntu is pretty straightforward, and I'll walk you through a couple of reliable ways to get it up and running. We'll cover both the point-and-click graphical method, which is super beginner-friendly, and the more direct terminal approach for those who like to get their hands a little dirty with commands.
Before we dive in, just a quick check: you'll need administrative access on your Ubuntu machine, a stable internet connection, and you'll be running a 64-bit version of Ubuntu (versions 20.04, 22.04, or 24.04 are ideal). Chrome, unfortunately, doesn't support 32-bit systems anymore.
The Easy Way: Using the Graphical Interface
This is probably the simplest route, especially if you're new to Ubuntu or just prefer not to mess with the command line. It's all about clicking your way to Chrome.
- Grab the .deb file: Open up Firefox (it's already there on Ubuntu!). Head over to the official Google Chrome download page. You'll see options, but you want the one labeled '64-bit .deb (For Debian/Ubuntu)'. Click that, and then hit 'Accept and Install'. Your browser will download the installation file.
- Open the downloaded file: Once it's done downloading, navigate to your 'Downloads' folder. You should see a file named something like
google-chrome-stable_current_amd64.deb. Just double-click it. This should open up in Ubuntu's Software Center. - Install it: In the Software Center, you'll see an 'Install' button. Click it. You'll be prompted for your system password – this is just to confirm you have the authority to install software. Pop that in, and Ubuntu will do the rest.
- Launch Chrome: All done! To open Chrome, just press the Super key (that's usually your Windows key), type 'Chrome' in the search bar that pops up, and click the Chrome icon.
The Speedy Way: Using the Terminal
For those who find comfort in the command line, or perhaps need to install Chrome on a remote server, this method is quick and efficient.
- Open the Terminal: The quickest way is usually pressing
Ctrl + Alt + T. - Download the .deb file: In the terminal window, type the following command and press Enter. This downloads the latest stable version of Chrome directly from Google:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb - Install using apt: Now, let's install that downloaded file. The
aptpackage manager is smart; it'll handle any missing dependencies for you. Type this command:
You'll be asked for your admin password again. Enter it, and the installation will proceed.sudo dpkg -i google-chrome-stable_current_amd64.deb - Launch Chrome: Once that's finished, you can launch Chrome right from the terminal by typing:
google-chrome
Keeping Chrome Updated Automatically (The Official Repository Method)
This is a really neat trick that ensures you always have the latest version of Chrome without having to manually download and install updates. It involves adding Google's official software repository to your system.
- Open Terminal: Again,
Ctrl + Alt + Tis your friend. - Add Google's Signing Key: This step is crucial for security. It tells your system to trust software coming from Google. Run this command:
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - - Set up the Repository: Now, we tell your system where to find Chrome updates. Execute this command:
This creates a special file that points your package manager to Google's Chrome repository.sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' - Update Your Package List: Before installing, you need to refresh your system's list of available software, including the new Chrome repository:
sudo apt update - Install Chrome: Now you can install the stable version of Chrome using the standard command:
sudo apt install google-chrome-stable - Launch Chrome: You can find it in your applications menu or launch it from the terminal with
google-chrome.
Whichever method you choose, you'll soon have that familiar Chrome browser ready to go on your Ubuntu machine. Happy browsing!
