Firefox:Installasi Firefox ESR: Difference between revisions
Created page with "==Installasi== sudo add-apt-repository ppa:mozillateam/ppa sudo apt update sudo apt install firefox-esr ==Removing== sudo apt remove --autoremove firefox-esr sudo add-apt-repository --remove ppa:mozillateam/ppa ==Source== *[https://ubuntuhandbook.org/index.php/2022/03/install-firefox-esr-ubuntu/ ubuntuhandbook.org] Category:Software Category:Linux Category:Ubuntu Category:Tutorial" |
No edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
==Installasi== | ==Installasi== | ||
<syntaxhighlight lang="bash"> | |||
sudo add-apt-repository ppa:mozillateam/ppa | |||
</syntaxhighlight> | |||
<syntaxhighlight lang="bash"> | |||
sudo apt update | |||
</syntaxhighlight> | |||
<syntaxhighlight lang="bash"> | |||
sudo apt install firefox-esr | |||
</syntaxhighlight> | |||
==Removing== | ==Removing== | ||
<syntaxhighlight lang="bash"> | |||
sudo apt remove --autoremove firefox-esr | |||
</syntaxhighlight> | |||
<syntaxhighlight lang="bash"> | |||
sudo add-apt-repository --remove ppa:mozillateam/ppa | |||
</syntaxhighlight> | |||
==Source== | ==Source== | ||