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

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;

41 Cards in this Set

  • Front
  • Back
/
The root directory, which is designated by a forward slash ( / ), is the top-level directory in the hierarchy of directories (also referred to as the directory tree) on Unix-like operating systems. That is, it is the directory that contains all other directories and their subdirectories as well as all files on the system
/bin
/bin is by default in PATH, which is the list of directories that the system searches for the corresponding program when a command is issued. This means that any executable file (i.e., runnable program) in /bin can be run just by entering the file name at the command line and then pressing the ENTER key. The contents of PATH can be seen by using the echo command as follows:
/usr
/usr is shareable, read-only data. That means that /usr should
be shareable between various FHS-compliant hosts and must not be written to.
Any information that is host-specific or varies with time is stored elsewhere.
adduser command
useradd - Create a new user or update default new user information
cd
change directories
cd ..
Go up one directory
desktops
the working surface of a desk
Gnome
GNOME (pronounced /ˈnoʊm/[5] or /ɡˈnoʊm/[6]) is a desktop environment which is composed entirely of free and open-source software and targets to be cross-platform, i.e. run on multiple operating systems, its main focus being Linux kernel-based ones.[7]
KDE
KDE (/ˌkeɪdiːˈiː/) is an international free software community[1] producing an integrated set of cross-platform applications designed to run on Linux, FreeBSD, Solaris, Microsoft Windows, and OS X systems. It is known for its Plasma Desktop, a desktop environment provided as the default working environment on many Linux distributions, such as openSUSE, Mageia and Kubuntu and is default desktop environment on PC-BSD, a BSD operating system.[2]
Gzip
Linux provides several tools to compress files, the most common is gzip.
Gun-zip
The opposite of the gzip command is gunzip. Alternatively, gzip –d does the same thing (gunzip is just a script that calls gzip with the right parameters). After gunzip does its work you can see that the access_log file is back to its original size.
Home Directory
A home directory is a file system directory on a multi-user operating system containing files for a given user of the system.
ls Command
The ls command will provide useful examples. By itself, the ls command will list the files and directories contained in your current working directory:
password command
passwd

The passwd command changes passwords for user accounts. A normal user may only change the password for his or her own account, while the superuser may change the password for any account. passwd also changes the account or associated password validity period.
/dev/sbin
/sbin is a standard subdirectory of the root directory in Linux and other Unix-like operating systems that contains executable (i.e., ready to run) programs. They are mostly administrative tools, that should be made available only to the root (i.e., administrative) user.
su
super user command

In Linux and Unix like computer operating systems, root is the conventional name of the user who has all rights or permissions (to all files and programs) in all modes (single- or multi-user).
tar command
Archiving is the solution to this problem. The traditional UNIX utility to archive files is called tar, which is a short form of TApe aRchive. Tar was used to stream many files to a tape for backups or file transfer. Tar takes in several files and creates a single output file that can be split up again into the original files on the other end of the transmission.
What are the 3 modes of tar?
Create: make a new archive out of a series of files

Extract: pull one or more files out of an archive

List: Shows the conect of the archive without extracting
terminal window (usage)
A terminal window displays a prompt; the prompt appears when no commands are being run and when all command output has been printed to the screen. The prompt is designed to tell the user to enter a command.
GNU
Self-referentially, short for GNU's not UNIX, a UNIX-compatible software system developed by the Free Software Foundation (FSF). The philosophy behind GNU is to produce software that is non-proprietary. Anyone can download, modify and redistribute GNU software.
Useradd
useradd - create a new user or update default new user information
userdel
The userdel command removes the user account identified by the login parameter. The command removes a user's attributes without removing the user's home directory by default. The user name must already exist. If the -r flag is specified, the userdel command also removes the user's home directory.
fdisk
On Linux distributions, fdisk is the best tool to manage disk partitions. fdisk is a text based utility.

Using fdisk you can create a new partition, delete an existing partition, or change existing partition.
Cat Command
Clear access text

see the content of any text file
clear command
clears the terminal
runlevels
The term runlevel refers to a mode of operation in one of the computer operating systems that implement Unix System V-style initialization.
what are the run levels
- single-user mode
- multi-user mode without network services started
- multi-user mode with network services started
- system shutdown
- system reboot
Daemons
A daemon is a type of program on Unix-like operating systems that runs unobtrusively in the background, rather than under the direct control of a user, waiting to be activated by the occurance of a specific event or condition.
shawdow file
A. /etc/shadow file stores actual password in encrypted format for user's account with additional properties related to user password i.e. it stores secure user account information.
whoami
displays the user name of the current user
who
The who command prints information about all users who are currently logged in.
vi and vim
Even more dividing than the selection of shells is the choice of text editors. A text editor is used at the console to edit configuration files. The two main camps are vi (or the more modern vim) and emacs.
rm -r
deletes a directory and its contents
touch
creates a file
ped
process execution daemon


If a user or an application drops a file into this directory, ped parses the content and executes a given command.
chmod
change the permissions of
file
What are the 3 permission types for chmod
r = read
w = write
1 = execute
unmask
UMASK (User Mask or User file creation MASK)

is the default permission or base permissions given when a new file (even folder too, as Linux treats everything as files) is created on a Linux machine
cp
The cp command is used to copy files. It requires that you specify a source and a destination. The structure of the command is as follows:
mv
To move a file, use the mv command. The syntax for the mv command is much like the cp command:
Find Command
The find command is a very powerful tool that you can use to search for files on the filesystem.