Category Archives: Microsoft Windows

Toshiba L40 install windows XP

Toshiba L40 has no bundling with windows XP, therefor you need to install windows XP by your self. Toshiba L40 satellite is not come with windows drivers for windows xp, vista or windows 7. You can get it all free by downloading at toshiba-asia.com At the first time installation of windows XP, Windows Installation cant [...]

How to Remove Exploit Blackhole kit and virus

Rootkit, blackhole, virus, trojans are small file that using Microsoft windows. This file is usually has DLL extension and activated using  registry. So, you need to deactivate or remove from the registry. HOW TO UN-REGISTRY DLL FILE : Go to “Start” and then click on “Run” Now in the Run command box, type “cmd“, and [...]

Task Schedule Win XP error

My task schedule on Windows XP has an error, the status says “Couldn’t start” An error has occurred attempting to retrieve task account information. You may continue editing the task object, but will be unable to change task account information. The specific error is: 0x8007000d: The data is invalid. The error message above was shown [...]

Resetting IP address

Resetting ip address is easy, Click Start-Run-Cmd then Use this command to reset your ip address netsh int ip reset resetlog.txt Then restart your computer

More Info about RAID

In the current generation motherboards, a lot of which is equipped with RAID functions, especially in high-end motherboard. But probably many of the viewers of this blog who do not know or understand about the technology. RAID, Redundant Array of Inexpensive (Independent) Disks, is a system consisting of several hard drive / drives. Simply put, [...]

Windows Share and Linux fstab

An easy way to use windows share in linux. First, you must create a directory to put the mounted windows shares. #  mkdir /mnt/win Then edit your fstab file # vi /etc/fstab and Add this line //winshares/music /mnt/win cifs user,uid=500,rw,suid,username=guest,password=freepass 0 0 Notice : //winshares/music is the windows share with music folder uid=500 is the [...]

Apache with Samba files or CIFS shared files

Web server and File server is good to be placed on different machine. In my case, I have web server running apache+php+mysql under Centos Box, and File Server is on Windows Advanced Server 2000. The problem is apache cannot read the php file in Windows server. All I have done : I added line at [...]

Mount NTFS using CentOS – plus

If you have tried all step to mount NTFS file system from all resource you got from internet, then the last try you have to do is install the CentOSplus kernel into your box. Download the packages from http://mirror.centos.org/centos/5/centosplus/i386/RPMS/ # rpm -ivh kernel-xen* This process will take a minutes, please be patient. After all done, [...]

Failed to mount NTFS on CentOS

# mount -t ntfs /dev/hdc1 /mnt/hardisk1 mount: unknown filesystem type ‘ntfs’ This message appears when you try to mount the media with ntfs filesystem. Somehow the default centos kernel doesnt support it, you may upgrade to centosplus or try to configure your box as follows: yum install fuse fuse-ntfs-3g dkms dkms-fuse or download the packages [...]