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

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;

49 Cards in this Set

  • Front
  • Back
FHS
Filesystem Hierarchy Standard
mount
To mount a file system, enter the command mount, specifying the device file and the directory to which the file ssystem should be mounted
mount point
the directory to which a device is mounted / only the user root can mount and unmount directories
umount
A file system can be removed again with the command umount
library
specific functions that are also used by other programs / Stored in the /lib/ directory
fstab
"File system table" is a file in /etc/ that holds a table of all disks and partitions and shows how each are intialized
mtab
mount command shows the exact same thing / shows the file systems which are currently mounted
files
normal files / refer to the files as they are also known to other operating systems: a set of contiguous data addressed with one name
directories
special files that are used to organize other files on the filesystem
device files
a file used to identify hardware devices such as hard disks and serial ports
links
files that point to other files on the filesystem
sockets
named pipes connecting processes on two different computers; they can also be represented by files on the filesystem
FIFO
FIRST IN FIRST OUT - named pipes are also caled FIFO files / named pipes are temporary connections that send info one one command or process in memory to another
ls
lists the specified files in a directory
cd
changes the directory
pwd
"print working directory" displays the path of the current directory
touch
changes the time stamp of a file or creates a new file with a size of 0 bytes
cat
view the contents of a file
less
view the contents of a file by page / compress files can also be viewed
head
view only the first few lines of a file / default 10
tail
viewthe last few lines of a file / default is 10 / use -f to see continuous
mv
used to move one or more files to another directory
cp
copy files and directories
mkdir
create a new directory / use -p to create a complete path
rmdir
deleted a direcotry or set of directories / directories must be empty first
rm
can deleted a single file or delete all files in a directory / using -r option will delete the directory
ln
creates a link to reference a file
KFind
a program that can be started in Konqueror for find a file
find
very powerful finding command / file path criteria action /used often with grep
locate
an alternative to 'find -name' / a much faster way of searching because a special database
whereis
retruns the binaries -b, manual pages -m, and the source code -s of a specified command
which
searches all paths listed in the variable PATH for the specified command and returns the full path of the command
type
used find out what kind of command is executed when the command is entered - a shell built-in command or an external command
grep
used to search files for certain patterns using the syntax 'grep search_pattern filename'
regular expression
strings consisting of metacharacters and literals(regular characters and numerals)
ark
lets you collect multiple files or even entire directories into an archieve / used for backing up data / preparing data to be sent via email
tar
tape archiver' / most commonly used tool for data backup / uses file name .tar.gz or .tgz
gzip
used to compress data / 'gzip options_file'
gunzip
decompresses a file compressed with gzip and removes the suffix .gz
bzip2
compresses files / usually twenty to thirty perecent smaller than the files compressed with gzip
bunzip2
decompresses files compressed with bzip2 and removes the suffix bz2.
zcat
decompresses files compressed with gzip and writes them to the standard output / the compressed file is not modified
cpio
copies files into or out of a cpio or tar archieve / 3 modes
rsync
remote synchronization' - creates copies of complete directories across a network to a different computer
dd
converts and copies files byte-wise / 'dd if=/etc/protocols of=protocols.org
mt
lets you work with magnetic tapes
cron
automate backup from the command line
crontab
used to schedule commands using the cron service
zcat
used to view the contents of text files that have been compressed with gzip