5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Linux版Firefoxで、動画コンテンツを再生できない問題の解決手法

Posted at

はじめに

Ubuntuインストール時に標準でインストールされているFirefoxにて、Twitterなどの動画コンテンツを再生できない問題に遭遇した。そこで、今回はその問題に対しての解決法を記載する。

環境

OS: Ubuntu 20.04.1 LTS x86_64
DE: GNOME

結論

結論から言うと、標準に入ってるFirefoxを削除して、公式からインストールをすると解決できた。

手法

Step1: FlatPakのセットアップ

sudo apt install flatpak

今回flatpakを初めて使ったが、これはLinuxの新しいパッケージフォーマットだそう。これを使って新しいFirefoxをダウンロードする。

Step2: Firefoxのflatpakrefをダウンロード

上記のURLにアクセスして、INSTALLを押して
org.mozilla.firefox.flatpakrefというファイルをダウンロード。

image.png

Step3: 標準のFirefoxをアンインストール

sudo apt remove firefox

Step4: Flatpakを使ってFirefoxをインストール

flatpak install ./org.mozilla.firefox.flatpakref

cd /var/lib/flatpak/exports/share/applications

sudo desktop-file-install org.mozilla.firefox.desktop

これでインストールが完了した。
もし、firefoxがGUI上から表示されない場合
一旦ログアウトをし再度ログインすると、表示が確認された。

参考文献

5
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?