
This is my new linux desktop featuring actor Angelina Joulie. I got this wallpaper at WallpaperStock , which contains a fantastic collection , updated daily.

# named-checkzone mysite.com /var/named/mysite.com.zone
# host -a www.mysite.com
# host -al mysite.com$ dig @ns mysite.com
$ dig mail.mysite.com
$ dig -x 192.168.0.254
$ dig www.yahoo.com
# touch mysite.com.zone
; FILE : mysite.com.zone
$TTL 86400 ; Time to Live in Seconds
@ IN SOA ns.mysite.com. root.mysite.com. (
20011042501 ; Serial Number.
300 ; refresh.
60 ; retry
1209600 ; expire
43200 ; minimum TTL for negative answers.
)
...
; FILE : mysite.com.zone
...
@ IN NS ns.mysite.com.
mysite.com. IN NS ns1.mysite.com.
...
; FILE : mysite.com.zone
...
mail IN A 192.100.100.5
login.mysite.com. IN A 192.100.100.6
...
; FILE : mysite.com.zone
...
login.mysite.com. IN A 192.100.100.6
6.100 IN PTR login.mysite.com.
...
; FILE : mysite.com.zone
...
mysite.com. IN MX 5 mail.mysite.com.
mysite.com. IN MX 10 mymail.mysite.com.
...
; FILE : mysite.com.zone
...
pop IN CNAME mail
ssh IN CNAME login.mysite.com.
...
; FILE : mysite.com.zone
...
www 0 IN A 192.168.1.10
www 0 IN A 192.168.1.11
www 0 IN A 192.168.1.12
...
# rpm -q bind
# rpm -q bind-utils
#FILE : /etc/named.conf
...
acl "mynetwork" { 192.168.100/24; }; # Gives a name for the network
options {
directory "/var/named";
forwarders { 203.22.11.121; };
allow-query { mynetwork; };
allow-transfer { mynetwork; };
};
...
acl "mylocalmachine" { localhost; };
zone "mysite.com" {
type master;
file "mysite.com.zone"; # File name should indicate the zone.
};
zone "kernel.org" {
type slave;
masters { 192.168.192.5; };
file "kernel.org.zone";
};
zone "10.100.172.in-addr.arpa" {
type slave;
masters { 172.100.10.1 };
file "172.100.10.zone";
};
zone "." {
type hint;
file "named.ca";
};
zone "0.0.127.in-addr.arpa" {
# Specified like other reverse lookup zones.
};
$ chmod ugo+x supertux-0.1.3.x86.package$ bash supertux-0.1.3.x86.package
autopackage for "SuperTux platform game"
The installation of this software requires some additional support code to be installed.
A] If the support code is found in a local directory, it will be used.
The file containing the support code will be called:
"autopackage.tar.bz2"
or
B] If there is an active Internet connection, the support code will be
downloaded from:
"http://autopackage.org/latest/autopackage.tar.bz2"
Proxy users should ensure the http_proxy environment variable is set, otherwise the download may fail.
Selection B --> OK to download and install support code now? (Y/n): Y


# FILE: /etc/autopackage/config
...
autopackage_prefix="/usr/local"
...
# package remove supertux