• 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/17

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;

17 Cards in this Set

  • Front
  • Back

dpkg

Command used to manually install individual .deb packages outside of a repo download.




This utility will does not automatically install dependencies, although it will list those that are missing as part of the output.

apt-get install -f

Resolves missing dependencies. Running this command after .deb package installation will download and install the missing dependencies.

apt-get install {debian package}.deb

Will allow for apt-get to scan for dependencies and install and configure them as part of the process.

dpkg -i {package}.deb

Installs a debian package, dependencies not included. May require to be run as sudo/root, different for each package

dpkg --get-selections

Shows all installed packages on the system. When looking for a specific package, follow with '|grep {text}' to filter.

dpkg -L {package name}

Lists all the files that were installed along with the package name as well as their location on the system.

dpkg -C

Audits for partially installed packages.

dpkg --remove {package name}

Removes the referenced package, but just as with the install, dependencies will not be removed.

dpkg --purge {package name}

Will purge the package, along with all configuration files related to that package during a removal.

dpkg --reconfigure {package name}

Will allow the reconfiguration, including the configuration of the files references.

dselect

A high-level package browser. Allows selection and installation/removal of packages in a terminal using an 'ncurses' menu system.

aptitude

Another high level package browser that is similar to dselect.




It can be used as a replacement for apt-get as it does everything that apt-get does, including install and manage dependencies.

aptitude update

Will update sources.

aptitude search

Will search for the package indicated.

aptitude autoclean

Same as apt-get clean

aptitude remove

Same as apt-get remove

aptitude autoremove

Same as apt-get autoremove