how.wtf

How to install Microsoft Edge on Ubuntu

· Thomas Taylor

Installing Microsoft Edge is simple through the terminal on any Debian-based distribution.

Install Microsoft Edge using Terminal / CLI

Download the Microsoft repository GPG key.

1curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg

Add the GPG key to the trusted keys.

1sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/

Add the edge repository.

1sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge-stable.list'

Remove the downloaded GPG key since it was added to the system.

1sudo rm microsoft.gpg

Install Microsoft Edge.

1sudo apt update && sudo apt install microsoft-edge-stable

#linux  

Reply to this post by email ↪