Another way to gain root permissions on a Debian Linux installation.

This is another way to gain root permissions on a Debian system; this is a script that will elevate the user to root for a specific command; like using the sudo command. su-to-root -X -c "cat /etc/shadow"su-to-root -X -c "cat /etc/shadow" This is what you get if you try this without root permissions. [flynn@flynn-grid-runner ~]$ … Read more

How to enable the HTTP proxy in OpenSuse 12.3.

See the original page here: this is how to add a http proxy to OpenSUSE so that the zypper command will work correctly: http://www.securitronlinux.com/opensuse-12-3-tips-and-tricks-for-using-your-new-linux-system/#proxy. Just add these lines to the /etc/sysconfig/proxy and then save and you should now be able to install software packages through the proxy with no problems. PROXY_ENABLED="yes"   ## Type: string … Read more

How to rip a DVD on Ubuntu 12.10 Quantal Quetzal. The Acid::Rip application explained.

I was trying to install the Handbrake application on Ubuntu to rip a couple of DVDs and I had no luck as the dependencies were broken. So I installed the Acid::Rip package instead and that gave me a nice front-end to the mencoder DVD ripping and transcoding application. All you need to do is set … Read more

Installing gcc 4.7.0 from source on Linux Mint 12.

Install gcc from source on Linux Mint 12 After downloading the source tarball for the gcc 4.7.0 release, and unpacking the tarball, enter the source directory: cd gcc-4.7.0/cd gcc-4.7.0/ Then we need to create an empty folder under the gcc-4.7.0/ folder to perform the actual build. mkdir mintbuildmkdir mintbuild Then enter this folder: cd mintbuildcd … Read more