- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: How do I determine if the hardware of linux se...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 05:04 PM
04-03-2006 05:04 PM
How do I determine if the hardware of linux server is 32-bit or 64-bit
We have a lot of linux (both redhat and suse) servers in our lab. How do I determine the hardware they are on is 32bit or 64bit. Please suggest.
Thanks & Regards,
-GnanaShekar-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 06:18 PM
04-03-2006 06:18 PM
Re: How do I determine if the hardware of linux server is 32-bit or 64-bit
uname -a
You will see a 64 bit reference on 64 bit platforms.
Here is the output from a 32 bit system.
Linux cleartux 2.6.9-22.0.1.ELsmp #1 SMP Tue Oct 18 18:39:27 EDT 2005 i686 i686 i386 GNU/Linux
Notice the i386
That means 32 bit.
You can also figure it out by looking up the model number of the system on the manufacturer's website.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 06:25 PM
04-03-2006 06:25 PM
Re: How do I determine if the hardware of linux server is 32-bit or 64-bit
The command uname -a will tell you whether your hardware is 64-bit compatible.
Example;
#uname -a
Linux hipath2 2.6.5-7.97-smp #1 SMP Fri Jul 2 14:21:59 UTC 2004 i686 i686 i386 GNU/Linux
Here, i686 means it is 64-bit h/w.
HTH,
Prabu.S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 06:47 PM
04-03-2006 06:47 PM
Re: How do I determine if the hardware of linux server is 32-bit or 64-bit
It'll be 64bit if it says ia64 of x64 somewhere in that output.
Read this thread for more info : http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=939191 or http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=597549
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 08:28 PM
04-03-2006 08:28 PM
Re: How do I determine if the hardware of linux server is 32-bit or 64-bit
This is the command :
getconf WORD_BIT
This will give whether ur system is 32 bit or 64
Cheers
Vipul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2006 01:22 AM
04-04-2006 01:22 AM
Re: How do I determine if the hardware of linux server is 32-bit or 64-bit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2006 10:38 AM
04-04-2006 10:38 AM
Re: How do I determine if the hardware of linux server is 32-bit or 64-bit
(Nor do I really, but hey! I don't own any).
But there are other 64bit processors, just not near the x86 world.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2006 04:31 PM
04-04-2006 04:31 PM
Re: How do I determine if the hardware of linux server is 32-bit or 64-bit
Also, remember that EMT64 is only 64 bit extension for the Intel processor.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2006 11:22 PM
04-04-2006 11:22 PM
Re: How do I determine if the hardware of linux server is 32-bit or 64-bit
The command uname -a will tell you whether your hardware is 64-bit compatible.
Regards,
Siva.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 02:29 AM
04-05-2006 02:29 AM
Re: How do I determine if the hardware of linux server is 32-bit or 64-bit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 05:29 AM
04-05-2006 05:29 AM
Re: How do I determine if the hardware of linux server is 32-bit or 64-bit
The 'getconf WORD_BIT' command tells the number of bits in an int. That is only 32 on either a 32-bit or 64-bit processor. You could use "getconf LONG_BIT", which is the number of bits in a long. That happens to be 32 on linux systems with 32-bit pointers and 64 on linux systems with 64-bit pointers. It is not really tied by definition to match the size of a pointer. But it is a practical convention.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2006 04:03 AM
04-06-2006 04:03 AM
Re: How do I determine if the hardware of linux server is 32-bit or 64-bit
ioscan on HP-UX
lshw --short == ioscan
http://ezix.org/project/wiki/HardwareLiSter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2006 05:27 AM
04-07-2006 05:27 AM
Re: How do I determine if the hardware of linux server is 32-bit or 64-bit
The only sure way to know if you have a 64-bit ready hardware (possibly running a 32-bit Linux OS version) is to check the processor model in /proc/cpuinfo.
If it says "Itanium", the hardware is 64bit-only.
If your processor is Athlon 64 (Opteron) or one of the new Xeons, your hardware is capable of running in either 32- or 64-bit mode, and the "uname" or "getconf" methods will tell you which it is currently running.
Anything else on a typical PC hardware is 32bit only.