- /boot: the second stage of your bootloader and various other things needed to boot your system reside here.
- /root: the root user's (aka system administrator) home directory.
- /proc: a virtual directory that the kernel presents for you to probe information about your hardware. (eg. cat /proc/cpuinfo)
- /bin: most executable programs and scripts are located here. sometimes /usr/bin.
- /sbin: most executable programs and scripts that are exclusively for privledged users are located here. sometimes /usr/sbin.
- /etc: most config files and application settings are stored here.
- /home: the home directories for all users (except root) are under this directory and they are named by username (eg. /home/fred)
These "directories" can be mount points to other devices. For example, "/home" is frequently hosted on a separate disk partition
like "/dev/hdb1". This is called mounting a device under a specified mount point. The mount point is the directory "/home" and
the device is "/dev/hdb1". This can allow you to reinstall your entire operating system without overwriting
your users' application settings. It also prevents your machine from crashing when some rogue user decides to
download 150GB of mp3s of videos into his/her home directory and your machine runs out of swap space. On that same note, swap
space is also a seperate partition with it's own "filesystem" or lack thereof.