Category Archives: Uncategorized

Ubuntu, is it ready for Tablets? Unity Vs. MATE

Today I did a test, comparing the Unity desktop, which is Ubuntu’s default now, on Ubuntu Quantal, to the MATE desktop (forked from Gnome 2) on Linux Mint 14 (also based on Ubuntu Quantal), all 64-bit. The test was run … Continue reading

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

How to get version of Redhat & Oracle Enterprise Linux

Oracle Enterprise Linux: more /etc/enterprise-release, example output: “Enterprise Linux Server release 5.5 (Carthage)” Redhat: more /etc/redhat-release

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

How to enable & force HTTPS on Apache2 Web Server on Ubuntu

HTTPS Configuration (with self-signed certificate) “sudo a2enmod ssl” “sudo a2ensite default-ssl” With Apache2 now configured for HTTPS, restart the service to enable the new settings: “sudo service apache2 restart” Source: https://help.ubuntu.com/10.04/serverguide/httpd.html To force https: Enable mod_rewrite: “sudo a2enmod rewrite” Then … Continue reading

Posted in Uncategorized | Tagged , , , | 1 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