LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 08-13-2023, 02:03 PM   #1
tk3000
Member
 
Registered: Dec 2009
Location: lansing, MI
Distribution: slackware
Posts: 34

Rep: Reputation: 0
Identify the txz package containing the libc.2-33.so


On slackware 15, whenever I tried the following:

slackpkg file-search libc-2.33.so

it shows the msg "No package contains" but it should be there I would imagine since this library should be an integral part of the slackware dist. Any insights?
 
Old 08-13-2023, 02:07 PM   #2
Petri Kaukasoina
Senior Member
 
Registered: Mar 2007
Posts: 1,895

Rep: Reputation: 1544Reputation: 1544Reputation: 1544Reputation: 1544Reputation: 1544Reputation: 1544Reputation: 1544Reputation: 1544Reputation: 1544Reputation: 1544Reputation: 1544
Code:
$ slackpkg file-search libc-2.33.so

Looking for libc-2.33.so in package list. Please wait... DONE

The list below shows the packages that contains "libc-2\.33\.so" file.

[ installed ] - aaa_glibc-solibs-2.33-x86_64-5
[ installed ] - glibc-2.33-x86_64-5

You can search specific packages using "slackpkg search package".
 
2 members found this post helpful.
Old 08-13-2023, 02:09 PM   #3
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,071

Rep: Reputation: Disabled
Welcome to this forum tk3000.

Here is the answer:
Code:
didier[~]$ grep libc-2.33.so /var/lib/pkgtools/packages/*
/var/lib/pkgtools/packages/aaa_glibc-solibs-2.33-x86_64-5:lib64/incoming/libc-2.33.so
/var/lib/pkgtools/packages/glibc-2.33-x86_64-5:lib64/incoming/libc-2.33.so
So this shared library is shipped in the packages aaa_glibc_solibs and glibc.

PS Indeed you can also use slackpkg as Petri pointed out.

Last edited by Didier Spaier; 08-13-2023 at 02:11 PM.
 
1 members found this post helpful.
Old 08-13-2023, 02:34 PM   #4
tk3000
Member
 
Registered: Dec 2009
Location: lansing, MI
Distribution: slackware
Posts: 34

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Petri Kaukasoina View Post
Code:
$ slackpkg file-search libc-2.33.so

Looking for libc-2.33.so in package list. Please wait... DONE

The list below shows the packages that contains "libc-2\.33\.so" file.

[ installed ] - aaa_glibc-solibs-2.33-x86_64-5
[ installed ] - glibc-2.33-x86_64-5

You can search specific packages using "slackpkg search package".
Yeah, that is odd. When I type the following on the command line it shows:

"
root@darkstar:/lib64# slackpkg file-search inittab

Looking for inittab in package list. Please wait... DONE

The list below shows the packages that contains "inittab" file.

[uninstalled] - getty-ps-2.1.0b-x86_64-4
[ installed ] - sysvinit-3.01-x86_64-1
[ installed ] - sysvinit-scripts-15.0-noarch-8
[ installed ] - vim-9.0.1678-x86_64-1_slack15.0

You can search specific packages using "slackpkg search package".


root@darkstar:/lib64# slackpkg file-search libc-2.33.so

Looking for libc-2.33.so in package list. Please wait... DONE

No packages contains "libc-2\.33\.so" file.
"

It works with other files, as shown above with "inittab". Something must be amiss or corrupt in mine.
 
Old 08-13-2023, 02:42 PM   #5
Petri Kaukasoina
Senior Member
 
Registered: Mar 2007
Posts: 1,895

Rep: Reputation: 1544Reputation: 1544Reputation: 1544Reputation: 1544Reputation: 1544Reputation: 1544Reputation: 1544Reputation: 1544Reputation: 1544Reputation: 1544Reputation: 1544
Have you modified /etc/slackpkg/blacklist ?
 
Old 08-13-2023, 03:15 PM   #6
tk3000
Member
 
Registered: Dec 2009
Location: lansing, MI
Distribution: slackware
Posts: 34

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Didier Spaier View Post
Welcome to this forum tk3000.

Here is the answer:
Code:
didier[~]$ grep libc-2.33.so /var/lib/pkgtools/packages/*
/var/lib/pkgtools/packages/aaa_glibc-solibs-2.33-x86_64-5:lib64/incoming/libc-2.33.so
/var/lib/pkgtools/packages/glibc-2.33-x86_64-5:lib64/incoming/libc-2.33.so
So this shared library is shipped in the packages aaa_glibc_solibs and glibc.

PS Indeed you can also use slackpkg as Petri pointed out.

I entered the grep command you suggested, and that seem to have clarify the situation.

oot@darkstar:/lib64# grep libc-2.33.so /var/lib/pkgtools/packages/*
/var/lib/pkgtools/packages/aaa_glibc-solibs-2.33_multilib-x86_64-5alien:lib/libc-2.33.so
/var/lib/pkgtools/packages/aaa_glibc-solibs-2.33_multilib-x86_64-5alien:lib64/incoming/libc-2.33.so
/var/lib/pkgtools/packages/glibc-2.33_multilib-x86_64-5alien:lib/libc-2.33.so
/var/lib/pkgtools/packages/glibc-2.33_multilib-x86_64-5alien:lib64/incoming/libc-2.33.so
root@darkstar:/lib64#

In the past, I installed alien’s multilib packages (to run both 64bits and 32bits software); replacing some of the original and standard ones.

Thanks for the warm welcome Didier.

Last edited by tk3000; 08-13-2023 at 11:28 PM.
 
Old 08-13-2023, 03:18 PM   #7
tk3000
Member
 
Registered: Dec 2009
Location: lansing, MI
Distribution: slackware
Posts: 34

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Petri Kaukasoina View Post
Have you modified /etc/slackpkg/blacklist ?
No, I don't recall. But, yeah, as posted above I installed alien's multilib packages in the past and that kind of explains the situation. Thanks!
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
mkvtoolnix-46.0.0-x86_64-1alien.txz broken after boost-compat-1.78-x86_64-1alien.txz update on -current Eeel Slackware 2 01-31-2022 02:10 AM
[SOLVED] query for json-c-0.13.1_20180305-i586-1.txz and libvpx-1.10.0-i586-1.txz nobodino Slackware 3 12-08-2021 04:48 AM
[SOLVED] No package 'x11' found No package 'xext' found No package 'xdamage' found No package 'xfixes' found No package 'x11-xcb' found Jigsaw Linux From Scratch 14 02-23-2021 08:35 PM
libc.so.6(GLIBC_2.3), libc.so.6(GLIBC_2.3.2) needed for Linux 7.3.1 vivek_thampy Linux - Software 1 08-09-2004 04:12 PM
libc.so verse libc.so.5 markstevens Linux - Software 4 06-19-2003 11:41 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 05:57 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration