Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Created attachment 525665[details]
The kickstart file
Description of problem:
I need to automatically install some 32bit packages into x86_64 systems when deploying RHEL x86_64. When I add these packages name(not include version, arch and extension name of the full package name) into kickstart file, the installer still only install the 64bit version. the 32bit version isn't installed.
We know that every package has 32bit and 64bit version listed in the /Packages directory of the OS image. Maybe the automatic installation of 32bit packages can be implemented via adding the full package name into ks file. But my ks file need to be applied in many RHEL versions, such as RHEL 6.0, RHEL 6.1, and subsequent RHEL 6.2. The package version maybe change in different RHEL release.
How I install 32bit packages into x86_64 system automatically when deploying RHEL x86_64?
Version-Release number of selected component (if applicable):
anaconda 13.21.117 for x86_64
How reproducible:
Always
Steps to Reproduce:
Add the package name into ks file, then install RHEL with the ks file.
Actual results:
The 64bit version of the package will be installed. But the 32bit verion will not be installed.
Expected results:
All the 32bit and 64bit version of specified package can be installed into x86_64 system automatically when deploying RHEL x86_64.
Additional info:
Well, it should be in the installation guide in this section:
http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/6/html-single/Installation_Guide/index.html#s1-kickstart2-packageselection
As of RHEL 6.0, you now have to specify 32-bit packages on 64-bit systems explicitly. Let's say you want both glibc packages on your 64-bit system. The following %packages block demonstrates that:
%packages
glibc
glibc.i686
%end
Most users should find it sufficient to add the lines for the 32-bit packages they want at the end of the %packages section generated for them during installation.
The Installation Guide for 6.2 has already entered the translation stage. To fix this in time for the 6.2 release, we would need an exception from the PM, please.
Otherwise, we'll be sure to fix it for 6.3.
Thanks for reporting this, Jack. For the next edition of the guide, I've inserted a new paragraph at the link David provided in Comment 2 incorporating his explanation.
This bug is now fixed and available as part of the Red Hat Enterprise Linux 6.3 release on http://docs.redhat.com/.
Setting to CLOSED > CURRENTRELEASE.
Created attachment 525665 [details] The kickstart file Description of problem: I need to automatically install some 32bit packages into x86_64 systems when deploying RHEL x86_64. When I add these packages name(not include version, arch and extension name of the full package name) into kickstart file, the installer still only install the 64bit version. the 32bit version isn't installed. We know that every package has 32bit and 64bit version listed in the /Packages directory of the OS image. Maybe the automatic installation of 32bit packages can be implemented via adding the full package name into ks file. But my ks file need to be applied in many RHEL versions, such as RHEL 6.0, RHEL 6.1, and subsequent RHEL 6.2. The package version maybe change in different RHEL release. How I install 32bit packages into x86_64 system automatically when deploying RHEL x86_64? Version-Release number of selected component (if applicable): anaconda 13.21.117 for x86_64 How reproducible: Always Steps to Reproduce: Add the package name into ks file, then install RHEL with the ks file. Actual results: The 64bit version of the package will be installed. But the 32bit verion will not be installed. Expected results: All the 32bit and 64bit version of specified package can be installed into x86_64 system automatically when deploying RHEL x86_64. Additional info: