Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
list of installed files and locations?
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Other Things Gentoo
View previous topic :: View next topic  
Author Message
nitro322
Guru
Guru


Joined: 24 Jul 2002
Posts: 594
Location: USA

PostPosted: Sat Jul 27, 2002 7:46 am    Post subject: list of installed files and locations? Reply with quote

rpm -qil <package> will display a summary of the installed package, as well as a list of all files (with paths) installed by that package. There was already a recent thread on getting package summaries, but I'd like to know if there's anyway to get a list of all files installed by a package, with paths. Any way to find that information, short of piecing it together from various Makefiles? Thanks.
Back to top
View user's profile Send private message
masseya
Bodhisattva
Bodhisattva


Joined: 17 Apr 2002
Posts: 2602
Location: Baltimore, MD

PostPosted: Sat Jul 27, 2002 8:09 am    Post subject: Reply with quote

Unfortunatly, this is not currently possible. I would certainly like to see this feature as well. It would be a nice feature to request. ;)
_________________
if i never try anything, i never learn anything..
if i never take a risk, i stay where i am..
Back to top
View user's profile Send private message
nitro322
Guru
Guru


Joined: 24 Jul 2002
Posts: 594
Location: USA

PostPosted: Sat Jul 27, 2002 8:49 am    Post subject: Reply with quote

Tristam29 wrote:
Unfortunatly, this is not currently possible. I would certainly like to see this feature as well. It would be a nice feature to request. ;)


Sounds like a plan. How do I request it?
Back to top
View user's profile Send private message
rac
Bodhisattva
Bodhisattva


Joined: 30 May 2002
Posts: 6553
Location: Japanifornia

PostPosted: Sat Jul 27, 2002 9:06 am    Post subject: Reply with quote

I'm sorry - I must be misunderstanding something very fundamental here. Doesn't "qpkg -l" give a list of installed files for a package?
_________________
For every higher wall, there is a taller ladder
Back to top
View user's profile Send private message
nitro322
Guru
Guru


Joined: 24 Jul 2002
Posts: 594
Location: USA

PostPosted: Sat Jul 27, 2002 10:11 am    Post subject: Reply with quote

rac wrote:
I'm sorry - I must be misunderstanding something very fundamental here. Doesn't "qpkg -l" give a list of installed files for a package?


Excellent! I hadn't heard of qpkg before, but it does exactly what I'm looking for. Thanks!
Back to top
View user's profile Send private message
mglauche
Retired Dev
Retired Dev


Joined: 25 Apr 2002
Posts: 564
Location: Germany

PostPosted: Sat Jul 27, 2002 10:48 am    Post subject: Reply with quote

i think epm -q -l does the same ...
Back to top
View user's profile Send private message
Naan Yaar
Bodhisattva
Bodhisattva


Joined: 27 Jun 2002
Posts: 1549

PostPosted: Sat Jul 27, 2002 1:35 pm    Post subject: Reply with quote

Code:

epm -ql <package>
qpkg -l <package>

will both do it. They are available if you emerge gentoolkit.

Also, the package contents are in /var/db/pkg/<package_group>/<package_name>/CONTENTS. You can look at them without having anything else installed.
Back to top
View user's profile Send private message
masseya
Bodhisattva
Bodhisattva


Joined: 17 Apr 2002
Posts: 2602
Location: Baltimore, MD

PostPosted: Mon Jul 29, 2002 11:26 pm    Post subject: Reply with quote

That's awesome! Why isn't this a part of portage? I can't seem to find any documentation on the gentoo site about all the stuff that this installs either. Any tips on where to find info on gentoolkit?
_________________
if i never try anything, i never learn anything..
if i never take a risk, i stay where i am..
Back to top
View user's profile Send private message
delta407
Bodhisattva
Bodhisattva


Joined: 23 Apr 2002
Posts: 2876
Location: Chicago, IL

PostPosted: Mon Jul 29, 2002 11:32 pm    Post subject: Reply with quote

man qpkg :?:
_________________
I don't believe in witty sigs.
Back to top
View user's profile Send private message
masseya
Bodhisattva
Bodhisattva


Joined: 17 Apr 2002
Posts: 2602
Location: Baltimore, MD

PostPosted: Mon Jul 29, 2002 11:50 pm    Post subject: Reply with quote

That's a very informative page, but I was more interested to know if it was the only part of gentoolkit and man gentoolkit doesn't work. When I to a qpkg -l gentoolkit, I get the following:
Code:
app-admin/gentoolkit-0.1.14-r1 *
CONTENTS:
/usr
/usr/share
/usr/share/gentoolkit
/usr/share/gentoolkit/histogram.awk
/usr/share/doc
/usr/share/doc/gentoolkit-0.1.14-r1
/usr/share/doc/gentoolkit-0.1.14-r1/gentool
/usr/share/doc/gentoolkit-0.1.14-r1/gentool/ChangeLog.gz
/usr/share/doc/gentoolkit-0.1.14-r1/lintool
/usr/share/doc/gentoolkit-0.1.14-r1/lintool/checklist-for-ebuilds.gz
/usr/share/doc/gentoolkit-0.1.14-r1/lintool/ChangeLog.gz
/usr/share/doc/gentoolkit-0.1.14-r1/etc-update
/usr/share/doc/gentoolkit-0.1.14-r1/etc-update/ChangeLog.gz
/usr/share/man
/usr/share/man/man1
/usr/share/man/man1/qpkg.1.gz
/usr/share/man/man1/useflag.1.gz
/usr/share/man/man1/lintool.1.gz
/usr/share/man/man1/etc-update.1.gz
/usr/bin
/usr/bin/gentool-bump-revision
/usr/bin/gentool-total-coverage
/usr/bin/gentool-author-coverage
/usr/bin/gentool-package-count
/usr/bin/qpkg
/usr/bin/pkg-size
/usr/bin/useflag
/usr/bin/lintool
/usr/sbin
/usr/sbin/pkg-clean
/usr/sbin/mkebuild
/usr/sbin/emerge-webrsync
/usr/sbin/epm
/usr/sbin/etc-update
/etc

Should I use the man page to learn more about all the things in /usr/bin and /usr/sbin or is there a single doc on it somewhere that I haven't found?
_________________
if i never try anything, i never learn anything..
if i never take a risk, i stay where i am..
Back to top
View user's profile Send private message
Naan Yaar
Bodhisattva
Bodhisattva


Joined: 27 Jun 2002
Posts: 1549

PostPosted: Tue Jul 30, 2002 2:34 am    Post subject: Reply with quote

gentoolkit itself does not have a single man page. Man pages installed by gentoolkit are in your posting:
Quote:

/usr/share/man/man1/qpkg.1.gz
/usr/share/man/man1/useflag.1.gz
/usr/share/man/man1/lintool.1.gz
/usr/share/man/man1/etc-update.1.gz

Obviously, everything in gentoolkit does not have a man page.

Many programs also support the "--help" or "-h" flag for help. "apropos" or "man -k" and "man -K" can also help you track down man pages by keyword.

Tristam29 wrote:
That's a very informative page, but I was more interested to know if it was the only part of gentoolkit and man gentoolkit doesn't work. When I to a qpkg -l gentoolkit, I get the following:
...
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Other Things Gentoo All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum