The Linux Filesystem
/ - The Root Directory System root /bin - User Binaries In single user mode this is where user apps such as firefox etc are stored /sbin is similar in that is is where administration binaries are stored. /boot - Static Boot Files GRUB, linux kernels are stored here, needed to be able to boot the system. Config for boot is stored in /etc /dev - Device Files Devices are exposed as files. Eg /dev/sda represents the first SATA drive. It also contains psuedo-devices. For example: /dev/random produces random numbers. /dev/null returns no output and discards all input. /etc - Configuration Files Contains systems wide configuration files. User specific config files live in each users /home/{user} folder /home - Home Folders User specific files and user specific configuration. /lib - Shared Libraries Contains essential libraries consumed by binaries in /bin and /sbin. /usr/lib contains libraries consumed by binaries in /usr/bin /lost+found Recovered Files On system crash, recovered file...