在Lenovo IdeaPad Duet Chromebook(搭载Debian 10系统)上安装了OBS

简要概括

根据这篇文章中的内容进行安装后,当在某个时间点进行操作系统更新时,似乎无法启动。请参阅评论区。

我在Chromebook上使用了Linux模式,并安装了OBS。虽然在官方网站上已经提到了如何在Debian上安装,但是由于版本不是Debian 9,而是Debian 10,所以我遇到了一些困难。下面是我的记录。

首先

当然的,Chromebook需要启用Linux模式,并使用终端。

在官方网站上写着这样做

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

首先,让我们确认一下操作系统的版本。


~$ 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安装可以按照要求来进行,可以了解了解一下

$ sudo apt install ffmpeg

問題就是obs-studio。

$ sudo apt install obs-studio

这样找不到。
说起来,我记得这台Chromebook是ARM架构的。

确认

$ dpkg --print-architecture
arm64

我明白了,原来buster里没有obs-studio。

让我们找到obs-studio的安装包吧

所以我尝试寻找其他选项时,在SID找到了一个。

按照书上所写的。

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

这个网址不是https的,请注意!

剩下的只有…

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

我进来了!

开动

$ obs
image.png