enabling/disabling linux GUI


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. # manually disable GUI
  2. /etc/init.d/gdm stop
  3. # manually enable GUI
  4. /etc/init.d/gdm start
  5.  
  6. # disabling GUI loading at startup
  7. sudo update-rc.d gdm remove
  8. # enabling GUI loading at startup
  9. update-rc.d gdm defaults 13 01

URL: http://ubuntuforums.org/showthread.php?t=664199

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.