我使用更新管理器将 Ubuntu 12.10 升级到 Ubuntu 13.04。升级后,我刚刚重新启动,出现了一个带有 Kubuntu 徽标的启动画面。我无法登录我的 Ubuntu 帐户。我安装了 KDE 桌面管理器,但在升级之前将其卸载了。
帮助 :)
答案1
尝试重新安装 lightdm:
sudo apt-get --purge remove lightdm
sudo apt-get install lightdm
答案2
我也遇到了与 grub 菜单列表类似的问题,下面是我修复它的方法。
该文件/etc/default/grub.d/50_kubuntu.cfg
将“Kubuntu”作为发行版的名称传递给update-grub
。如果您想将其改回 Ubuntu,修复方法很简单:
sudo rm /etc/default/grub.d/50_kubuntu.cfg
sudo update-grub
如果您想将其更改为其他内容,只需编辑/etc/default/grub
并将行更改GRUB_DISTRIBUTOR
为您想要的任何内容。例如,更改:
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
到:
GRUB_DISTRIBUTOR="My very own Ubuntu install"