-3

What command can I run to tell whether SunOS 5.10 is running a SPARC or Intel chip?

  • 4
    Don't use people as a search engine. – Spooler Apr 10 '18 at 19:15
  • This question is being voted for closure because the author does not show a level of technical understanding or appropriate due diligence in researching the topic that the community judges as being a minimum barrier to participate. – Jenny D Apr 23 '18 at 11:46

1 Answers1

3

run "uname -p". sparc will say "sparc", intel will say "i386". Alternately, run "prtdiag -v" and look at the cpu section.

Doke
  • 111
  • 1
  • 2