图形引导加载程序

图形引导加载程序

我目前使用的是 Ubuntu 17.10,我想用更漂亮的 GUI 启动加载程序替换丑陋的 GRUB 启动加载程序。我搜索了这个,找到了 burg,但无法使用原始 ppa 安装它:

sudo add-apt-repository ppa:n-muench/burg
sudo apt-get update
sudo apt-get install burg burg-themes

当我添加 ppa 时,我收到了这条非常旧的消息......

Burg(Maverick 包装)已从原始 repo 复制(https://launchpad.net/~bean123ch/+archive/burg),并为 Natty 重建。没有任何改变,只是基本复制和重建。这应该可以让你一直到该 repo 为 Natty 更新(如果有的话)。

众所周知,该包装效果很好,所以我不会推送最新版本(目前为 1844)。

这个 repo 是专门制作的,因此您可以使用 Natty 建造的 burg 而不是 Maverick 建造的 burg。

===========================================================================

我将为 Oneiric 重建这两个软件包。更改如下:

  • 附加现有条目。
  • 调整版本
  • 删除“+maverick”(针对主包)
  • 将修订版本上调至“-2”
  • 将行添加到 debian/rules,以便它能够使用 GCC-4.6 成功构建(LP:#775460)。我以前遇到过这个问题,我知道如何修复它。

很快(可能在 Oneiric 发布后),我将创建第二个 Burg PPA。它将用于试用该软件包的最新修订版(使用 Oneiric 和可能的 Natty)。并查看新修订版中是否添加了任何新错误。我的编程技能很少,因此无法向软件包中添加任何新内容。

这将在 Oneiric 正式发布前后发生。更多信息:https://launchpad.net/~n-muench/+archive/ubuntu/burg点击 [ENTRÉE] 继续或点击 Ctrl-c 取消添加。

然后...当我想用

sudo apt-get update

我收到此错误:

Err:7 http://ppa.launchpad.net/n-muench/burg/ubuntu artful Release
404 Not Found Lecture des listes de paquets... Fait
E: The repository 'http://ppa.launchpad.net/n-muench/burg/ubuntu artful Release' does not have a Release file. N: Updating from such a repository can't be done securely, and is therefore disabled by default. N: See apt-secure(8) manpage for repository creation and user configuration details.

所以我不知道该如何进行,或者是否有另一个用于 GUI 引导加载程序的项目...现在 Ubuntu 有没有稳定的图形引导加载程序?

答案1

BURG 引导程序已经过时且无人维护,即使你成功安装了它,也可能不适用于新的 Ubuntu 版本。我建议你将主题应用于 Grub2如果你想要一个更好的 GUI,或者尝试现代图形引导加载程序,如重新索引它承诺可以在基于 UEFI 且具有不同操作系统的机器上运行。

sudo apt-add-repository ppa:rodsmith/refind
sudo apt update
sudo apt install refind

警告:完全不推荐下面所述的方法。

如果您出于某种原因坚持使用 BURG,您可以手动编辑其存储库:

sudo nano /etc/apt/sources.list.d/n-muench-ubuntu-burg-bionic.list

并替换artfulxenial

deb http://ppa.launchpad.net/n-muench/burg/ubuntu xenial main
# deb-src http://ppa.launchpad.net/n-muench/burg/ubuntu xenial main

最后进入sudo apt update && sudo apt install burg安装burg。

相关内容