Is there a quick way to get the machine specs from the terminal? (GPU model, memory, CPU model, memory etc). I am getting the info bit by bit by different commands such as lscpu and lspci but cant get the complete picture
EDIT:No it does not answer my question since many of the answers are not from the terminal.
lshw
will show all of that. If that output is too much, theninxi
,neofetch
orscreenfetch
can show more condensed information – muru Jun 15 '23 at 08:28sudo lshw | less
to scroll easily through the output from lshw. – sudodus Jun 15 '23 at 08:54