It's my Internship for Dive Master, and this is my first SCUBA Equipment Installation for Open Water Students
We did the following;
1. Introduction of Tank, BCD, Regulator
2. Installation of BCD to Tank
3. Installation of Regulator to Tank and BCD
4. Introduction of Fins
5. How to Gear up with SCUBA Gear
My OWSI Instructor Jonathan Almanon, Me and Jun Bernales (3rd from their right to left <--) and the rest of Open Water Students
Last Updated ( Saturday, 18 October 2008 )
Night Dive Old Club Reef / Umm Said Qatar
Written by Kutch Villasor
Sunday, 27 July 2008
We did night diving last Thursday (24.07.08) with my Wife and kids (Matt and Thea) it was hot and humid. Watch our video (sorry for the less light I only use my Sony H1 Camera)
Last Updated ( Saturday, 18 October 2008 )
How to enable USB on Virtual Box
Written by Kutch Villasor
Friday, 20 June 2008
When you get this error from your Virtual Box;
Could not load the Host USB Proxy Service (VERR_FILE_NOT_FOUND). The service might be not installed on the host computer.
No worries, here some more summarized on how to enable USB to your Virual Box
I use Ubuntu (Gutsy Gibbon), with running xVM VirtualBox Ver 1.6.2 if you don't have this just click here to download
Now you have a running Virtual Box, I installed Windows XP Pro, and here are the instructions to enable USB;
1. Create a group named 'vboxusers'
System -> Administration -> Users and Groups then click on Manage Groups then click Add Group
I just add two users root and me my self
2. Modify the usbfs by uncomment the lines
kutch@dorkbox:~$ sudo vi /etc/init.d/mountdevsubfs.sh
then uncomment this line, it should look like this;
# Magic to make /proc/bus/usb work
#
mkdir -p /dev/bus/usb/.usbfs
domount usbfs "" /dev/bus/usb/.usbfs -obusmode=0700,devmode=0600,listmode=0644
ln -s .usbfs/devices /dev/bus/usb/devices
mount --rbind /dev/bus/usb /proc/bus/usb
Original line:
# Magic to make /proc/bus/usb work
#
#mkdir -p /dev/bus/usb/.usbfs
#domount usbfs "" /dev/bus/usb/.usbfs -obusmode=0700,devmode=0600,listmode=0644
#ln -s .usbfs/devices /dev/bus/usb/devices
#mount --rbind /dev/bus/usb /proc/bus/us
3. Add the group vboxuser to access the permission rules of device
kutch@dorkbox:~$ sudo vi /etc/udev/rules.d/40-permissions.rules
# USB devices (usbfs replacement)
SUBSYSTEM==”usb_device”, GROUP=”vboxusers”, MODE=”0664″
Original line:
# USB devices (usbfs replacement)
SUBSYSTEM=="usb_device", MODE="0664"
4. On your installed OS in Virtualbox Click on settings then go to USB then click on Add Filter you will see the connected USB Device you want to add
Last Updated ( Friday, 20 June 2008 )
Mamat Dance
Written by Kutch Villasor
Friday, 20 June 2008
I love the way my son dance...
Anti Virus on Linux Box
Written by Kutch Villasor
Tuesday, 06 May 2008
Everyone will say why you need Anti Virus on your Linux box? Well in this case the Linux box I installed is for File Server and mainly computers connected on it are Microsoft based and I don't want to format every time their Microsoft PC's. Here's what I did
I did fresh install Debian with Samba for file server and loaded approximately 200 GB of data files that contains Picture, Video, Documents and whole lot more from Microsoft box.
After the installation and file transfer I decided to install Anti-Virus and I decided to put ClamAV and just follow their instruction click here but I will simplify here;
you must be root
kutch@dorkbox:~$ su -
Password: ******
1. edit your source list kutch@dorkbox:~$ vi /etc/apt/sources.list
2. Just append this line deb http://volatile.debian.org/debian-volatile etch/volatile main contrib non-free
3. Update your Application Source
kutch@dorkbox:~$ apt-get update
4. Install the new ClamAV kutch@dorkbox:~$ apt-get install clamav
Now you are done all you have to do is Scan your transfered files before that check if you are up-to-date
kutch@dorkbox:~$ freshclam
freshclam is use to update your anti-virus, you should see output something like this
Reading CVD header (main.cvd): OK
main.inc is up to date (version: 46, sigs: 231834, f-level: 26, builder: sven)
Once you are up to date then you are ready to scan your files
kutch@dorkbox:~$ clamscan -v -r -i /folde_you_want_to_scan
After the scanning you will see result something like this
I just love this! How about passing a sensetive metal detector
Last Updated ( Thursday, 24 April 2008 )
Kutch house in Doha
Written by Kutch Villasor
Tuesday, 22 April 2008
Everyone is always asking where is my house. I would say I'm bit far from the City approximately 50 km and you can find me in the middle of desert. Here is the map;
There are many manuals or how-to everywhere in website, but in this case I will make it very KISS (Keep It Simple Stupid!)
ISSUE: I want to format a newly purchase hard drive to be a Linux ready file system (it can be IDE, SATA, SCSI) but in this case I use SATA 750 GB
SOLUTION:
1. First I plug SATA Hard Drive to it's proper SATA slots, in my case I plug to SATA3 coz SATA0,1,2 are occupied already. Remember when you plug your SATA you have to put power supply as well, there are two types of power supply now a days the white one a typical for IDE and the latest one is the black with many pins. Note: if you purchase SATA that has two power supply just plug only one.
I just came to office last Tuesday morning I got 3 phone calls that their data cannot be save to database and it is very slow. At first I was thinking it is another Microsoft issue again so I restarted the server and they can work again, but later (few hours passed by) same problem. So I decided to view the limited log files of Microsoft and just found out these;
DD is not destroy disk it was used by some people as jargons, DD means Data Definition it is good for doing a image of your hard drive. Some people ask what the heck is 'image your hard drive' you mean get a digital camera and take a snapshot? duh! it's not! image means you will have one-to-one copy of your hard drive to another hard drive or even in a single file.
Here some examples.
Scenario: I want to backup all my hard drive in my laptop to external USB hard drive as well I want to store in one single file
1. Get ready your external hard drive. [read more about getting ready your external USB hard drive]
2. Mount your hard drive
3. Go to the folder where you want to store the single image. kutch@dorkbox:~$ cd /media/KM33.P.250G
4. Run the DD command kutch@dorkbox:/media/KM33.P.250G$ sudo dd if=/dev/sdb1 of=kutch_laptop_DD.image