Package Management Commands

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/22

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 4:03 PM on 5/21/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

23 Terms

1
New cards

What two forms is Linux software available in?

source code and pre-compiled applications

2
New cards

What do source code packages require?

compilation with the appropriate compiler and options

3
New cards

How are pre-compiled packages installed?

using a package manager

4
New cards

Which package manager is used by Debian-based distributions, and what package format does it use?

APT and .deb

5
New cards

Which package manager is used by Red Hat-based distributions, and what package format does it use?

DNF and .rpm

6
New cards

What is DNF the successor to, and what does it offer?

YUM; improved performance and better dependency management

7
New cards

What does a Linux distribution include?

precompiled software packages deemed appropriate by the vendor or sponsor

8
New cards

Where are distribution packages and updates posted?

software repositories

9
New cards

What kinds of repositories do vendors often maintain?

stable, beta, and unsupported packages

10
New cards

What must package managers be configured with?

the web addresses of desired repositories

11
New cards

What do package managers handle?

installing, uninstalling, and updating software

12
New cards

How is package integrity verified before installation or updates?

cryptographic hashes or signatures such as MD5, SHA-256, or GPG

13
New cards

What command refreshes package information with apt?

apt update

14
New cards

What command upgrades all packages with apt?

apt upgrade

15
New cards

What command installs a new application with apt?

apt install PackageName

16
New cards

What older command may you encounter on older systems or in scripts for similar APT functionality?

apt-get

17
New cards

What command refreshes package information with apt-get?

apt-get update

18
New cards

What command upgrades all packages with apt-get?

apt-get upgrade

19
New cards

What command refreshes package information with dnf?

dnf check-update

20
New cards

What commands upgrade all packages with dnf?

dnf update or dnf upgrade

21
New cards

Which term is preferred in modern DNF usage: update or upgrade?

upgrade

22
New cards

What command installs a new application with dnf?

dnf install PackageName

23
New cards

What command removes an application with dnf?

dnf remove PackageName