zoukankan      html  css  js  c++  java
  • Common dpkg commands

    Common dpkg commands

    dpkg -i <package.deb> Installs a package file; one that you downloaded manually, for example.

    dpkg -c <package.deb> Lists the contents of <package.deb> a .deb file.

    dpkg -I <package.deb> Extracts package information from <package.deb> a .deb file.

    dpkg -r <package> Removes an installed package named <package>

    dpkg -P <package> Purges an installed package named <package>. The difference between remove and purge is that while remove only deletes data and executables, purge also deletes all configuration files in addition.

    dpkg -L <package> Gives a listing of all the files installed by <package>. See also dpkg -c for checking the contents of a .deb file.

    dpkg -s <package> Shows information on the installed package <package>. See also apt-cache show for viewing package information in the Debian archive and dpkg -I for viewing package information extracted from a .deb file.

    dpkg-reconfigure <package> Reconfigures an installed package

    man dpkg Will give you more info on these commands as well as many that are in less common usage.

  • 相关阅读:
    Markdown常用语法
    课程及资源链接
    cpa-会计
    高管具备的能力
    JDK并发包-copy
    Guava工具类学习-copy
    java开发注解大全-copy
    Codeforces Round #703 (Div. 2)
    [ABC200E] Minflip Summation
    Codeforces Round #720 (Div. 2)
  • 原文地址:https://www.cnblogs.com/sunth/p/2328430.html
Copyright © 2011-2022 走看看