我想在我的 Ubuntu 机器上安装 XUbunutu,我是这样做的:
sudo apt-get 安装 xubuntu-desktop
但是现在,当我重新启动机器时,我首先看到的是 xUbuntu 注销屏幕。当我返回登录屏幕时,我得到的是 Xfce (xubuntu) 登录屏幕,甚至当我登录到 unity 时,我已设置好 xfce 图标和菜单颜色。像这样
我想要的是有一个类似 Ubuntu 的登录屏幕,并且当我登录到 ubunty(unity)时显示的是 ubuntu,而不是某种混合的 xfce-ubunty 体验。
我努力了
sudo apt-get update
sudo apt-get install --reinstall ubuntu-desktop
sudo apt-get install unity
和
dconf reset -f /org/compiz/
unity --reset-icons
但它没有起作用。
有人能帮我如何在进入登录屏幕和登录 Unity UI 时恢复原始 Ubuntu 外观吗?
答案1
似乎发生的事情是 XFCE 更改了您系统上的某些设置,因此您的 Ubuntu 看起来就是这样。您必须通过运行几个命令将其中一些设置重置为默认值。
重置图标
gsettings set org.gnome.desktop.interface icon-theme 'ubuntu-mono-dark'
重置主题
gsettings set org.gnome.desktop.interface gtk-theme 'Ambiance'
gsettings set org.gnome.desktop.wm.preferences theme 'Ambiance'
重置登录屏幕
sudo dpkg-reconfigure lightdm
以上将修复统一的外观。接下来是登录屏幕。
重置登录屏幕
对此有两种选择:
第一的:
运行以下命令:
sudo update-alternatives --config default.plymouth
然后选择你的 ubuntu 选项:/lib/plymouth/themes/ubuntu-logo/ubuntu-logo.plymouth
然后运行:sudo update-initramfs -u
第二:
在终端中运行:
sudo dpkg-reconfigure lightdm
运行第二个(甚至第一个选项)后你可能会不是暂时看不到结果。由于这些脚本没有更新所有必要的文件,请编辑文件lightdm.config
(感谢这篇文章的帮助https://askubuntu.com/a/421322/223469):
sudo gedit /etc/lightdm/lightdm.conf
并将值更改为(以前的值可能是 xubuntu):
user-session=ubuntu
greeter-session=unity-greeter
保存并重置。
完成这些更改后,登录屏幕就会出现。
剩下要做的就是返回加载屏幕,但到目前为止我还没有做到这一点,但一旦我找到解决方案,就会更新
答案2
您尝试过 Unity Tweak Tool 吗?
sudo apt-get install unity-tweak-tool
然后在终端启动:unity-tweak-tool
,转到外观→图标→Ubuntu-mono-dark,外观→主题→氛围等等(尝试选择不同的并返回默认值,如 Ambiance)
对于登录屏幕尝试:
sudo dpkg-reconfigure lightdm
如果您在启动屏幕上遇到问题,请尝试:
sudo update-alternatives --config default.plymouth
选择数量:/lib/plymouth/themes/ubuntu-logo/ubuntu-logo.plymouth(默认)
然后:sudo update-initramfs -u