• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/16

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

16 Cards in this Set

  • Front
  • Back
/

The root directory

This is where your directory structure starts. Everything is housed under the root directory.
/bin
Essential user command binaries used for general operations: Copy, show directory, etc. (ls, cp, and cat – we'll get to these commands soon)

/boot

Static files of the boot loader. Files here are necessary for a Linux system to start (Kernel & GTUB information)

/dev

Where the device files are located

/etc

Configuration files for all programs. Things like an apache web server, users & groups on your system, or printer configuration. Think of this as a control panel for Windows users. We will edit these text files later (These files should remain static and text based).

/home

Home directories for all the users to store personal files (i.e. /home/roman) –Windows equivalent of Documents & Settings.

/lib

Essential shared libraries and kernel modules

/media

Mount point for removable media

/mnt

Temporary mounted file systems
/opt
Add on application software packages – (i.e. Program files for windows users)

/sbin

Essential system binaries

/tmp

Programs write their temporary files here.

/usr

Multi-user utilities & Applications. It contains application source codes, documentation, & config files they use. It's the largest directory on the system.

/var

Variable data on a system. Data that will change as the system is running (Log files, backups, cache, etc.)

/root

Home directory for root

/proc

Virtual directory containing process information (system memory, hardware configuration, devices mounted, etc.)