what does sudo mean?

Hey guys, ‘unix’ here to hook you up with some sudo knowledge. We have all heard the joke about the guy who tells his girlfriend to make a sandwich and she says no and then he says ‘sudo make me a sandwich’ and she complys. No this is not some magical word that works just [...]

 Go to post page

November 24th, 2011 by unix

Prevent hacks

Tired of your website getting defaced? Here are some tricks you can use to prevent people from defacing your website unless they have your password. For some of these tips you will need command line and for others you will just need some copy and paste, first up is chattr. chattr, although it sounds like [...]

 Go to post page

September 28th, 2011 by unix

WIldCard SSL on same IP for cpanel

Hey guys unix here to teach you how to install more than one SSL on the same IP address for cpanel. To get started you will need a dedicated IP address for the main domain on the cpanel you will be installing the cert for. I highly recommend you NOT install this on the main [...]

 Go to post page

September 5th, 2011 by unix

python: using dll/so imports

Using a dll (windows) and an so (linux) is pretty easy and it means that any function that has been predefined you have access to it. Lets take a pretty standard example. printf is a C function that allows you to write to a console. Great. In python this is known as just print. But [...]

 Go to post page

July 26th, 2011 by unix

Hello world python

So here we are getting ready to embark on a python learning adventure. Python is a really easy and robust language. There are 2 ways to actually code in python. If you are making scripts on a web server it would look something like below: #!/bin/bash print “Hello world” But how do you get it [...]

 Go to post page

July 26th, 2011 by unix