Chapter 5 Flashcards
ACL
An access control list (ACL) is a list of users or groups and the permissions they’re given. Linux ACLs, like Linux owner, group, and world permissions, consist of three permission bits, one each for read, write, and execute permissions. The file’s owner can assign ACLs to an arbitrary number of users and groups, making ACLs more flexible than Linux permissions, which are limited to groups defined by the system administrator.
cp
The cp command copies a file.
cpio
cpio
The cpio program is similar in principle to tar, but the details of its operation differ. As with tar, you can direct its output straight to a tape device or to a regular file. Backing up to a tape device can be a convenient way to back up the computer because it requires no intermediate storage. To restore data, you use cpio to read directly from the tape device file or from a regular file.
Disk quota
A limit on the amount of disk space that an individual or group may use.
FAT
FAT
A simple filesystem using a table to index files on a block device (floppy or hard disk). It comes in the varieties of FAT-12 (MS-DOS), FAT-16 (MS-DOS, MS-Windows 3.x) and “FAT-32” (MS-Windows 9x).
FHS
A standard that defines the names and contents of critical directories in a Linux filesystem (meaning 2).
File globbing
The process of wildcard expansion-for instance, matching the existing file glossary.txt when the string glos*.txt is typed. Also called globbing.
Filesystem Hierarchy Standard (FHS)
A standard that defines the names and contents of critical directories in a Linux filesystem (meaning 2).
Filesystem Standard (FSSTND)
An early attempt to define the names and contents of critical directories in a Linux filesystem (meaning 2). The FSSTND has been supplanted by the FHS.
FSSTND
An early attempt to define the names and contents of critical directories in a Linux filesystem (meaning 2). The FSSTND has been supplanted by the FHS.
GID
A number associated with a particular group. Similar to a user ID (UID).
Globbing
Filename expansion using asterisks (*), question marks (?), and so on is sometimes called globbing.
Group ID (GID)
A number associated with a particular group. Similar to a user ID (UID).
Hard Link
A directory entry for a file that has another directory entry. All hard links are equally valid ways of accessing a file, and all must be deleted in order to delete a file. See also soft link.
Incremental backup
Incremental backup
A type of backup in which only files that have changed since the last backup are backed up. This is used to reduce the time required to back up a computer, at the cost of potentially greater restoration complexity.