我一直在使用 Ubuntu 18.04 和默认的 ubuntu-desktop。最近我安装了 Deepin 桌面环境。我认为它影响了我的系统性能,所以我想删除其中一个。我可以删除 ubuntu-desktop 环境吗?如果可以,那么该怎么做?
答案1
尝试一下:以纯文本模式启动
打开电脑。等待 BIOS 加载完毕,按住 Shift 键,打开 Grub 菜单。
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.
片刻之后,您的电脑应该会显示一个包含多个选项的菜单,包括“Drop to root shell prompt”。
Press Return with this option highlighted.
电脑将在终端中启动。
运行以下命令:
以读写模式挂载分区
mount -o remount,rw /
mount --all
更新存储库
apt-get update
安装 aptitude 和 deborphan
apt-get install --reinstall aptitude deborphan
删除 Ubuntu 中不需要的 deepin 组件
aptitude remove '?and(?reverse-depends(deepin),?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