How do I?

How do I change directories?

Type: cd <directory name> (Move
to another directory)

Type: cd .. (Move back a directory)

How do I check permissions on a file?

Type: ls -l (Will show permissions for all files in directory)

How do I check disk space?

Type: df -m (Will show all free space info for all drives)

How do I see all the files in a directory?

Type: ls

How do I check all running services?

Type: ps -xa

How do I view the contents of a text file?

Type: cat <filename>

How do I edit a file?

Type: pico <filename>
OR
Type: nano <filename>

depending on which one is installed.

How do I know what my CPU Information is?

Type: cat /proc/cpuinfo

How do I know what my memory information is? RAM

Type: cat /proc/meminfo

How do I find out information about my hard drives?

Type: fdisk -l