This article provides step-by-step instructions to help you remove X11 and Qt dependencies from your Ubuntu system, turning it into a headless setup. By following these instructions, you can optimize your Ubuntu installation for servers or other environments where a graphical user interface is not required.

Make desktop ubuntu headless

1
2
3
4
sudo apt-get purge libx11.* libqt.*
sudo apt-get autoremove -y
sudo apt-get clean

Comments