• 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/70

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;

70 Cards in this Set

  • Front
  • Back

The interpreter that executes commands typed as strings.

Shell

The visual cue that indicates an interactive shell is waiting for the user to type a command.

Prompt

The name of a program to run.

Command

The part of the command line that adjusts the behavior of a command.

Option

The part of the command line that specifies the target that the command should operate on.

Argument

The hardware display and keyboard used to interact with a system.

Physical Console

One of multiple logical consoles that can each support an independent login session.

Virtual Console

An interface that provides a display for output and a keyboard for input to a shell session.

Terminal

Jump to the beginning of the previous word on the command line.

Ctrl+Left Arrow

Separate commands on the same line. Ctrl+Left

;

Clear from the cursor to the end of the command line.

Ctrl+k

Re-execute a recent command by matching the command name.

!string

Shortcut used to complete commands, filenames, and options.

Tab

Re-execute a specific command in the history list.

!number

Jump to the beginning for the command line.

Ctrl+a

Display the list of previous commands.

history

Copy the last argument of previous commands.

Esc+.

This is directory contains static, persistent system configuration data

/etc

This is the system's root directory.

/

User home directories are located under this directory.

/home

This is the root account's home directory.

/root

This directory contains dynamic configuration data, such as FTP and websites.

/var

Regular user commands and utilities are located here.

/usr/bin

System administration binaries, for root use, are here.

/usr/sbin

Temporary files are stored here.

/tmp

Contains dynamic, non-persistent application runtime data.

/run

Contains installed software programs and libraries.

/usr

List the current user's home directory (long format) in simplest syntax, when it is not the current location.

Is -I (ñ)

Return to the current user's home directory.

cd

Determine the absolute path name of the current location.

pwd

Return to the most previous working directory.

cd -

Move up two levels from the current location.

cd../..

List the current location (long format) with hidden files.

ls -al

Move to the binaries location, from any current location.

cd /bin

Move up to the parent of the current location.

cd ..

Move to the binaries location, from the root directory.

cd bin

Only filenames beginning with "b"

b*

Only filenames ending in "b"

*b

Only filenames containing a "b"

*b*

Only filenames where first character is not "b"

[!b]*

Only filenames at least 3 characters in length

???*

Only filenames that contain a number

*[[:digit:]]*

Only filenames that begin with an upper-case letter

[[:upper:]]*

Display command output to terminal, ignore all errors.

2>/dev/null

Send command output to file; errors to different file.

>file 2>file2

Send output and errors to the same new, empty file.

&>file

Send output and errors to the same file, but preserve existing file content.

»file 2>&1

Run a command, but throw away all possible terminal displays.

&>/dev/null

Send command output to both the screen and afile at the same time.

| tee file

Run command, save output in a file, discard error messages.

> file 2> /dev/null

A number that identifies the user at themost fundamental level

UID

The program that provides the user'scommand line prompt

login shell

Location of local group information

/etc/group

Location of the user's personal files

home directory

A number that identifies the group at themost fundamental level

GID

Location of local user account information

/etc/passwd

The fourth field of /etc/passwd

primary group

is owned by fred and readable by all users

is owned by fred and readable by all users

rfile1

Contents may be modified by the user betty

Contents may be modified by the user betty

lfile2

Can be deleted by the user fred

Can be deleted by the user fred

all

Cannot be read by the user barney

Cannot be read by the user barney

rfile2

Has a group ownership of wilma

Has a group ownership of wilma

lfile1

Can be deleted by the user barney

Can be deleted by the user barney

none

Process has been stopped temporarily

T

Process has just been terminated

Z

Process is scheduled but is not yet on a CPU

R

Process is waiting for I/O

S

Process is uninterruptible waiting for a device to respond

D

Process is at a prompt needing user input

S

Process is executing a system call

R