admin on March 31st, 2009

In this post, I will present few basic commands for MySQL administration. You’ll see how to create a database, create user, assign a database for specific user, etc. First I suppose that you have root password set and that you know it… (in next posts I will present few steps to set this password or [...]

Continue reading about Basic MySQL operations I

admin on March 23rd, 2009

BIND, or Berkley Internet Name Domain, is an Internet naming system used for DNS, which allows you to find the sites you are looking for. BIND contains entries for DNS names, so for example, if you type www.bla.com into your browser, the record tells your browser at what IP address to find the site. If [...]

Continue reading about How to test BIND version running on DNS server?

admin on March 7th, 2009

# nano hello.sh #!/bin/bash STR=’Hello World!’ echo $STR # chmod +x hello.sh [me@star ~]# ./hello.sh Hello World!

Continue reading about Hello world!