.deb
パッケージアーカイブに関する情報を取得するには?
例:パッケージ情報、バージョン、インストールサイズ、アーキテクチャ、説明、および特許.deb
パッケージアーカイブなどの情報は何ですか?
答え1
あなたはそれを使用することができますdpkg-deb
Debianパッケージアーカイブ(.deb)を操作するためのコマンドです。
マンページから:-
-I, --info archive [control-file-name...]
Provides information about a binary package archive.
If no control-file-names are specified then it will print a summary of the contents of the package as
well as its control file.
If any control-file-names are specified then dpkg-deb will print them in the order they were specified;
if any of the components weren't present it will print an error message to stderr about each one and
exit with status 2.
使用例:-
$ dpkg-deb -I intltool_0.50.2-2_all.deb
new debian package, version 2.0.
size 52040 bytes: control archive=1242 bytes.
831 bytes, 19 lines control
1189 bytes, 18 lines md5sums
Package: intltool
Version: 0.50.2-2
Architecture: all
Maintainer: Ubuntu Developers <[email protected]>
Original-Maintainer: Debian GNOME Maintainers <[email protected]>
Installed-Size: 239
Depends: gettext (>= 0.10.36-1), patch, automake | automaken, perl (>= 5.8.1), libxml-parser-perl, file
Provides: xml-i18n-tools
Section: devel
Priority: optional
Multi-Arch: foreign
Homepage: https://launchpad.net/intltool
Description: Utility scripts for internationalizing XML
Automatically extracts translatable strings from oaf, glade, bonobo
ui, nautilus theme and other XML files into the po files.
.
Automatically merges translations from po files back into .oaf files
(encoding to be 7-bit clean). The merging mechanism can also be
extended to support other types of XML files.
コンテンツは次のようにリストできます。dpkg-deb -c
:-
使用例:
$ dpkg-deb -c libnotify-bin_0.7.6-1ubuntu3_i386.deb
drwxr-xr-x root/root 0 2014-02-22 05:24 ./
drwxr-xr-x root/root 0 2014-02-22 05:24 ./usr/
drwxr-xr-x root/root 0 2014-02-22 05:24 ./usr/bin/
-rwxr-xr-x root/root 9764 2014-02-22 05:24 ./usr/bin/notify-send
drwxr-xr-x root/root 0 2014-02-22 05:24 ./usr/share/
drwxr-xr-x root/root 0 2014-02-22 05:24 ./usr/share/man/
drwxr-xr-x root/root 0 2014-02-22 05:24 ./usr/share/man/man1/
-rw-r--r-- root/root 773 2014-02-22 05:24 ./usr/share/man/man1/notify-send.1.gz
drwxr-xr-x root/root 0 2014-02-22 05:24 ./usr/share/doc/
drwxr-xr-x root/root 0 2014-02-22 05:25 ./usr/share/doc/libnotify-bin/
-rw-r--r-- root/root 1327 2011-07-31 03:11 ./usr/share/doc/libnotify-bin/copyright
lrwxrwxrwx root/root 0 2014-02-22 05:25 ./usr/share/doc/libnotify-bin/AUTHORS -> ../libnotify4/AUTHORS
lrwxrwxrwx root/root 0 2014-02-22 05:25 ./usr/share/doc/libnotify-bin/NEWS.gz -> ../libnotify4/NEWS.gz
lrwxrwxrwx root/root 0 2014-02-22 05:25 ./usr/share/doc/libnotify-bin/changelog.Debian.gz -> ../libnotify4/changelog.Debian.gz
ライセンス情報を入手する: -
ほとんどのファイル著作権情報は以下で提供されます。/usr/share/doc/<pkgname>/copyright
例:-
$ dpkg-deb -c gparted_0.18.0-1_i386.deb | grep -i copyright
-rw-r--r-- root/root 1067 2011-12-08 00:34 ./usr/share/doc/gparted/copyright
抽出-x
して参照してください。特許それに従ってリリースされます。
ここ:-
$ cat /usr/share/doc/gparted/copyright | grep -i ^license -A 5
License:
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 dated June, 1991.
詳細については、以下を実行してください。man dpkg-deb
。
答え2
これを行うために使用できますdpkg -f (archive) (field name)
。
例:
dpkg -f archive.deb Version
dpkg -f archive.deb Package
可能なフィールド名を取得するには:
dpkg --info archive.deb
答え3
からインスピレーションを受けるhttps://sleeplessbeastie.eu/2018/03/05/how-to-display-dependent-for-deb-package/:
他のシステムでハングしてdpkg / dpkg-debにアクセスできない場合、クイックハッキング方法はbinutilsからarとtarの組み合わせを使用して必要なファイル/情報を抽出することです。たとえば、win-64の場合は、condaを介してインストールできます。
conda install -c msys2 m2w64-binutils
conda install -c msys2 m2-tar
コントロールファイル情報の抽出例:
ar -x <input_file.deb> control.tar.gz
tar --to-stdout --gzip --extract --file control.tar.gz ./control
ライセンス情報の抽出例(Pandyaの回答を参照)
ar -x gparted_0.18.0-1_i386.deb data.tar.bz2
tar --to-stdout --bzip2 --extract --file data.tar.bz2 ./usr/share/doc/gparted/copyright
.debに何があるかわからない場合は、次のものを使用できます。
ar -t <input_file.deb>
パッケージファイル内のすべてのファイルを一覧表示