up vote 25 down vote favorite
15
share [g+] share [fb]

When I type uname -a, it gives the following output.

Linux mars 2.6.9-67.0.15.ELsmp #1 SMP Tue Apr 22 13:50:33 EDT 2008 i686 i686 i386 GNU/Linux

How can I know from this that the given OS is 32 or 64 bit?

This is useful when writing configure scripts, for example: what architecture am I building for?

link|improve this question
feedback

6 Answers

up vote 36 down vote accepted

Did you try uname -m ?

It seems like the uname -m actually gives

  • x86_64 when it is an kernel 64 bits
  • i686 for 32 bits kernel

Otherwise, not for the Linux kernel, but for the CPU, you type:

cat /proc/cpuinfo

or:

grep flags /proc/cpuinfo

Under "flags" parameter, you will see various values. Among them, one is named "tm(transparent mode)" or "rm(real mode)" or "lm(long mode)"

  1. rm means: 16 bit processor
  2. tm means: 32 bit processor
  3. lm means: 64 bit processor

Note: you can have a 64-bit CPU with a 32-bit kernel installed"

link|improve this answer
grep flags /proc/cpuinfo only tells you wether the CPU is 64bit. As I understand the question it was about the OS. uname -m only tells me "i686". – Kim Stebel Aug 23 '09 at 16:40
I run a 32bit kernel. – Kim Stebel Aug 23 '09 at 16:41
@Kim: true. I have update my answer to adequately reflect the difference between the kernel and the CPU – VonC Aug 25 '09 at 14:12
I have a 32 bit kernel on 64 bit hardware and get "x86_64" from 'uname -m' (on Debian). The man page for uname says that -m shows the machine hardware name, so that seems correct. – Tony Meyer Sep 4 '09 at 20:33
feedback

If you were running a 64 bit platform you would see x86_64 or something very similar in the output from uname -a

To get your specific machine hardware name run

uname -m

You can also call

getconf LONG_BIT

which returns either 32 or 64

link|improve this answer
4  
That getconf LONG_BIT is especially convenient, thanks! – chronos Mar 26 '10 at 22:59
uname -m outputs x86_64 getconf LONG_BIT outputs 32 Which one is correct ?? :\ – Stephan Nov 19 '11 at 21:13
That means the CPU is 64-bit, but you've only installed a 32-bit operating system upon it, even though you could have used a 64-bit one. – Steve Kemp Nov 28 '11 at 0:17
feedback

That system is 32bit. iX86 in uname means it is a 32bit arch, if it was 64 bit it would return

Linux mars 2.6.9-67.0.15.ELsmp #1 SMP Tue Apr 22 13:50:33 EDT 2008 x86_64 i686 x86_64 x86_64 GNU/Linux
link|improve this answer
feedback

Wrt the answer "getconf LONG_BIT" above:

I wrote a simple function to do it in 'C':

/*
 * check_os_64bit
 *
 * Returns integer:
 *   1 = it is a 64-bit OS
 *   0 = it is NOT a 64-bit OS (probably 32-bit)
 *   < 0 = failure
 *     -1 = popen failed
 *     -2 = fgets failed
 *
 * **WARNING**
 * Be CAREFUL! Just testing for a boolean return may not cut it 
 * with this (trivial) implementation! (Think of when it fails,
 * returning -ve; this could be seen as non-zero & therefore true!)
 * Suggestions?
 */
static int check_os_64bit(void)
{
 FILE *fp=NULL;
 char cb64[3];

 fp = popen ("getconf LONG_BIT", "r");
 if (!fp)
    return -1;

 if (!fgets(cb64, 3, fp))
    return -2;

  if (!strncmp (cb64, "64", 3)) {
    return 1;
 } else {
    return 0;
 }
}

Good idea, the 'getconf'! Thx, kaiwan.

link|improve this answer
feedback

If you have a 64 bits OS, instead of i686, you have x86_64 or ia64 in the output of uname -a In you do not have any of these 2 strings, you have a 32 bits OS (note that this does not mean that your CPU is not 64 bits)

link|improve this answer
feedback

I was wondering this specifically for building software in Debian (the installed Debian system can be a 32 bit version with a 32 bit kernel, libraries etc., or it can be a 64 bit version with stuff compiled for the 64 bit rather than 32 bit compatability mode). Debian packages themselves need to know what architecture they are for of course when they actually create the package with all of its metadata, including platform architecture, so there is a packaging tool that outputs it for other packaging tools and scripts to use, called dpkg-architecture. It includes both what its configured to build for, as well as the current host. (Normally these are the same though.) Example output on a 64-bit machine:

DEB_BUILD_ARCH=amd64
DEB_BUILD_ARCH_OS=linux
DEB_BUILD_ARCH_CPU=amd64
DEB_BUILD_GNU_CPU=x86_64
DEB_BUILD_GNU_SYSTEM=linux-gnu
DEB_BUILD_GNU_TYPE=x86_64-linux-gnu
DEB_HOST_ARCH=amd64
DEB_HOST_ARCH_OS=linux
DEB_HOST_ARCH_CPU=amd64
DEB_HOST_GNU_CPU=x86_64
DEB_HOST_GNU_SYSTEM=linux-gnu
DEB_HOST_GNU_TYPE=x86_64-linux-gnu

You can print just one of those variables or do a test against their values with command line options to dpkg-architecture.

I have no idea how dpkg-architecture deduces the architecture but you could look at its docs or source code (dpkg-architecture and much of the dpkg system in general are perl)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.