最近我尝试从这里安装Gnome 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。
发布于 2018-03-11 13:43:43
试一试:以纯文本模式开始
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安装智能和德沃恩
apt-get install --reinstall aptitude deborphan消除在Ubuntu中不需要的gnome组件
aptitude remove '?and(?reverse-depends(gnome),?not(?reverse-depends(?exact-name(ubuntu-desktop))))'重新安装ubuntu-桌面
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再启动系统
reboothttps://askubuntu.com/questions/1013843
复制相似问题