I have 2 Linux systems. uname -p option is not available in one of my Linux systems, but available in other Linux system...

output:

# uname -p
Try uname --help' for more information.
#

How i could get that option? Is it good to use uname -m instead uname -p?

Thanks in advance.

link|improve this question

50% accept rate
It would be helpful if you post which versions of Linux those 2 are. Furthermore what happens if you execute uname -p? Is there an error message? Does it say 'unknown'? – Speckinius Flecksis Dec 20 '11 at 11:12
similar issue with Ubuntu: linux.derkeiler.com/Mailing-Lists/Ubuntu/2007-02/msg02063.html – pmod Dec 20 '11 at 11:20
feedback

closed as off topic by cularis, unwind, Cédric Julien, glglgl, gpojd Dec 20 '11 at 14:26

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

2 Answers

From the man page :

«The uname utility conforms to IEEE Std 1003.2-1992 (``POSIX.2''). The -p option is an extension to the standard.»

So I imagine you have different versions of uname on your different Linux systems.

link|improve this answer
feedback

you can try:

lscpu | awk '/^Architecture:/{print $2}'

It should give you same result as uname -p. However I don't guarantee you have lscpu.

Another option is to use python's uname() function:

python -c 'import os; print os.uname()[4]'
link|improve this answer
feedback

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