1

How do I install the web browser 'Pale Moon' under Bionic Beaver?

andrew.46
  • 39,359

1 Answers1

2

The browser Pale Moon as yet does not exist in the Bionic Beaver repositories but there is a dependable PPA available that has the nod of approval of the Pale Moon developers.

Add the PPA and install Pale Moon with the following one liner:

echo "deb http://download.opensuse.org/repositories/home:\
/stevenpusser/x$(lsb_release -sir | paste -sd_)/ /" | sudo tee /etc/apt/sources.list.d/home:stevenpusser.list && \
wget -nv \
https://download.opensuse.org/repositories/home:stevenpusser/xUbuntu_18.04/Release.key \
-O Release.key && \
sudo apt-key add - < Release.key && \
sudo apt-get update && sudo apt-get install palemoon

Then take this new kid on the block (comparatively!) for a test run:

enter image description here

Notes:

SebMa
  • 2,927
  • 5
  • 35
  • 47
andrew.46
  • 39,359