Author Topic: Possible to Remove the GUI ?  (Read 2168 times)

Youkai

  • Zen Apprentice
  • *
  • Posts: 3
  • Karma: +0/-0
    • View Profile
Possible to Remove the GUI ?
« on: August 11, 2016, 07:36:48 pm »
Is it possible to uninstall/remove the GUI ?
after I set up everything I don't need the GUI any more as I can just access the configuration page on another computer so for stability issues and stuff I'd like to remove the GUI (the place I just installed Zentyal doesn't want any GUI but I am not able to set up a Linux server only within the terminal ^^V

Would be sufficient if it would be possible to just take it out of the system start.

expertgeeks

  • Forum Moderator
  • Zen Warrior
  • *****
  • Posts: 124
  • Karma: +11/-0
    • View Profile
Re: Possible to Remove the GUI ?
« Reply #1 on: August 15, 2016, 03:54:31 pm »
You could try changing the boot options in grub so that it boots to a text-only interface, that should fix your problem;

edit /etc/default/grub
Code: [Select]
sudo nano /etc/default/grubchange the line
Code: [Select]
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"to
Code: [Select]
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash text"
Code: [Select]
sudo update-grubreboot.

Then when you reboot, the GUI shouldn't start up. If you need the GUI, type
Code: [Select]
startx to initiate an X Desktop session. If that doesn't work, try
Code: [Select]
sudo service gdm start