I encountered a problem that video content such as Twitter could not be played on Firefox, which is installed by default when installing Ubuntu. Therefore, this time, I will describe the solution to the problem.
OS: Ubuntu 20.04.1 LTS x86_64 DE: GNOME
In conclusion, I could solve it by removing Firefox from the standard and installing it officially.
sudo apt install flatpak
I used flatpak for the first time this time, and it seems that this is a new package format for Linux. Use it to download a new Firefox.
https://flathub.org/apps/details/org.mozilla.firefox
Go to the URL above and press INSTALL Download the file org.mozilla.firefox.flatpakref.
sudo apt remove firefox
flatpak install ./org.mozilla.firefox.flatpakref
cd /var/lib/flatpak/exports/share/applications
sudo desktop-file-install org.mozilla.firefox.desktop
This completes the installation. If firefox is not displayed from the GUI When I logged out and logged in again, the display was confirmed.
https://support.mozilla.org/ja/kb/install-firefox-linux
Recommended Posts