How to Install Microsoft Edge on FunOS

What is Microsoft Edge?

Microsoft Edge is a web browser developed by Microsoft, initially released in 2015. It replaced Internet Explorer as the default browser on Windows 10 and has since become a significant player in the browser market. Edge is built on the Chromium engine, the same open-source project that powers Google Chrome, which enhances its speed, compatibility, and overall performance.

Microsoft Edge offers several standout features:

  1. Integration with Windows: Seamless integration with Windows operating systems and other Microsoft services like Office 365 and OneDrive.
  2. Performance: Utilizing the Chromium engine for faster browsing and better compatibility with web standards.
  3. Security: Advanced security features such as SmartScreen and tracking prevention to protect users from malicious websites and phishing attacks.
  4. Productivity Tools: Tools like Collections, vertical tabs, and immersive reader mode to help users organize and consume web content more effectively.
  5. Cross-Platform Support: Available on multiple platforms including Windows, macOS, iOS, and Android, offering a consistent experience across devices.
  6. Extensions: Support for a wide range of extensions from both the Microsoft Store and the Chrome Web Store.
  7. Privacy Controls: Comprehensive privacy settings, including tracking prevention and customizable privacy levels.

Overall, Microsoft Edge aims to provide a user-friendly, secure, and high-performance browsing experience.

How to Install Microsoft Edge on FunOS

Installing Microsoft Edge on FunOS can be done through various methods, including using the official Microsoft repositories and using the .deb package from Microsoft’s official website.

Method 1: Install from the Microsoft Repositories

1. Open a Terminal

2. Update the package list:

sudo apt update

3. Install the necessary dependencies:

sudo apt install apt-transport-https curl

4. Add Microsoft’s GPG Key:

curl -fSsL https://packages.microsoft.com/keys/microsoft.asc | sudo gpg --dearmor | sudo tee /usr/share/keyrings/microsoft-edge.gpg > /dev/null

5. Add the Microsoft Edge Repository:

echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/microsoft-edge.gpg] https://packages.microsoft.com/repos/edge stable main' | sudo tee /etc/apt/sources.list.d/microsoft-edge.list

6. Update the package list:

sudo apt update

7. Install Microsoft Edge:

sudo apt install microsoft-edge-stable

8. Click the menu in the bottom left corner of the screen. Next, click the Reload menu. The objective is to display Microsoft Edge in the menu.

click reload menu
Click Reload menu

Method 2: Install using the .deb package from Microsoft’s official website

1. Download the Microsoft Edge .deb Package:

Go to the Microsoft Edge download page and download the .deb package (click Download Edge).

microsoft edge website
Microsoft Edge website

2. Open a Terminal

3. Navigate to the Downloads Directory:

cd ~/Downloads

4. Update the package list:

sudo apt update

5. Install the package:

sudo apt install ./microsoft-edge-stable_*.deb

6. Remove the downloaded Microsoft Edge .deb package:

rm microsoft-edge-stable_*.deb

7. Click the menu in the bottom left corner of the screen. Next, click the Reload menu. The objective is to display Microsoft Edge in the menu.

click reload menu
Click Reload menu

Launching Microsoft Edge

After the installation is complete, you can launch Microsoft Edge by typing microsoft-edge-stable in the terminal or by searching for “Microsoft Edge” in the applications menu.

microsoft edge menu
Microsoft Edge menu

How to Uninstall Microsoft Edge on FunOS

To uninstall Microsoft Edge from your FunOS system, follow these steps based on the method you used to install it.

Uninstall Microsoft Edge installed from the Microsoft Repositories

1. Open a Terminal

2. Remove Microsoft Edge:

sudo apt remove --purge microsoft-edge-stable

3. Remove any unused dependencies:

sudo apt autoremove --purge

4. Remove the key (optional):

sudo rm /usr/share/keyrings/microsoft-edge.gpg

5. Update the package list:

sudo apt update

6. Remove user data (optional):

rm -rf $HOME/.config/microsoft-edge

rm -rf $HOME/.cache/microsoft-edge

rm -rf $HOME/.cache/Microsoft

7. Click the menu in the bottom left corner of the screen. Next, click the Reload menu. The objective is to remove Microsoft Edge from the menu.

click reload menu
Click Reload menu

Uninstall Microsoft Edge installed via the .deb package

1. Open a Terminal

2. Remove Microsoft Edge:

sudo apt remove --purge microsoft-edge-stable

3. Remove any unused dependencies:

sudo apt autoremove --purge

4. Remove user data (optional):

rm -rf $HOME/.config/microsoft-edge

rm -rf $HOME/.cache/microsoft-edge

rm -rf $HOME/.cache/Microsoft

5. Click the menu in the bottom left corner of the screen. Next, click the Reload menu. The objective is to remove Microsoft Edge from the menu.

click reload menu
Click Reload menu

Conclusion

Microsoft Edge, with its robust features and Chromium-based performance, is a versatile web browser that provides a secure, efficient, and user-friendly browsing experience. Installing Microsoft Edge on FunOS is straightforward, whether you prefer using the official Microsoft repositories or using the .deb package from Microsoft’s official website. Uninstalling Edge is equally simple, ensuring that you can manage your software preferences with ease. Whether you are looking for better integration with Microsoft services or a reliable alternative to other browsers, Microsoft Edge is a commendable choice.

Leave a Reply

Your email address will not be published. Required fields are marked *