我可以在 Raspberry Pi 上运行 Ubuntu Studio 吗?

我可以在 Raspberry Pi 上运行 Ubuntu Studio 吗?

我的问题很简单:Raspberry pi 400 可以在 Ubuntu Studio 上运行吗?如果可以,那么如何运行?

答案1

我不相信 Ubuntu Studio 默认适用于 Raspberry Pi。

原因如下:

  1. 官方系统要求列出了英特尔处理器(或同等处理器)作为要求(参考)。

    必需的: 受到推崇的:
    中央处理器: 相当于 Intel Core 2 Duo Intel Core i5 同等或更高配置
    内存: 2GB 8GB
    驱动器空间: 16 GB 64GB,更多用于音频/视频工作
  2. Ubuntu Studio 可能依赖于“低延迟”内核变体(包含在安装映像中),该变体默认不适用于 Raspberry Pi。

我并不是说不可能为 Raspberry Pi 构建 Ubuntu Studio,但我不认为它可以开箱即用。

然而,在深入研究了这些软件包之后,发现 Ubuntu Studio 的软件包实际上似乎在所有平台上都可用,包括 Arm64(参考上面 N0rbert 的评论)。

这提出了一个有趣的想法——是否实际上可以安装 Ubuntu Studio 桌面和附加软件包以便它们在 Raspberry Pi 上运行?

首先,您需要启用 Universe 存储库。确保以下行未注释/etc/apt/sources.list

deb http://archive.ubuntu.com/ubuntu focal universe
deb http://archive.ubuntu.com/ubuntu focal-updates universe
deb http://archive.ubuntu.com/ubuntu focal-security universe

然后您可以尝试以下操作:

sudo apt-get install ubuntustudio-desktop^

然后根据您的需要安装其他软件包。

sudo apt-get install ubuntustudio-desktop^
sudo apt-get install ubuntustudio-fonts^
sudo apt-get install ubuntustudio-graphics^
sudo apt-get install ubuntustudio-photography^
sudo apt-get install ubuntustudio-publishing^
sudo apt-get install ubuntustudio-video^

但是,参考官方网站,这将不受支持,并且完全由您自行承担风险。

參閱这个现有的问题正如 N0rbert 所指出的,请参阅详细信息。

相关内容