3
3

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.

Lenovo IdeaPad Duet Chromebook(Debian 10)にOBSをインストールした

Last updated at Posted at 2020-09-04

概要

こちらの記事の内容でインストールしたものの、どこかでOSをアップデートしたタイミングで起動ができないようです。コメント欄参照。

ChromebookをLinuxモードで利用し、OBSをインストールしました。Debianへのインストールは公式にも記載がありましたが、Debian 9ではなくてDebian 10だったことで若干苦戦したのでその記録です。

はじめに

Chromebookは当然Linuxモードを有効にしておき、Terminalを使います。

公式サイトにはこうしろと書いてあります

Debian 9.0 or newer is required.

First make sure you have everything up-to-date.

$ sudo apt update

FFmpeg is required. If you do not have the FFmpeg installed (if you're not sure, then you probably don't have it), you can get it with the following command (or compile it yourself):

$ sudo apt install ffmpeg

Finally, install OBS Studio.

$ sudo apt install obs-studio

そもそもその前にOSのバージョンを確認しておきましょう。


~$ cat /etc/os-release
PRETTY_NAME="Debian GNU/Linux 10 (buster)"
NAME="Debian GNU/Linux"
VERSION_ID="10"
VERSION="10 (buster)"
VERSION_CODENAME=buster
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"

もしくは

$ cat /etc/issue
Debian GNU/Linux 10 \n \l

でも良しです。

Debian 10ですね。

ffmpeg は言われたとおりに入れてOKです

$ sudo apt install ffmpeg

問題はobs-studioです

$ sudo apt install obs-studio

これでは見つかりませんでした。
そういえばこのChromebookは ARMアーキテクチャだった気がする。

確認する

$ dpkg --print-architecture
arm64

なるほど、busterにはないわけだ。
https://packages.debian.org/buster/obs-studio

obs-studioのパッケージを探しましょう

というわけで他を探してみるとsidにあった。

書かれているとおりに

/etc/apt/sources.list
(追記する)
deb http://ftp.de.debian.org/debian sid main 

httpsじゃないので注意!

あとは

$ sudo apt-get update
$ sudo apt-get install obs-studio

入った!

起動は

$ obs

image.png

3
3
14

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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?