彻底删除 GDM

彻底删除 GDM

我最近尝试从这里安装 Gnome Ubuntu 桌面https://popey.com/blog/posts/my-ubuntu-1604-gnome-setup.html

在安装过程中,我记得 gdm3 要求我在目录中设置某种默认文件,使其成为默认文件。我接受了它并快进,我不太喜欢 Gnome,想删除它。

我清除了所有文件,sudo apt-get remove gnome-ubuntu-desktop等等。但是,当我启动系统时,屏幕仍然显示灰色,当我关闭系统时,屏幕仍然显示灰色,尽管中间有一个蓝色的加载图标。

我希望它像以前一样显示“Ubuntu”。我不知道如何彻底删除这个 gdm3 显示管理器。

我已经重新配置 dpkg 以使用 lightdm,但是 gdm3 屏幕不知何故仍然位于 lightdm 的登录屏幕之前,并且我已经通过互联网上找到的所有方法删除了 gdm3。

答案1

尝试一下:以纯文本模式启动

Switch on your computer. Wait until the BIOS has finished loading, and press and hold Shift, which will bring up the Grub menu.

Select the line which starts with Advanced options.

Select the line ending with (recovery mode)

Press Return and your machine will begin the boot process.

After a few moments, your PC should display a menu with a number of options, including Drop to root shell prompt. Press Return with this option highlighted.

The PC will start in a terminal.

运行以下命令:

以读写模式挂载分区

mount -o remount,rw /
mount --all

更新存储库

apt-get update

安装 aptitude 和 deborphan

apt-get install --reinstall aptitude deborphan

消除 Ubuntu 中不必要的 gnome 组件

aptitude remove '?and(?reverse-depends(gnome),?not(?reverse-depends(?exact-name(ubuntu-desktop))))'

重新安装 ubuntu-desktop

apt-get install --reinstall ubuntu-desktop

消除孤立包

deborphan
apt-get --purge remove $(deborphan)
deborphan --libdevel
apt-get --purge remove $(deborphan --libdevel)
deborphan --find-config
dpkg --purge $(deborphan --find-config)

删除不必要的包

apt-get autoremove

删除下载的软件包

apt-get clean

重启系统

reboot

相关内容