在 Ubuntu 16 中应用 MacBuntu 启动画面/启动画面

在 Ubuntu 16 中应用 MacBuntu 启动画面/启动画面

在为我的 Ubuntu 16 安装 MacBuntu 转换包后,当我启动计算机时,MacBuntu 启动画面/启动画面没有出现。苹果徽标没有显示,我不知道为什么。

答案1

您可能需要更新 Plymouth 来更改启动屏幕。

运行以下命令

    sudo update-alternatives --config default.plymouth
sudo update-initramfs -u

执行第一个命令后,它会要求您选择一个 Plymouth 主题。输入与 Macbuntu 相关的 Plymouth 主题对应的数字,然后按回车键。接下来运行第二个命令,执行完成后,重新启动系统以查看更改。

答案2

跑步

sudo gedit /etc/hosts
sudo gedit /etc/hostname

并验证两个文件中的主机名是否相同。

127.0.0.1    localhost
127.0.1.1    <your_hostname@your_host>

如果没有编辑,请保存文件然后重新启动。这将解决您无法验证主机名的问题。

确保你已经在转换包中安装了 macbuntu splashscreen,方法是运行

sudo add-apt-repository ppa:noobslab/themes
sudo apt-get update
sudo apt-get install macbuntu-os-bscreen-lts-v7

之后你可以运行

update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/macbuntu/macbuntu.plymouth 100

您在这里安装已经使用转换包安装的 macbuntu 启动画面,作为 plymouth 的替代品。

格式为 update-alternatives --install <link> <symlink name> <path> <priority>

现在运行

sudo update-alternatives --config default.plymouth
sudo update-initramfs -u

并重新启动。

答案3

您需要打开macbuntu.plymouth文件并更改 下的位置[script]。将每个“ ”实例更改/lib为“ usr/share”,因为 Ubuntu 通常缺少/lib此模块所需的文件,但您可以将它们重定向到目录中的现有文件/usr/share。对我来说每次都有效。

sudo gedit /usr/share/plymouth/themes/macbuntu/macbuntu.plymouth

macbuntu.plymouth(已修复)

相关内容