to learn some ropes..
try taking a look at all the possible commands you have installed - you can do this by holding the 'escape' key for three seconds, and say Yes to Display All Possibilitles.
then pick one that looks interesting, like ssh, and type 'man ssh', which will bring up a manual page for that command. the manpages are a little techy, but you'll get an idea what they're for.
some fun ones to start with:
top - displays all current processes
ps aux - same thing but a snapshot
netstat - shows all network activity
there's also some really helpful ones in there, like grep, which searches through a specific input and looks for a certain set of characters, but it's really flexible and has a lot of customizable options. it can also take input from other commands by using the pipe command or |. so you could do:
netstat | grep udp4
which will show you all the udp4 connections currently active on your computer.
hope this helps for starters!
np