Posted by crazyaboutlinux, 02-11-2010, 10:41 AM | How can I determine if my computer/operating system is 32-bit or 64-bit?
i ran
# uname -a
& got the following result
Linux host.yourname.net 2.6.28.4.sn.p4 #1 SMP Thu Feb 12 10:52:19 EST 2009 i686 i686 i386 GNU/Linux
|
Posted by sitekeeper, 02-11-2010, 10:44 AM | 32 bit, as 64 would say x64
2.6.18-164.11.1.el5 #1 SMP Wed Jan 20 07:32:21 EST 2010 x86_64 x86_64 x86_64 GNU/Linux
|
Posted by madaboutlinux, 02-11-2010, 10:49 AM | To get the exact result, use
64 bit OS will show you something like x64 OR x86_64
|
Posted by shawn_linux, 02-11-2010, 10:50 AM | uname -m this is the command you need to use
|
Posted by crazyaboutlinux, 02-11-2010, 10:58 AM | both commands were displayed i686
-m,it is for machine hardware name
-p,it is for processor
|
Posted by DiegoRBaquero, 02-11-2010, 10:58 AM | i686 i686 i386, this is 32 bit
|
Posted by caisc, 02-11-2010, 05:33 PM | u can use online utility applications to check it out, many of them are free.
|
Posted by crazyaboutlinux, 04-29-2010, 05:59 AM | In order to find whether the processor is 32bit or 64 bit in Linux, use the command
[root@server1 ~]# getconf LONG_BIT
32
Also you can use
[root@server1 ~]# uname -i
i386
|
Posted by inspiron, 04-29-2010, 10:41 AM | If you need to check uname utilities information you can the man pages.
If you use see i386/i486/i586/i686 it is a 32 bit kernel. x86_64 GNU/Linux indicates that you've a 64bit Linux kernel running.
|
Posted by crazyaboutlinux, 04-30-2010, 01:33 AM | i have tried uname -p & uname -i & got following result, both results are different
root@server[~]# uname -p
i686
root@server[~]# uname -i
i386
Nilesh
|
Posted by crazyaboutlinux, 04-30-2010, 01:35 AM | This command will show exact result
|
Posted by Crashus, 04-30-2010, 04:00 AM | it is 32bit system
|
|
Add to Favourites
Print this Article |