I have been told to install a 32 bit libc on my x86_64 system. I tried "yum install libc.i386" and I got no match.
What is the command I need?
Jerry
Çäðàâñòâóéòå, Jerry.
Âû ïèñàëè 27 ?????? 2006 ?., 18:47:11:
I have been told to install a 32 bit libc on my x86_64 system. I tried "yum install libc.i386" and I got no match.
What is the command I need?
For current CentOS 4.4 release: # yum install glibc-2.3.4-2.25.i386
/ I have been told to install a 32 bit libc on my x86_64 system.
/>>/ I tried "yum install libc.i386" and I got no match. /
/ What is the command I need?
/
For current CentOS 4.4 release: # yum install glibc-2.3.4-2.25.i386
I tried your suggestion and it did not work. see below.
yum install glibc-2.3.4-2.25.i386
Setting up Install Process Setting up repositories Reading repository metadata in from local files Parsing package install arguments No Match for argument: glibc-2.3.4-2.25.i386 Nothing to do
also listing present glibs packages gives:
rpm -qa | grep glibc glibc-devel-2.3.4-2.25 glibc-kernheaders-2.4-9.1.98.EL glibc-2.3.4-2.25 glibc-common-2.3.4-2.25 glibc-2.3.4-2.25 glibc-headers-2.3.4-2.25
Jerry
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On Mon, Nov 27, 2006 at 11:27:56AM -0500, Jerry Geis wrote:
rpm -qa | grep glibc glibc-devel-2.3.4-2.25 glibc-kernheaders-2.4-9.1.98.EL glibc-2.3.4-2.25 <-------------- glibc-common-2.3.4-2.25 glibc-2.3.4-2.25 <-------------- glibc-headers-2.3.4-2.25
This "duplicated" listing seems to suggest you already have both 32 and 64bits version already installed.
Try this:
rpm -q --qf "%{NAME}-%{ARCH}\n" glibc
[]s
- -- Rodrigo Barbosa "Quid quid Latine dictum sit, altum viditur" "Be excellent to each other ..." - Bill & Ted (Wyld Stallyns)
Çäðàâñòâóéòå, Jerry.
Âû ïèñàëè 27 ?????? 2006 ?., 19:27:56:
/ I have been told to install a 32 bit libc on my x86_64 system.
/>>>/ I tried "yum install libc.i386" and I got no match.
/
/ What is the command I need?
/
For current CentOS 4.4 release: # yum install glibc-2.3.4-2.25.i386
I tried your suggestion and it did not work. see below.
There's a typo there. I meant "glibc-2.3.4-2.25.i686".
also listing present glibs packages gives: rpm -qa | grep glibc glibc-devel-2.3.4-2.25 glibc-kernheaders-2.4-9.1.98.EL glibc-2.3.4-2.25 glibc-common-2.3.4-2.25 glibc-2.3.4-2.25 glibc-headers-2.3.4-2.25
There's a duplicate glibc listed there, looks like you've got i686 version already installed.
On Mon, Nov 27, 2006 at 11:27:56AM -0500, Jerry Geis wrote:
/ What is the command I need?
For current CentOS 4.4 release: # yum install glibc-2.3.4-2.25.i386
I tried your suggestion and it did not work. see below. yum install glibc-2.3.4-2.25.i386
That's because it should be glibc-2.3.4-2.25.i686, as you can tell by looking in the repository, or simply doing "yum list glibc".
That said, what you might want to do is
sudo yum groupinstall 'Compatibility Arch Support'
to get all of the "standard" 32-bit packages.
On Mon, 2006-11-27 at 11:46 -0500, Matthew Miller wrote:
On Mon, Nov 27, 2006 at 11:27:56AM -0500, Jerry Geis wrote:
/ What is the command I need?
For current CentOS 4.4 release: # yum install glibc-2.3.4-2.25.i386
I tried your suggestion and it did not work. see below. yum install glibc-2.3.4-2.25.i386
That's because it should be glibc-2.3.4-2.25.i686, as you can tell by looking in the repository, or simply doing "yum list glibc".
That said, what you might want to do is
sudo yum groupinstall 'Compatibility Arch Support'
to get all of the "standard" 32-bit packages.
BTW ... you might also be needing:
libstdc++-3.4.6-3.i386.rpm
on your x86_64 distro if you need to run 32-bit programs ...
Quoting Jerry Geis geisj@pagestation.com:
I have been told to install a 32 bit libc on my x86_64 system. I tried "yum install libc.i386" and I got no match.
What is the command I need?
You probably already have it. Package name is glibc. Try "yum install glibc.i686" (you really do not want i386 version!).