Reputation: 8917
When I run uname -a, I get:
Linux 2.6.18-164.el5 #1 SMP Tue Aug 18 15:51:48 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux
and I understand that x86_64 is supposed to imply 64-bit kernel, but why does this number appear 3 times? What does each instance signify?
Upvotes: 1
Views: 399
Reputation:
Uname has separate commands to print "machine, processor and hardware platform" -- all of these are all the same in your case. The following outputs, respectively, may make it clear:
~$ uname -m # print machine
x86_64
~$ uname -p # print processor
x86_64
~$ uname -i # print hw platform
x86_64
Upvotes: 4
Reputation: 643
use uname -m command to display only name of the kernel.
in your case
uname -m
x86_64
means 64-bit
Upvotes: 3
Reputation: 1117
will give you all details about your system. It includes machine hardware name, processor type & hardware platform too.
So,
Use:
to get more idea about its options.
Upvotes: 2