27. May 2009

0 Comments

Change your windows product key

This will show you how to change your windows XP product key code Press start, go to run and type in regedit Navigate your way to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\WPAEvents Doube click on OOBETimer and change any of the values Once changed you can exit regedit Then press start, run and this time type in "C:\windows\system32\oobe\msoobe.exe /a" [...]

Continue reading...

25. May 2009

0 Comments

Elements made easy

XRAY is a bookmarklet that will allow you to quickly and easily view the elements of a webpage Drag Xray to your bookmarks tab XRAY Load any webpage Click on the xray bookmark Then click on any element and it will show you all its css values

Continue reading...

23. May 2009

0 Comments

Creating aliases in bash

Are you tired off typing out full commands? if so aliases can save you time. They allow you to shorten long commands down into one word. To add a alias edit ~/.bashrc nano ~/.bashrc Then come to the bottom of that file and add your aliases like this: alias rm = "rm -i" alias lightyrestart [...]

Continue reading...

8. May 2009

1 Comment

Setting up a DNS Server for your LAN Network

This tutorial will show you how to configure bind9 on debian to be a dns server for your LAN network. Install bind9 and some DNS utilities apt-get install bind9 dnsutils Set your systems hostname echo "server.home.local" > /etc/hostname then edit /etc/hosts so it looks like this 127.0.0.1 localhost.localdomain localhost 192.168.1.2 server.home.local server # The following [...]

Continue reading...

6. May 2009

0 Comments

Linux Basic Commands

Starting and Stopping poweroff will shutdown the system reboot will restart the system Mounting and unmounting fdisk -l gives a list of all drives mount /dev/hdd /mnt would mount the hard drive in /mnt umount /dev/hdd would unmount the hard drive Moving, copying, deleting & viewing files ls will output all the files in the [...]

Continue reading...
Page 10 of 12« First...89101112