Linux dpkg命令

dpkg命令是Debian Linux系统用来安装、创建和管理软件包的实用工具。

主要用来处理后缀名是.deb的文件。

一般使用 dpkg -i FileName来安装.deb的文件。

详细语法如下:
  -i|--install       <.deb file name> ... | -R|--recursive ...
  --unpack           <.deb file name> ... | -R|--recursive ...
  -A|--record-avail  <.deb file name> ... | -R|--recursive ...
  --configure        ... | -a|--pending
  --triggers-only    ... | -a|--pending
  -r|--remove        ... | -a|--pending
  -P|--purge          ... | -a|--pending
  -V|--verify ...        Verify the integrity of package(s).
  --get-selections [ ...] Get list of selections to stdout.
  --set-selections                 Set package selections from stdin.
  --clear-selections               Deselect every non-essential package.
  --update-avail [] Replace available packages info.
  --merge-avail []  Merge with info from file.
  --clear-avail                    Erase existing available info.
  --forget-old-unavail             Forget uninstalled unavailable pkgs.
  -s|--status ...        Display package status details.
  -p|--print-avail ...   Display available version details.
  -L|--listfiles ...     List files 'owned' by package(s).
  -l|--list [ ...]        List packages concisely.
  -S|--search ...        Find package(s) owning file(s).
  -C|--audit [ ...]       Check for broken package(s).
  --yet-to-unpack                  Print packages selected for installation.
  --predep-package                 Print pre-dependencies to unpack.
  --add-architecture         Add to the list of architectures.
  --remove-architecture      Remove from the list of architectures.
  --print-architecture             Print dpkg architecture.
  --print-foreign-architectures    Print allowed foreign architectures.
  --assert-               Assert support for the specified feature.
  --compare-versions   Compare version numbers - see below.
  --force-help                     Show help on forcing.
  -Dh|--debug=help                 Show help on debugging.

  -?, --help                       Show this help message.
      --version                    Show the version.

你可能感兴趣的:(Ubuntu系统相关)