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 …
Month: March 2009
How to test BIND version running on DNS server?
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 …
Hello world!
# nano hello.sh #!/bin/bash STR=’Hello World!’ echo $STR#!/bin/bash STR=’Hello World!’ echo $STR # chmod +x hello.sh [me@star ~]# ./hello.sh Hello World!