Sponsored Content
Operating Systems Linux Red Hat Unable to install 32 bit application on 64 bit OS Post 302684531 by poga on Thursday 9th of August 2012 05:56:19 PM
Old 08-09-2012
Unable to install 32 bit application on 64 bit OS

Hi,

I am new to Linux OS. My question is that "is it possible to install 32 Bit application on 64 Bit OS?"
I have the following Redhat OS on VMware workstation.
OS - Red Hat Enterprise Linux Server release 6.2 | 2.6.32-220.el6.x86_64

While installing the application I am getting the following error.
Code:
Error -
: /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory

Steps taken - Tried to install glibc-devel-2.1.3-15.i386.rpm
Error -
Code:
 
[root@localhost local]# ls -lart glibc-devel-2.1.3-15.i386.rpm
-rw-r--r--. 1 root root 8437424 Aug  9 22:01 glibc-devel-2.1.3-15.i386.rpm
[root@localhost local]# yum install glibc-devel-2.1.3-15.i386
Loaded plugins: product-id, refresh-packagekit, security, subscription-manager
Updating certificate-based repositories.
Setting up Install Process
No package glibc-devel-2.1.3-15.i386 available.
Error: Nothing to do
[root@localhost local]#

Kindly help.

---------- Post updated at 03:26 AM ---------- Previous update was at 02:42 AM ----------

Got the answer ...

IBM Unable to install Installation Manager on RHEL 6.0/6.1 (64-bit) - United States
 

5 More Discussions You Might Find Interesting

1. Programming

copying or concatinating string from 1st bit, leaving 0th bit

Hello, If i have 2 strings str1 and str2, i would like to copy/concatenate str2 to str1, from 1st bit leaving the 0th bit. How do i do it? (2 Replies)
Discussion started by: jazz
2 Replies

2. Gentoo

compiling 32 bit application on 64 bit linux(x86_64)

hi all, i have a 64 bit linux machine. $uname -a Linux SVRDELLD30 2.6.9-42.ELsmp #1 SMP Tue Aug 15 10:35:26 BST 2006 x86_64 x86_64 x86_64 GNU/Linux here by default gcc creates 64 bit executable. but for some reason i want to create 32bit executable. first i want to create 32 bit object... (3 Replies)
Discussion started by: uttamhoode
3 Replies

3. Linux

Is it possible to compile 64 bit application on 32 bit machine

Hi, I am using 32 bit machine, and I want to compile 64 bit application on 32-bit machine. So please tell me is it possible or not? Regards Mandar (7 Replies)
Discussion started by: Mandar123
7 Replies

4. Shell Programming and Scripting

How to handle 64 bit arithmetic operation at 32 bit compiled perl interpreter?H

Hi, Here is the issue. From the program snippet I have Base: 0x1800000000, Size: 0x3FFE7FFFFFFFF which are of 40 and 56 bits. SO I used use bignum to do the math but summing them up I always failed having correct result. perl interpreter info, perl, v5.8.8 built for... (0 Replies)
Discussion started by: rrd1986
0 Replies

5. Windows & DOS: Issues & Discussions

Which version of Windows Vista to install with a product key? 32-bit or 64-bit?

Hello everyone. I bought a dell laptop (XPS M1330) online which came without a hard drive. There is a Windows Vista Ultimate OEMAct sticker with product key at the bottom case. I checked dell website (here) for this model and it says this model supports both 32 and 64-bit version of Windows... (4 Replies)
Discussion started by: milhan
4 Replies
glutInitDisplayMode(3GLUT)					       GLUT						glutInitDisplayMode(3GLUT)

NAME
glutInitDisplayMode - sets the initial display mode. SYNTAX
void glutInitDisplayMode(unsigned int mode); ARGUMENTS
mode Display mode, normally the bitwise {m OR}-ing of GLUT display mode bit masks. See values below: GLUT_RGBA Bit mask to select an RGBA mode window. This is the default if neither GLUT_RGBA nor GLUT_INDEX are specified. GLUT_RGB An alias for GLUT_RGBA. GLUT_INDEX Bit mask to select a color index mode window. This overrides GLUT_RGBA if it is also specified. GLUT_SINGLE Bit mask to select a single buffered window. This is the default if neither GLUT_DOUBLE or GLUT_SINGLE are specified. GLUT_DOUBLE Bit mask to select a double buffered window. This overrides GLUT_SINGLE if it is also specified. GLUT_ACCUM Bit mask to select a window with an accumulation buffer. GLUT_ALPHA Bit mask to select a window with an alpha component to the color buffer(s). GLUT_DEPTH Bit mask to select a window with a depth buffer. GLUT_STENCIL Bit mask to select a window with a stencil buffer. GLUT_MULTISAMPLE Bit mask to select a window with multisampling support. If multisampling is not available, a non-multisampling window will automat- ically be chosen. Note: both the OpenGL client-side and server-side implementations must support the GLX_SAMPLE_SGIS extension for multisampling to be available. GLUT_STEREO Bit mask to select a stereo window. GLUT_LUMINANCE Bit mask to select a window with a ``luminance'' color model. This model provides the functionality of OpenGL's RGBA color model, but the green and blue components are not maintained in the frame buffer. Instead each pixel's red component is converted to an index between zero and glutGet(GLUT_WINDOW_COLORMAP_SIZE)-1 and looked up in a per-window color map to determine the color of pix- els within the window. The initial colormap of GLUT_LUMINANCE windows is initialized to be a linear gray ramp, but can be modified with GLUT's colormap routines. DESCRIPTION
The initial display mode is used when creating top-level windows, subwindows, and overlays to determine the OpenGL display mode for the to- be-created window or overlay. Note that GLUT_RGBA selects the RGBA color model, but it does not request any bits of alpha (sometimes called an alpha buffer or destina- tion alpha) be allocated. To request alpha, specify GLUT_ALPHA. The same applies to GLUT_LUMINANCE. The glutInitDisplayString routine provides a more powerful way to select frame buffer capabilities for GLUT windows. GLUT_LUMINANCE IMPLEMENTATION NOTES GLUT_LUMINANCE is not supported on most OpenGL platforms. SEE ALSO
glutInit, glutCreateWindow, glutInitDisplayString AUTHOR
Mark J. Kilgard (mjk@nvidia.com) GLUT
3.7 glutInitDisplayMode(3GLUT)
All times are GMT -4. The time now is 06:33 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy