• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/30

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

30 Cards in this Set

  • Front
  • Back

What is a software package?

A software package is a compressed file that contains scripts, program files. And directories requited to install and run an application. The package also includes a list of software it depends on to run correctly. We could consider these packages similar to a .zip or .rar in windows.

What format do software packages come in in Arch Linux?

.tar

What format do software packages come in in CentOS and RedHat?

.rpm

What format do software packages come in in Ubuntu?

.deb

What command is used to install a package without using a package manager?

make install

What is a package manager?

A software that allows you to install, upgrade and remove packages. Package managers also allow the ability to easily search for available software


What does yum stand for?

Yellowdog updater modified.

List 3 pro's of package managers.

(1) Package managers can keep track of all files and folders that are created when installing a package.



(2) Package managers can find all software dependencies and install them.



(3) Do not release upgrades.

What is a con of package managers?

Release upgrades through package managers are not recommended.


What is a software dependency?

If we have two pieces of software: Software A and Software B, then for software A to function properly, software B needs to be installed on the computer


What are repositories? (4)

(1) Can be on the internet, CD/DVD's


(2) Can be located on your own local network (Company based repositories)


(3) Contain software packages


(4) Contains pre-compiled software for each specific distribution of Linu


What is a commonly used 3rd Party Repo?

RPM-Forge.

What is yum dependent on?

RPM.

What is RPM? (2)

(1) RPM can only process .rpm packages


(2) When YUM is required to process .rpm packages it runs RPM


What is the yum command to search for a package?

yum search

What is the yum command to list packages?

yum list

What is the yum command to list what provides a file?

yum what provides

What is the yum command to update packages?

yum update

What is the yum command to install a package?

yum install

What is the yum command to remove a package?

yum remove

What is the rpm command to find if a package is installed?

rpm -q

What is the rpm command to list what provides a file

rpm -qf

What is the rpm command to update packages?

rpm -U

What is the rpm command to install a package?

rpm -ivh

What is the rpm command to remove a package?

rpm -e

What is apt?

Advanced Packaging Tool


- Used in debian based OS's such as Ubuntu.

What is pacman?

Package Manager used in Arch Linux.

What are the yum commands for group package installs? (3)

(1) yum grouplist


(2) yum groupinfo 'groupname'


(3) yum groupinstall 'groupname'


What is the recommended format of the make & make install command?

# make && make install

What must be present to run the make commands?

A c compiler must be present to run the make commands.