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 [...]
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?
# nano hello.sh #!/bin/bash STR=’Hello World!’ echo $STR # chmod +x hello.sh [me@star ~]# ./hello.sh Hello World!