安装了不同的桌面环境后,如何删除原来的桌面环境?

安装了不同的桌面环境后,如何删除原来的桌面环境?

几天前我安装了 Lubuntu,想要一个好用、轻量级的东西,但是它不太适合我,所以我安装了 xfce。

如何删除原始桌面环境及其所有组件,以使它们不占用计算机空间?

我已经看到了很多建议,但它们都

  1. 对于 Lubuntu 的 LXDE 版本,这是 LXQT
  2. 在 LXDE 成为辅助桌面环境(而不是内置桌面环境)后将其删除。

答案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

消除 xfce 中不必要的 lxqt 组件

 aptitude remove '?and(?reverse-depends(lxqt),?not(?reverse-depends(?exact-name(xubuntu-desktop))))'

重新安装 xubuntu-desktop

 apt-get install --reinstall xubuntu-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

相关内容