from wiki

This commit is contained in:
Randy Bush 2020-07-04 14:43:51 -07:00
parent b3f1c89320
commit 65ade6953d

21
pages/DesktopDeinstall.md Normal file
View file

@ -0,0 +1,21 @@
# Deinstall Debian Desktop, X, etc.
List all the gorp that is running
```
tasksel --list-tasks
```
Now remove the gorp
```
apt-get purge $(tasksel --task-packages desktop)
apt-get purge $(tasksel --task-packages gnome-desktop)
```
And remove the gorp's dependencies
```
apt-get autoremove
```