Tag Archives: X

How to debug your bash script

Simply supply the -x parameter, e.g. bash -x myscript.sh

Posted in Uncategorized | Tagged , , , | Leave a comment

How to install basic GUI on Ubuntu Server and access it via VNC

For those who need basic & light-weight GUI for their Ubuntu Server, you can do the following: “sudo apt-get install xorg openbox” To easily access it via VNC: “sudo apt-get install tightvncserver” To start your VNC server, simply type: “vncserver” … Continue reading

Posted in Uncategorized | Tagged , , , , , , , , | Leave a comment

How to start the X server at boot with Redhat or Oracle Linux

vi /etc/inittab Edit your /etc/inittab file by replacing the line: id:3:initdefault: With this one: id:5:initdefault: and reboot Enjoy! Source: http://www.redhat.com/support/resources/faqs/rhl_general_faq/s1-xwin-q.html

Posted in Uncategorized | Tagged , , , , , , | Leave a comment