How to install Chrome or Edge?

QuestionsQuestions4 SkillsProYour First Linux LabSep, 15 2025
0455

To install Google Chrome or Microsoft Edge on a Linux system, you can follow these steps:

Install Google Chrome

  1. Download the Chrome .deb package: Open a terminal and run the following command to download the latest version of Google Chrome:

    wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
    
  2. Install the downloaded package: Use the following command to install Google Chrome:

    sudo apt install ./google-chrome-stable_current_amd64.deb
    
  3. Launch Google Chrome: After installation, you can start Google Chrome by typing:

    google-chrome
    

Install Microsoft Edge

  1. Download the Edge .deb package: Open a terminal and run the following command to download the latest version of Microsoft Edge:

    wget https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add -
    sudo wget https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-dev/microsoft-edge-dev_*.deb
    
  2. Install the downloaded package: Use the following command to install Microsoft Edge:

    sudo apt install ./microsoft-edge-dev_*.deb
    
  3. Launch Microsoft Edge: After installation, you can start Microsoft Edge by typing:

    microsoft-edge
    

Make sure to replace the package names with the latest versions if necessary.

0 Comments

no data
Be the first to share your comment!