COP 3350 - Week 5.2: Software Installation

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/24

flashcard set

Earn XP

Description and Tags

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.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

25 Terms

1
New cards

Filesystem Hierarchy Standard (FHS)

A standard outlining the directory structure and content in Linux file systems.

2
New cards

/ (Root Directory)

The primary hierarchy root and the parent of all other directories in the Linux filesystem.

3
New cards

/bin

Contains essential user binaries (executable programs) for all users.

4
New cards

/etc

Contains configuration files for various system-wide services and applications.

5
New cards

/home

Contains user home directories, where users store their personal files.

6
New cards

/mnt

A mount point for temporarily mounted filesystems.

7
New cards

/media

A mount point for removable media like USB drives and CD-ROMs.

8
New cards

/usr

Contains user binaries and read-only data, often larger applications and libraries.

9
New cards

/var

Contains variable data files, such as log files, mail queues, and temporary spool files.

10
New cards

/dev

Contains device files that represent hardware devices connected to the system.

11
New cards

/proc

A virtual filesystem that provides information about running processes and kernel state.

12
New cards

Package Managers

Tools used in Linux for installing, updating, configuring, and removing software packages.

13
New cards

RPM (RedHat Package Manager)

A package management system used by Red Hat-based Linux distributions.

14
New cards

APT (Advanced Package Tool)

A command-line tool for managing packages on Debian-based Linux systems.

15
New cards

apt update

A command used to update the package lists from the configured repositories.

16
New cards

apt install package_name

A command used to install a specified software package.

17
New cards

apt remove package_name

A command used to remove a specified software package.

18
New cards

YUM (Yellowdog Updater Modified)

A package management utility used on Red Hat-based systems, now largely replaced by DNF.

19
New cards

yum install package_name

A command used to install a specified software package on Red Hat-based systems.

20
New cards

yum remove package_name

A command used to remove a specified software package on Red Hat-based systems.

21
New cards

rpm -qa | grep telnet

A command to query all installed RPM packages and filter for those containing 'telnet'.

22
New cards

yum list

A command to list all available and installed packages on Red Hat-based systems.

23
New cards

yum list | grep telnet*

A command to list packages matching 'telnet' on Red Hat-based systems.

24
New cards

yum install telnet* -y

A command to install all packages matching 'telnet*' on Red Hat-based systems, automatically answering 'yes'.

25
New cards

yum remove telnet -y

A command to remove the 'telnet' package on Red Hat-based systems, automatically answering 'yes'.