A few minor corrections:
ln sourceName destDirectory create symbolic link to a file
Should be:
ln -s source destination (the -s switch denotes a symbolic link)
sh the standard Unix shell, bash
Should be:
sh is the standard UNIX shell.
bash is the Bourne Again SHell, standard on most Linux systems. UNIX doesn't come with bash, unless it's installed seperately.
Handy Linux Sys Admin Commands
mount /mnt/floppy mounts the floppy fs
Should be:
mount /mnt/floppy mounts the floppy device (if /mnt/floppy is the mountpoint)
mount /mnt/cdrom mounts the cd-rom fs
Should be:
mount /mnt/cdrom mounts the CD-ROM device (if /mnt/cdrom is the mountpoint)
shutdown -r "now" restarts the machine
Should be:
shutdown -r now (no quotes)
or even reboot on some systems
update db update file database used by locate command
Can also be:
updatedb or /usr/libexec/locate.updatedb