Wednesday, September 25, 2024

How to Install Microsoft Edge on Ubuntu Linux 24.04

Microsoft Edge, a popular web browser known for its robust security features, has expanded its reach to Linux users. This comprehensive guide will walk you through the process of installing Edge on your Ubuntu system, providing you with both graphical user interface (GUI) and command-line methods.

Method 1: Installing Edge Using the GUI

  1. Downloading the Browser:

    • Head over to the official Microsoft Edge download page.

    • Locate and click the "Download Edge" button, which will initiate the download of the Debian (.deb) file directly to your Downloads directory.

  2. Launching the Installation:

    • Double-click the downloaded .deb file to open the installation page in Ubuntu's App Center.

    • Click the "Install" button to start the installation process.

  3. Completing the Installation:

    • The installation will take a few moments to complete. You'll be notified when the process is finished.

    • Close the App Center once the installation is complete.

  4. Launching the Browser:

    • You can now access Microsoft Edge through the Applications menu or by searching for its launcher icon within the "All Applications" list.

    • The launcher icon will resemble the Microsoft Edge logo.

    • Clicking the launcher icon will open the Edge browser, allowing you to experience safe and secure browsing.

Method 2: Installing Edge Using the Command Line

For those who prefer command-line operations, Microsoft Edge provides a convenient PPA (Personal Package Archive) for installation. This method is ideal for users familiar with the Ubuntu terminal.

  1. Adding the Microsoft Edge PPA:

    • First, ensure that you have the necessary permissions by running the following command:

            sudo apt update
          
    • Import the Microsoft Edge repository key using:

            curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
          
    • Install the key file by running:

            sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/
          
    • Add the PPA to your system's sources list using:

            sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge.list'
          
  2. Updating the APT Cache and Installing Edge:

    • Update your APT cache using:

            sudo apt update
          
    • Install the stable version of Microsoft Edge with:

            sudo apt install microsoft-edge-stable
          
    • Once the installation completes, you can launch Microsoft Edge from the Applications menu or using the terminal command:

            microsoft-edge
          

Conclusion

By following either of these methods, you will have successfully installed Microsoft Edge on your Ubuntu system. This robust and secure browser offers users a reliable platform for navigating the web with peace of mind. Remember to keep your browser updated regularly to benefit from the latest security enhancements and bug fixes released by Microsoft. Enjoy the improved security and browsing experience that Microsoft Edge provides!

0 comments:

Post a Comment