Posts

Showing posts with the label Reference

[Level 2] DNS setup on Ubuntu.

If you want to instal DNS on Ubuntu, the steps of DNS setup as the following: 1. install bind9 # apt-get -y install bind9 2. setup named.conf.local # cat /etc/bind/named.conf.local // // Do any local configuration here // // Consider adding the 1918 zones here, if they are not used in your // organization //include "/etc/bind/zones.rfc1918"; # This is the zone definition. replace example.com with your domain name zone "example.com" {         type master;         file "/etc/bind/zones/example.com.db";         }; # This is the zone definition for reverse DNS. replace 0.168.192 with your network address in reverse notation - e.g my network address is 192.168.0 zone "0.168.192.in-addr.arpa" {      type master;      file "/etc/bind/zones/rev.0.168.192.in-addr.arpa"; }; 3. setup named.conf.options # cat /etc/bind/named.co...

[Reference] From Perl 5 to Perl 6.

Good article for Perl programmer from 5 to 6. http://perlgeek.de/en/article/5-to-6 Wi sh this helps. regards, Stanley Huang

[Reference] What Is New in MySQL 5.5

What Is New in MySQL 5.5 Wish this helps. regards, Stanley Huang

[Reference] Performance-Guide-for-MySQL-Cluster-Presentation

http://assets.en.oreilly.com/1/event/2/Performance%20Guide%20for%20MySQL%20Cluster%20Presentation.pdf Wish this helps. regards, Stanley Huang

OpenSolaris on SLX

Today, I find out a website which use vedio to present about the SUN technology. Of course, included OpenSolaris. After viewing some vedio, that impress me. I recommend you to watch it when you have free time. The website as the following: https://slx.sun.com/channel/1179273732 regards, Stanley Huang