Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
How to detrmine 32 os 64 bit OS
Name: spazmogizmo Date: January 12, 2004 at 15:53:28 Pacific OS: Solaris 2.6 CPU/Ram: 4/1GB
Comment:
How can I determine 32 bit or 64 bit on Solaris 2.6 isainfo is not found
Name: sch Date: January 22, 2004 at 21:25:39 Pacific
Reply:
If /usr/bin/isainfo cannot be found, then the OS only supports 32-bit process address spaces. (Solaris 7 was the first version that could run 64-bit binaries on certain SPARC-based systems.)
So a ksh-based test might look something like
if [ -x /usr/bin/isainfo ]; then bits=`/usr/bin/isainfo -b` else bits=32 fi
Summary: We've just inherited a solaris box running solaris 8 and Oracle. I need to find out whether or not we are running 32 or 64 bit, so i can download the correct oracle patches. Any help would be greatly ...
Summary: Does anyone know how to check the Kernal bit 32 or 64 of installed Solaris Sparc OS ? ( I try uname but can not find the result. I remeber maybe see such info during startup, but I need the command, ...