Hi, I thought that I'd post a few general links to help you with the day to day running of your linux servers..
firstly a link to putty.
Putty is a secure shell for windows - it lets you open an encrypted session to your server. (IMHO the best thing you can install on a windows machine)
download putty from here
a list of a few good commands to help you navigate around comes next...
mc - a norton commander clone, think file manager for the shell
top - shows the running processes on the machine
dmesg - shows the system messages
dmesg | grep statement - this will search through dmesg and display only the lines that contain 'statement' - change 'statement' to anything you want.
uname -a - this will list the details about your kernel - very usefull sometimes
cat /proc/cpuinfo - will list all the info about your cpu
cat /proc/cpuinfo | more - will list your cpu info one screen-full at a time
nmap 127.0.0.1 (if nmap is installed) will do a port scan of your own machine, this will tell you all the services running (so that you can shut down services that you don't need, or want)
finally, a link to a site that will help you lock down your box.
what IBM has to say about hardening linux
there are a lot more things to think about, but if you are new, then these should at least help a little.