RE: How to find a package containing a given executable

2000-06-08 Thread Moore, Paul
From: William F. Dowling [mailto:[EMAIL PROTECTED] I do this from cron every night: #! /bin/bash cd /usr/local/fromDebian DEBIAN=ftp://ftp.debian.org/debian/dists wget -o LOG-unstable-contents $DEBIAN/unstable/Contents-i386.gz mv Contents-i386.gz Contents.unstable.gz Then I could do

RE: How to find a package containing a given executable

2000-06-08 Thread William F. Dowling
$ dpkg -S papersize libpaperg: /usr/man/man5/papersize.5.gz libpaperg: /usr/man/man3/systempapersizefile.3paper.gz libpaperg: /usr/man/man3/defaultpapersizefile.3paper.gz or $ zgrep '/etc/papersize' /usr/man/man*/*gz 2/dev/null /usr/man/man1/paperconf.1.gz:.B /etc/papersize

Re: How to find a package containing a given executable

2000-06-07 Thread M. Tavasti
Brad [EMAIL PROTECTED] writes: There's a search form you may find useful at the bottom of http://www.debian.org/distrib/packages Anything usable without net? I have local mirror of debian archive, if it helps -- M. Tavasti / [EMAIL PROTECTED] / +358-40-5078254 Poista

How to find a package containing a given executable

2000-06-06 Thread Moore, Paul
Hi, One of the most common queries I have with the Debian packaging system, which I don't know how to make, is to search for the name of the package(s) which install a given file or files. For instance, the most recent such case I have was looking for the gvim executable. As it happens, this is

How to find a package containing a given executable

2000-06-06 Thread William F. Dowling
I do this from cron every night: #! /bin/bash cd /usr/local/fromDebian DEBIAN=ftp://ftp.debian.org/debian/dists wget -o LOG-unstable-contents $DEBIAN/unstable/Contents-i386.gz mv Contents-i386.gz Contents.unstable.gz Then I could do zgrep gvim /usr/local/fromDebian/Contents.unstable.gz

Re: How to find a package containing a given executable

2000-06-06 Thread Brad
On Tue, Jun 06, 2000 at 02:29:18PM +0100, Moore, Paul wrote: Clearly, on an installed file, I can use dpkg -S, but what about looking for where I install something from? There's a search form you may find useful at the bottom of http://www.debian.org/distrib/packages If there isn't a simple