Google Chrome is the most widely used web browser in the world. It is fast, secure, and built for the modern web — with sandboxed tabs, automatic updates, and tight integration with Google services. Its developer tools are also among the most capable available in any browser, making it a common choice for web developers and everyday users alike.
Chrome is not open-source and is not included in the Ubuntu repositories. It is built on Chromium, the open-source browser that is available through Ubuntu’s default repos. If you want a fully open-source option, Chromium is a solid alternative. But for the full Chrome experience — including Widevine DRM for streaming services, proprietary video codecs, and cross-device profile sync — you need to install the official Google package directly.
This guide shows you how to install Google Chrome on Ubuntu 18.04 using the official .deb package and configure automatic updates.
<strong>Prerequisite:</strong> You need sudo access.
Chrome is not available through apt by default, so you download the .deb installer directly from Google’s servers.
Open a terminal and download the latest stable Chrome package using wget:
bashwget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
Install the package using apt:
bashsudo apt install ./google-chrome-stable_current_amd64.deb
Using apt to install the .deb file (instead of dpkg -i) automatically resolves and installs any missing dependencies in a single step.
Once Chrome is installed, open it from the Activities menu by searching for “Google Chrome,” or start it from the terminal:
bashgoogle-chrome
The first time Chrome opens, it asks whether you want to set it as your default browser and whether to send usage statistics to Google. Select your preferences and click OK to proceed.
If you have a Google Account, sign in from the top-right corner. Chrome will sync your bookmarks, passwords, history, and extensions across all your signed-in devices automatically.
Chrome’s built-in password manager saves and autofills login credentials as you browse. For security, run a periodic check at Settings > Privacy and security > Safety Check, it scans your saved passwords against known data breaches.
Chrome also supports multiple user profiles, which is useful when different people share the same machine. Set these up through Settings > Add person.
If you are migrating from Firefox or another browser, import your bookmarks and saved passwords through Settings > Import bookmarks and settings.
During installation, the Chrome .deb package automatically adds the official Google repository to your system’s source list. Verify it with:
bashcat /etc/apt/sources.list.d/google-chrome.list
Output:
deb [arch=amd64] https://dl.google.com/linux/chrome/deb stable main
Because this repository is registered, Chrome updates automatically alongside your other system packages the next time you run sudo apt update && sudo apt upgrade. You do not need to manually download a new .deb file for future releases.
To remove Chrome from your system:
bashsudo apt remove google-chrome-stable
This removes the Chrome binary but keeps the Google repository in your sources. To remove the repository as well, delete the file at /etc/apt/sources.list.d/google-chrome.list.
Google Chrome is now installed and configured on your Ubuntu 18.04 machine. It stays up to date automatically through the Google repository. Leave a comment below if you run into any issues during installation.
phpMyAdmin is a free, open-source PHP application that provides a browser-based interface for managing MySQL and…
Zabbix is a mature open-source infrastructure monitoring platform that collects metrics from network devices, servers, virtual…
Gradle is a powerful open-source build automation tool used primarily for Java, Kotlin, Groovy, and Android…
TeamViewer is a proprietary cross-platform remote access application for remote control, desktop sharing, file transfer, and online meetings. It is one of the most widely used remote support tools in the world, available for Windows, macOS, Linux, iOS, and Android. TeamViewer is not included in the Ubuntu repositories because it is proprietary software. This guide covers how to install TeamViewer on Ubuntu 18.04 using the official .deb package. The same steps apply to Ubuntu 16.04, Debian, Linux Mint, and Elementary OS. <strong>Prerequisite:</strong> You need sudo access. Install TeamViewer on Ubuntu: Download the .deb Package Download the official TeamViewer .deb package. The _amd64.deb suffix indicates this package is for 64-bit x86-64 systems. For ARM-based machines, download the appropriate package from the TeamViewer Linux downloads page: bashwget https://download.teamviewer.com/download/linux/teamviewer_amd64.deb Install the package using apt. The ./ prefix tells apt this is a local file path, not a package name from the repositories:…
Nagios is one of the most widely used open-source infrastructure monitoring systems in the world. It…
Laravel is an open-source PHP web application framework built around an expressive, developer-friendly syntax. It is…