找回Ubuntu的默认启动启动


38

我是Gnome用户。出于好奇,我安装了kubuntu-desktop软件包以检查最新的KDE。该软件包已被劫持,并用蓝色的KDE替换了不错的ubuntu引导启动。我如何才能恢复原始的启动画面?我应该重新安装哪个软件包?

Answers:


35

如果您想快速将其改回,sudo update-alternatives --config default.plymouth将为您提供可供选择的屏幕列表。


2
谢谢,对我有用。我安装了gnome桌面,但最终不喜欢它。当我卸载它时,它在启动和关闭屏幕上留下了gnome foot标志。这使我重新获得了很好的旧ubuntu徽标。:)
Kimberly W

9

或者简单地

sudo apt-get remove plymouth-theme-kubuntu-logo

如果您不想删除KDE


5

如果这样做,您应该恢复正常:

sudo apt-get purge kubuntu-desktop
sudo apt-get autoremove --purge
sudo apt-get install ubuntu-deskop

启动画面是通过选择的update-alternatives,但以上内容也应恢复链接。


4

选择ubuntu-logo选项后,尝试codeMonk的答案给我一个错误:

update-alternatives: warning: forcing reinstallation of alternative /lib/plymouth/themes/ubuntu-logo/ubuntu-logo.plymouth because link group default.plymouth is broken.

运行此命令为我修复了该问题:

sudo apt-get install --reinstall plymouth-theme-ubuntu-logo

-1

通过GRUB可以轻松更改启动时的启动屏幕。

sudo vim /etc/default/grub

你会看到的 GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

  1. splash从此行中删除
  2. 保存与 :wq
  3. sudo update-grub
  4. sudo reboot now

启动画面将不再出现。


在编辑系统文件时,sudoedit file是首选方式。它会选择vim(如果可用),否则会退回到nano
Mahesh 2012年

1
我相信它只是默认由EDITOR环境变量指定的编辑器echo $EDITOR,在某些系统上它是vim(或vim.tiny)在其他系统上是nano。您可以通过运行来测试它,EDITOR=nano sudoedit /etc/default/grubEDITOR=vim sudoedit /etc/default/grub可以选择您指定的一个而不将其永久化。
Dragon788
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.