Thursday, November 6, 2025
HomeBrowserHow to Update Google Chrome from Command Line on Ubuntu

How to Update Google Chrome from Command Line on Ubuntu

Published on

spot_img

To upgrade Chrome on Ubuntu/Linux from the command line, you can use the apt package manager.

First, open a terminal and run the following command to check if there are any updates available for Chrome:

sudo apt-get update If updates are available, run the following commands to upgrade Chrome

  1. sudo apt-get install google-chrome-stable
  2. sudo apt-get --only-upgrade install google-chrome-stable

This will install the latest version of Chrome and replace the currently installed version. If you want to install a specific version of Chrome, you can use the following commands:

  1. sudo apt-get install google-chrome-stable=VERSION
  2. sudo apt-get --only-upgrade install google-chrome-stable=VERSION

    Where VERSION is the version number of Chrome you want to install. Some Ubuntu version may not have chrome-stable package, in that case you can try below commands listed in below doc: https://gist.github.com/codetycon/4b4f51b746052ffd84e8103f4679ccfe

Kids Learning Corner

Maths Addition Worksheets For Class 2

2 Digit Addition Worksheet Welcome to our 2-Digit Addition Worksheets page. Here you will find a...

Latest articles

Maths Addition Worksheets For Class 2

2 Digit Addition Worksheet Welcome to our 2-Digit Addition Worksheets page. Here you will find a...

Mastering AWS CDK: Essential Commands, Examples, and Resources for Cloud Infrastructure as Code

Unlock the power of AWS CDK with our comprehensive guide! Learn essential commands, explore practical examples, and discover valuable resources to streamline your cloud infrastructure development. Dive into the world of infrastructure as code and take your AWS projects to the next level.

Convert javascript multi-level object keys into snake_case

You can use a recursive approach to convert all keys of a multi-level object...

Node.js Modules

What is a Module in Node.js? A module is a way of grouping related functions...

More like this