Skip to main content

Not sure how useful this is, but I crafted this for Arch:

cat /proc/cpuinfo | grep "model name" /proc/cpuinfo | sed "s/model name   : //" | head -n 1

(Only answered because I searched for Arch and found this; I know the OP asked about Red Hat.)

Not sure how useful this is, but I crafted this for Arch:

cat /proc/cpuinfo | grep "model name" | sed "s/model name   : //" | head -n 1

(Only answered because I searched for Arch and found this; I know the OP asked about Red Hat.)

Not sure how useful this is, but I crafted this for Arch:

grep "model name" /proc/cpuinfo | sed "s/model name   : //" | head -n 1

(Only answered because I searched for Arch and found this; I know the OP asked about Red Hat.)

Source Link
Jesse
  • 355
  • 5
  • 14

Not sure how useful this is, but I crafted this for Arch:

cat /proc/cpuinfo | grep "model name" | sed "s/model name   : //" | head -n 1

(Only answered because I searched for Arch and found this; I know the OP asked about Red Hat.)