dpkg=ffmpeg-cvs_1.1-1_i386.deb
packages that contain files named like this
packages that contain files or directories named like this
packages that contain files or directories whose names contain the keyword
http://www1.apt-get.org/search.php?query=dmix # &submit=&arch%5B%5D=i386&arch%5B%5D=all
documented on: 2004.08.19
dpkg=ffmpeg-cvs_1.1-1_i386.deb
dpkg --contents $dpkg | less
NB, use 'dpkg —contents' to list their contents.
Get a list of all JVMs available in Debian:
grep-available -F Provides -sPackage java-virtual-machine
To see the list of Java packages in main (i.e., not contrib and non-free), try:
grep-available -F Depends -sSection,Package java | paste -sd " \n" | \ grep -v contrib | grep -v non-free | sort
ara -interactive
ara -nowrap -fields Package,Tag -table 'status:/^install/' -noborders ara -nowrap -fields Package,Priority,Size,Section,Tag,Depends -raw 'status:/^install/' | less ara -nowrap -fields Size,Package -table 'status:/^install/' -noborders | sort -nr | less
ara -help ara -examples
less /var/lib/dpkg/available
Command line utility for searching the Debian package database
CLI utility for searching the Debian package database
ara is a utility for searching the Debian package database using boolean regexp queries.
ara can perform sophisticated searches on that database. It is possible to use any field of the package database as a search criterion and any boolean combination thereof.
ara can also call APT (or any use-configurable command) to install or remove packages matching a query.
This is the native CLI version. Faster than the bytecode CLI one.
Usage: ara <options or queries ...> -examples Display some documentation including examples exit. -interactive Interactive mode ; prompt for a query, display it. -i Same as -interactive. -noconfig Don't attempt to create a configuration file. -nohistory Don't save command history. -config Specify alternate config file (default ~/.ara/ara.config) -fast Run faster but use more memory. -slow Use minimal amount of memory but run very slowly. -cache-strings With -fast, try to conserve memory somewhat. -version Print version. -about Display copyright, thanks and dedication. -progress Show progress indicator when loading database. -noprogress Don't show progress indicator. -new Show only newest version of each package. (default) -old List all versions of packages. -query <query> Query (eg. depends:xlibs & !package:xcalc). -q <query> Same as -query. -short <query> Display names of packages satisfying query between a pair of curly braces. -list <query> Same, but display one package name per line, and no curly braces (default). -raw <query> For each package satisfying the query, display all selected fields. -table <query> Display results as a table. -count <query> Display number of matching packages. -rows <height> Set height of terminal for interactive display (default 25) -columns <width> Set width of terminal for interactive display (default 75) -wrap Do word wrapping. -nowrap Don't do word wrapping. -pager Use a pager for displaying long output in interactive mode -nopager Don't use a pager for displaying long output in interactive mode -borders Draw ASCII borders for tabular output. (default) -noborders Don't draw ASCII borders for tabular output. -ast Dump the abstract syntax tree of parsed queries to stderr. -debug Enable debugging information -debug-level Set debugging level (higher is more verbose, max is 100, default is 10) -raise-exceptions Don't catch exceptions. Useful with OCAMLRUNPARAM=b=1 in bytecode.
-help Display this list of options --help Display this list of options
-fields <field_1[:width_1],...> Limit output to specified fields for the -table and -raw options. The optional width specifiers are used with the -table option, ignored otherwise. Use * to display all fields (but remember to escape the star character from your shell).
$ ara -examples ara -list 'section=utils' List the name of every package in section utils.
ara -list 'section=utils and not depends:(gnome or kde or gtk)' … except those whose dependency field contains gnome or kde or gtk
ara -set 'section=utils and not depends:(gnome|kde|gtk) & priority=optional' … list multiple names per line, and show only optional packages.
ara -set 'section=utils & !depends:(gtk|gnome|kde) & priority=optional & size<100000' … exclude packages greater than 99999 bytes.
ara -set 'section=utils & (!Depends=~/gtk\|gnome\|kde/ | Size<100000) & Priority=optional' ... well, exclude gtk,gnome or kde stuff only if 100000 bytes or greater.
ara -fields Package,Size,Maintainer:20 -table 'section=utils & (!depends:(gtk|gnome|kde) | size<100000) & priority=optional' ... show Package, Size and Maintainer fields from the above results as a nice ascii table, limiting the maintainer field to 20 characters.
ara -fields Package:8,Size,Description:100 -table 'section=games & !depends:(gtk|sdl|kde|opengl|gnome) & !description:(/shoot|kill|destroy|blast|race|bomb/iw | /multi\(-\|\)player\|strategy\|conquest\|3\(-\|\)d/iw) & depends:(xlibs|vga) & !size>1000000' Assuming a 125-column display, display the first eight characters of the package name, the size in bytes, and the first hundred characters of the description of all packages in the games section not exceeding one million bytes, not depending on fancy stuff like gtk,SDL,KDE,OpenGL or Gnome, not mentioning some forms of violence (to shoot, to kill, etc.) in its description, not described as multi-player, strategy, conquest or three-dimensional games, yet depending on either xlibs or svga to exclude console-based games.
Example 1 #fields package,maintainer:30,version:20 #table section=utils & (!depends:(gtk|gnome|kde) | size<100000) & priority=optional
Example 2 section=utils and status:/^install/
Example 3 section=utils & (!depends:(gtk|gnome|kde) | size<100000) & priority=optional
Example 4 #set new #set borders #set fields Package:20,Version:10,Status:10,Description:35 #table section=games & (/[^ ]etris/i or /fall.* block/) $T := section=games & (/[^ ]etris/i or /fall.* block/) $T & !depends:(kde or qt or gnome or emacs) >/tmp/tetrises.txt $T & !depends:(kde or qt or gnome or emacs)
ara -interactive
#set fields Package,Description:50,Tag:40 #table
$I := status:/^install/
$I & tag:culture $I & tag:packaging $I & tag:(devel and (environment or examples or docsystem)) $I & tag:(devel and (debugger or profiler or testing)) $I & tag:devel $I & tag:education $I & tag:field $I & tag:game $I & tag:ipv6 $I & tag:junior $I & tag:mail $I & tag:media $I & tag:sound $I & tag:(suite and (apache or gforge or gnustep or kde or netscape)) $I & tag:(suite and (opie or roxen or xfce or zope)) $I & tag:dbtech $I & tag:mp3 $I & tag:screensaver $I & tag:window-manager $I & tag:(format and (mp3 or ogg or rss or sgml or tex or vorbis or vrml))
Date: 01/30/04
What is the precise definition of "available"?
$ grep-available dnsmasq | grep-dctrl -s Version . Version: 2.0-1
$ apt-cache show dnsmasq | grep-dctrl -s Version . Version: 2.1-1 Version: 2.0-1
FYI, 2.0-1 is what I have installed, but it will be upgraded to 2.1-1.
I'm using it in this script:
grep-available . | grep-dctrl -sPackage,Version . | grep '.' | sed -e \ "s/Package: /*/" -e "s/Version: /|/" | tr '\n' '|' | sed -e "s/*//g" -e \ "s/||/ /g" | tr '|' '\n' | sort
to return output like this:
$ /mnt/apt/a | head -n 3 a2ps 4.13b-20.1 aalib1 1.4p5-19 aalib1-dev 1.4p5-19
But I probably want 'apt-cache show .' instead of 'grep-available .', because the semantics I want are "all that I have or could have."
Nano Nano
> What is the precise definition of "available"?
Whatever's in your available file (/var/lib/dpkg/available). Remember to run 'dselect update' rather than 'apt-get update' to keep this up to date. I believe only the latest version of each package is listed.
Colin Watson
I finally ended up with this script to list the name and version of every package I have installed or could have installed [1]:
apt-cache -f pkgnames | xargs apt-cache show | \ grep-dctrl -sPackage,Version . | grep '.' | sed -e \ "s/Package: /*/" -e "s/Version: /|/" | tr '\n' '|' | sed -e "s/*//g" \ -e "s/||/ /g" | tr '|' '\n' | sort
$ /mnt/apt/a | head -n3 3dchess 0.8.1-11 3ddesktop 0.2.4-1 3dwm-clock 0.3.1-11.3
You can run this though "cut -d' ' -f1 | uniq" and diff any two instances of this to see what packages are "new".
[1] All versions that "apt-cache show" will show will be included.
Nano Nano
documented on: 2005.01.16
To get a list of packages installed, type this:
dpkg-query -l
If you are looking for big *installed* packages then the command
dpkg-awk "Status: .* installed$" -- Package Installed-Size | \ awk '{print $2}' | egrep -v '^$' | xargs -n2 echo | \ perl -pe 's/(\S+)\s(\S+)/$2 $1/' | sort -rg
will list the packages with size in descending order.
At least ten times faster is the command
dpkg-query -W --showformat='${Installed-Size} ${Package}\n' | sort -n
and you don't need dpkg-awk or awk or perl; however it does not exclude packages that are not installed.
Or, you could use this command to get the qpkg-query speed with the non-installed packages not listed:
dpkg-query -W --showformat='${Installed-Size} ${Package} ${Status}\n' | grep ' installed$' | sort -n | awk '{print $1" "$2}'
It does the same thing as above, I assume. I couldn't get the first one to work because I don't have dpkg-awk.
![]() |
I tried the following command but it didn't seems to do the sorting as advertised. <T>. |
dpkg-awk -s Installed-Size "Status: .* installed$" -- Package Installed-Size
documented on: 2006.06.30
dpkg-awk [(-f|--file) filename] [(-d|--debug) ##] [(-s|--sort) list] [(-rs|--rec_sep) ??] '<fieldname>:<regex>' ... -- <out_fieldname> ..
dpkg-awk -s Installed-Size "Status: .* installed$" -- Package Installed-Size
dpkg-awk - Utility to read a dpkg style db file
dpkg-awk Parses a dpkg status file(or other simularly formated file) and outputs the resulting records. It can use regex on the field values to limit the returned records, and it can also be told which fields to output. As another option, it can sort the matched fields.
Newsgroups: gmane.linux.debian.user Date: Sun, 16 Oct 2005 13:12:12 +0300
> Is there any way to list all the packages and their section names? > > I tried "dpkg-query -W --showformat '${Package} ${Section}\n'" but not all > packages are listed. Please help. Thanks
How about aptitude —display-format "%p %s" search ~n.*
See aptitude reference manual for more information about Customizing how packages are displayed.
Simo Kauppi
> Now, how to redirect the output, with package description, to a file? ie. > Of all the following that I tried, none of them worked as displayed. > > aptitude --display-format "%p %s %70d" search ~n.* > file > COLUMNS=120 aptitude --display-format "%p %s %70d" search ~n.* > file
You could try -w option, which should set the width of the display for aptitude instead of the width of the terminal.
aptitude -w 120 --display-format "%p %s %70d" search ~n.* > file
Simo Kauppi
> >> How can I find out what version of a package I have currently installed > > > dpkg -l|grep libc > > This is a solution, but not perfect, 'cause sometimes the package name > gets truncated, e.g.: > > ii libcupsys2-gnu 1.1.20final+rc Common UNIX Printing System(tm) - libs
here is the answer to the 'truncation'.
doing:
COLUMNS=139 dpkg -l
this sets the env var COLUMNS temporarity to 139 for this command.
Kevin Mark
> > How can I find out what version of a package I have currently > > installed (e.g., glibc)? > > apt-cache policy foo > dpkg -l foo > zcat /usr/share/doc/foo/changelog.Debian.gz | \ > sed -n -e 's/^[^\x28]*[\x28]//' -e 's/\x29.*//' -e '1p'
$ COLUMNS=500 dpkg -l | awk '{print $1 " " $2 "_" $3 "\n" }' | grep libc ii glibc-doc_2.3.2.ds1-13 ii libc6_2.3.2.ds1-13 ii libc6-dev_2.3.2.ds1-13 ii libcap1_1.10-14 ii libcdparanoia0_3a9.8-11 ii libcomerr2_1.35-6 ii libconsole_0.2.3dbs-54 ii libcroco2_0.5.1-1 ii libcupsimage2_1.1.20final+rc1-3 ii libcupsys2-gnutls10_1.1.20final+rc1-3 ii libcurl2_7.11.2-1
T
documented on: 2004.08.29
Newsgroups: gmane.linux.debian.user Date: Sat, 29 Jan 2005 18:16:57 -0500
> If I have different package sources, > > How can find out what repository a certain package comes from? > > How can I list the packages coming from a certain repository? > > I'm asking because I think a repository contains a package that I > want, but 'apt-cache search' still shows nothing (having added it > to apt source list and done update).
I think you need 'apt-cache policy':
$ apt-cache policy xpdf xpdf: Installed: (none) Candidate: 1.00-3.2 Version Table: 1.00-3.2 0 500 http://security.debian.org stable/updates/main Packages 1.00-3.1 0 500 http://http.us.debian.org stable/main Packages
This indicates that xpdf is not installed and the available versions are 1.00-3.1 (from Debian main) and 1.00-3.2 (from Debian security main). If one were installed, its version number would be lead by ***. I hope this helps.
Roberto Sanchez
Debian apt caches package listing by repository in /var/lib/apt/lists/:
E.g.:
/var/lib/apt/lists/security.debian.org_dists_sarge_updates_non-free_binary-i386_Packages /var/lib/apt/lists/www.backports.org_debian_dists_sarge-backports_main_binary-i386_Packages
etc.
T
documented on: 2006.01.08
Newsgroups: gmane.linux.debian.user Date: Fri, 04 Mar 2005 13:19:27 +0100
> > I'm looking for a way to determine which packages from non-debian APT > > repositories I've installed. How could I produce a list (sorted by repo) > > of these packages? I know I can call apt-cache policy for a single > > package, but I'm looking for a more automated approach :-) > > I want to know that too. Moreover, I also have packages that are > home-made (compiled myself using checkinstall), or manually downloaded > (not from any repository). Hope this can be covered too.
You can see those in Aptitude (in the main window, section "Obsolete and locally created". Still doesn't solve the main question, and both are connected.
Sebastian Kapfer
> locally created". Still doesn't solve the main question, and both are > connected.
You can easily hack apt-show-versions to do this, example patch[for apt-show-versions] attached[just do 'apt-show-versions | grep -v Debian' to get all non-(official)-Debian packages].
Travis
# licensed under same license as apt-show-versions[GPL v2 or greater] # Travis Crump 2005 --- /usr/bin/apt-show-versions 2006-02-24 10:06:24.000000000 -0500 +++ apt-show-versions 2005-03-04 12:31:51.000000000 -0500 @@ -34,9 +34,14 @@ use Getopt::Long; use Storable qw(store retrieve); -my $apackagescachefile="/var/cache/apt-show-versions/apackages"; -my $ipackagescachefile="/var/cache/apt-show-versions/ipackages"; -my $filescachefile="/var/cache/apt-show-versions/files"; +my $cachedir = "/var/cache/apt-show-versions"; +unless ( -w "$cachedir") { + $cachedir="$ENV{HOME}/.apt-show-versions"; + mkdir $cachedir unless -e $cachedir; +} +my $apackagescachefile="${cachedir}/apackages"; +my $ipackagescachefile="${cachedir}/ipackages"; +my $filescachefile="${cachedir}/files"; use AptPkg::Config '$_config'; use AptPkg::System '$_system'; @@ -127,7 +132,7 @@ if (!-e $filescachefile or -M $list_dir < -M $filescachefile or !ref($filesref)) { opendir(DIR, $list_dir) or die "Can't opendir $list_dir: $!"; @files = map { $list_dir . $_} grep /Packages$/, readdir(DIR); - ($< == 0) and (store(\@files, $filescachefile) or + (store(\@files, $filescachefile) or warn "Can't write $filescachefile"); } unless (scalar @files > 0) {die "Error: No information about packages! (Maybe no deb entries?)\n"}; @@ -142,7 +147,7 @@ } if (!-e $ipackagescachefile or -M $status_file < -M $ipackagescachefile or !ref($ipackages)) { $ipackages = parse_file ($status_file, 1); - ($< == 0) and (store($ipackages, $ipackagescachefile) or + (store($ipackages, $ipackagescachefile) or warn "Can't write $ipackagescachefile"); } @@ -161,16 +166,19 @@ # Get available package information out of all Packages files foreach (@files) { my $release = $_; + $release =~ s/[-a-z]*_binary-i386_Packages/Release/; $release =~ s/Packages/Release/; $release = quotemeta $release; my $archiv; - $archiv = `fgrep -s Archive $release` or + $archiv = `fgrep -s Origin $release` or + $archiv = `fgrep -s Archive $release` or $archiv = `fgrep -s Suite $release` or ($release =~ /(potato|woody|sarge|sid|stable|testing|unstable)/ and $archiv = $1) or $archiv = "unknown"; # next; $archiv =~ s/Archive: //; $archiv =~ s/Suite: //; + $archiv =~ s/Origin: //; $archiv =~ s/\n//; $releases{$archiv} = 1; @@ -210,10 +218,10 @@ } } # Store if we are root -($< == 0) and (store($apackages, $apackagescachefile) or +(store($apackages, $apackagescachefile) or die "Warning: Can't write to $apackagescachefile!\n"); # Exit if we are root and using the -i option -($< == 0) and (exists $opts{'initialize'}) and exit; +(exists $opts{'initialize'}) and exit; # print info for selected package if (exists $opts{'package'} &&
Newsgroups: gmane.linux.debian.user Date: Thu, 30 Sep 2004 19:11:03 +0200
> I have just observed something strange on my Sarge box: > the pacake telnet is installed but according the tool dpkg it is not: > so I cannot purge, among other thing I guess. > > How can we satinize our box ?
available file (dpkg's source) is not updated anymore when running apt-get update etc. Run 'dselect update' to make the changes visible in dpkg.
John Smith
On Mon, 2005-10-24 at 12:47 -0400, Roberto C. Sanchez wrote:
> > is there a set of command parameters to aptitude or the apt-* utils to > > just output which packages have updates available? i'd like something > > like "aptitude -V -n dist-upgrade" .. where -n is default 'no' to all > > questions. But -n doesn't exist from what I can see. :) > > > > apt-show-version | grep upgradeagle > > Will that do what you want?
yeah that works great. someone else mentioned the -s (simulate) parameter (for aptitude) and that seems to work as well. I like the output of apt-show-versions better much cleaner looking, thanks!
Matthew Lenz
Or use apti-cron, VERY COOL, sends you an e-mail every day with new updates and their changelogs.
Piszcz, Justin
Newsgroups: gmane.linux.debian.user Date: Wed, 14 Sep 2005 14:42:03 -0400
Is there any way to know how fresh are the packages?
Ie, say I'm running Debian Testing, and notice that a bunch of packages need to be upgraded, is there any way for me to know how long have those packages been in Debian Testing repository?
> > Is there any way to know how fresh are the packages? > > Why does it matter how long they have been there?
Look at my recent posts and you will know why. Normally I'm a quite reader lurking in this mlist. My recent upgrade caused me burst into questing mode with tons of questions…
>Why does it matter how long they have been there? > >-Roberto
Why not? I am not the OP but I would like to see this feature. For me 10 days period for unstable to testing transition is not sufficient. I want to install packages that have spent at least 30 days in testing. Right now there is no easy way to do this.
Kamaraju S Kusumanchi
> > > testing. Right now there is no easy way to do this. > > > > Sure there is. Just run stable. > > > > -Roberto > > > No they are not the same.
Who said they are? You can't have the penny and the bun.
antgel
> Who said they are? You can't have the penny and the bun.
The original poster had a good point. Your dismissing it with an invalid analogy isn't helpful.
Despite the name, many people (including me) have for years been using "testing" as "standard for workstations" because "stable" has been so ludicrously out-of-date as to be painful to actually use. Given the fact that probably a majority of Debian users use either testing or unstable on their desktop boxes, adding the "package age tracking" feaure would seem like a good idea to me. At least in principle — I can see practical problems with it.
However, you didn't raise a real objection, you just dismissed the whole idea with an irrelevant comaprison.
Carl Fink
> Is there any way to know how fresh are the packages?
Enter package name. View Latest News. Note the package appears in the archive and mirrors soon after the date of the email for the version desired. I'm sure there's a more elegant answer as well.
Ralph