# 1. Update the system sudo apt update && sudo apt upgrade -y --autoremove && sudo apt clean; # 2. cd into Downloads folder cd ~/Downloads; # 3. Download the official Microsoft GPG signing key curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/ rm microsoft.gpg # 4. Add the stable Microsoft Edge repository to your software sources sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge.list' # 5. Update your package lists and install the browser sudo apt update && sudo apt install microsoft-edge-stable