up vote 2 down vote favorite
1
share [g+] share [fb]

I have a machine on my network that I can only access through ssh, and I want to see if it'll support a 64-bit OS (currently running linux, but I don't know which). Any ideas how to accomplish this through terminal command/s? thanks.

link|improve this question

75% accept rate
How many duplicates of this question do we need, really? – womble Jan 4 '10 at 0:49
feedback

3 Answers

up vote 7 down vote accepted

cat /proc/cpuinfo

look for the 'lm' flag, it means 'long-mode' i.e. 64-bit capable.

link|improve this answer
feedback

If you want to see the "bitnes" of the OS installed you can run this command.

$ uname -m

Regarding the actual capabilities of the processor you can always look the model up inside /proc.

$ cat /proc/cpuinfo

link|improve this answer
feedback

egrep '(vmx|svm)' --color=always /proc/cpuinfo

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.