Saturday, February 24, 2007

Videoconferencing @ MBZ

We finally got Videoconferencing to work with our system. During the MBZ (Movement for Better Zamboanga), we were able to host videoconferencing for almost 2 hours between ADZU and Mozcom Manila, Main Office. Thanks to Jessmike of Mozcom and Dr. Bill Torres for the setup and service. We used Polycom V500 and enabled ports 3230-3235 and 1718-1720. We brought down the entire 4Mbps bandwidth Internet link of the ADZU community to give it to the videoconferencing which requires only 128kbps. This improved the video output of the videocon. I will probably do a traffic prioritization next time so as not to interrupt the browsing of ADZU users. ;)

Wednesday, February 21, 2007

DNSSTUFF Quick URL query

Here is the script for fast accessing to dnsstuff services.

To check for spam list of an IP you type:

http://www.dnsstuff.com/tools/ip4r.ch?ip=

Example replace to check it in their SPAM Database. Like,

http://www.dnsstuff.com/tools/ip4r.ch?ip=122.254.193.163

To check the whois service you use:

http://www.dnsstuff.com/tools/whois.ch?ip=221.236.101.138


Summary of the DNSSTUFF.com website are the following:
1] ip4r.ch
2] whois.ch
3] ptr.ch -- reverse DNS
4] ipall.ch -- more detailed than whois
5] ping.ch
6] tracert.ch
7] dnsreport.ch

http://www.dnsstuff.com/tools/dnsreport.ch?domain=yahoo.com

8] lookup.ch
where type could be:
a] MX
b] A
c] NS

http://www.dnsstuff.com/tools/lookup.ch?name=yahoo.com&type=MX

Monday, February 19, 2007

VMWare after updating/upgrading Ubuntu

Need to do the following:
1] re-install VMWare server by running the script:

sudo ./vmware-install.pl

2] Install the C Header files with

sudo aptitude install linux-headers-`uname -r`

3] Specify the location at

/lib/modules/<>/build/include

:)

Friday, February 16, 2007

Catch the IP in the httpd.log

Catch the ip of clients from error_log files... needs improvement

grep '\[client' /var/log/httpd/error_log | gawk '{ print $8 }' | sort | uniq -c | sort -nr


This script counts the IP who has the most occurrence of the substring specified.

grep "newthread&fid" /var/log/httpd/access_log | gawk '{ print $1 }' | sort | uniq -c | sort -nr

First posting Jan.26, 2007

Thursday, February 15, 2007

Linux Training of Trainors

LPI 101 slides
LPI 102 slides
LPI Manuals

This training is the best Linux Training I have attended. It wass sponsored by IOSN

See my delicious bookmark related to LPI certification materials.
I stayed at the Benitez Hostel (02) 926-1426 in U.P. Diliman during the duration of the training from Dec. 4 - 15, 2006.

first posting 12-19-2006

Saturday, February 10, 2007

OsDir Grab Screenshots Script

# Script to grab images from www.osdir.com version 2
# $1 is the folder name
# $2 is the number of images

for ((i=1; i<=$2;i++))
do
wget http://shots.osdir.com/slideshows/$1/$i.gif
done

--First posted July 7, 2006
Bash Script to grab the screenshot from OSDir of Edubuntu 6.06

for ((i=1; i<=63;i++)); do wget http://shots.osdir.com/slideshows/661_or/$i.png ;
done

You can modify which distributions by taking note of the link and modifying your script. You need also to take note of the last page.