1/24
Vocabulary flashcards covering Linux filesystem hierarchy, package managers (RPM, APT, YUM), and related installation/removal commands based on lecture notes for Week 5: Software Installation.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Filesystem Hierarchy Standard (FHS)
A standard outlining the directory structure and content in Linux file systems.
/ (Root Directory)
The primary hierarchy root and the parent of all other directories in the Linux filesystem.
/bin
Contains essential user binaries (executable programs) for all users.
/etc
Contains configuration files for various system-wide services and applications.
/home
Contains user home directories, where users store their personal files.
/mnt
A mount point for temporarily mounted filesystems.
/media
A mount point for removable media like USB drives and CD-ROMs.
/usr
Contains user binaries and read-only data, often larger applications and libraries.
/var
Contains variable data files, such as log files, mail queues, and temporary spool files.
/dev
Contains device files that represent hardware devices connected to the system.
/proc
A virtual filesystem that provides information about running processes and kernel state.
Package Managers
Tools used in Linux for installing, updating, configuring, and removing software packages.
RPM (RedHat Package Manager)
A package management system used by Red Hat-based Linux distributions.
APT (Advanced Package Tool)
A command-line tool for managing packages on Debian-based Linux systems.
apt update
A command used to update the package lists from the configured repositories.
apt install package_name
A command used to install a specified software package.
apt remove package_name
A command used to remove a specified software package.
YUM (Yellowdog Updater Modified)
A package management utility used on Red Hat-based systems, now largely replaced by DNF.
yum install package_name
A command used to install a specified software package on Red Hat-based systems.
yum remove package_name
A command used to remove a specified software package on Red Hat-based systems.
rpm -qa | grep telnet
A command to query all installed RPM packages and filter for those containing 'telnet'.
yum list
A command to list all available and installed packages on Red Hat-based systems.
yum list | grep telnet*
A command to list packages matching 'telnet' on Red Hat-based systems.
yum install telnet* -y
A command to install all packages matching 'telnet*' on Red Hat-based systems, automatically answering 'yes'.
yum remove telnet -y
A command to remove the 'telnet' package on Red Hat-based systems, automatically answering 'yes'.