click below
click below
Normal Size Small Size show me how
CIT222 Linux Ch 4
CIT222 Chapter 4- Linux Filesystem Management Key Terms
Question | Answer |
---|---|
/bin | The directory that contains binary commands for use by all users. |
/boot | The directory that contains the Linux kernel and files used by the boot loader data block. |
/dev | The directory that contains device files |
/etc | The directory that contains system-specific configuration files. |
/home | The default location for user home directories |
/lib | The directory that contains shared program libraries (used by the commands in /bin and /sbin) as well as kernel modules. |
/mnt | An empty directory used for accessing (mounting) disks, such as floppy disks and CD-Roms. |
/opt | The directory that stores additional software programs. |
/proc | The directory that contains process and kernel information. |
/root | The root users home directory |
/sbin | The directory that contains system binary commands (used for administration). |
/tmp | The directory that holds temporary files created by programs |
/usr | The directory that contains most system commands and utilities. |
/var | The directory that contains log files and spools. |
chgrp (change group) command | The command used to change the group owner of a file or directory |
chmod (change mode) command | The command used to change the mode (permissions) of a file or directory. |
cp (copy) command | The command used to create copies of files and directories. |
data blocks | A filesystem allocation unit in which the data that makes up the contents of the file as well as the filename are stored |
Filesystem Hierarchy Standard (FHS) | A standard outlining the location of set files and directories on a Linux system |
find command | The command used to find files on the filesystem using various criteria |
group | When used in the mode of a certain file or directory, the collection of users who have ownership of that file or directory |
hard link | A file joined to other files on the same filesystem that shares the same inode. |
inode | The portion of a file that stores information on the file's attributes, access permissions, location, ownership, and file type.q |
inode table | The collection of inodes for all files and directories on a filesystem |
interactive mode | The mode that file management commands use when a file can be overwritten; the system interacts with a user asking for the user to confirm the action. |
ln (link) command | The command used to create hard and symbolic links |
locate command | The command used to locate files from a file database. |
mkdir (make directory) command | The command used to create directories |
mode | The part of the inode that stores information on access permissions. |
mv (move) command | The command used to move/rename files and directories |
other | When used in the mode of a certain file or directory, it refers to all users on the Linux system. |
owner | The user whose name appears in a long listing of a file or directory and who has the ability to change permissions on that file or directory |
PATH variable | A variable that stores a list of directories that will be searched in order when commands are executed without an absolute or relative pathname. |
permissions | A list that identifies who can access a file or folder, and their level of access |
primary group | The default group to which a user belongs |
recursive | A term referring to itself and its own contents; a recursive search includes all subdirectories in a directory and their content |
rm (remove) command | The command used to remove files and directories |
rmdir (remove directory) command | The command used to remove empty directories |
source file/directory | The portion of a command that refers to the file or directory from which information is taken |
superblock | The portion of a filesystem that stores critical information, such as the inode table and block size. |
symbolic link | A pointer to another file on the same or another filesystem; commonly referred to as a shorcut. |
target file/directory | The portion of a command that refers to the file or directory to which information is directed. |
touch command | The command used to create new files. Originally used to update the timestamp on a file. |
umask | Special variable used to alter the permissions on all new files and directories by taking away select default file and directory permissions. |
umask command | Command used to view and change the umask variable |
user | When used in the mode of a certain file or directory, the owner of that file or directory |
which command | The command used to locate files that exist within directories listed in the path variable. |
chown | The command used to change the owner and group owner of a file or directory |