lsList the contents of the current directory
ls nameList the contents of the named directory (eg. ls /etc)
ls -lList the directory contents in "long" format, including file permissions, ownership details and file size
ls -aList all the files in a directory, including files that start with a '.'
cat filenameDisplay the contents of a file to the screen
more filenameDisplay a file on the screen, with scrolling and search facilities.
less is an enhanced version of more
cp source destinationCopy the source file to the destination (eg. cp /etc/passwd .
copies the password file to the current directory)
mv source destinationMove the source file to the destination, which can be a directory or another file
rm filenameRemove (or delete) a file - use with caution!
mkdir nameMake a directory
rmdir nameRemove an empty directory
locate keywordDisplays a list of files that contain the keyword in their filename.
suTemporarily become the superuser - useful for system administration tasks
passwdChange the password used to access your user account
whoDisplay a list of users currently logged onto this computer