Finding out spec's of PC through Ubuntu

Asked by DChampnoise

I am trying to find out what kind of memory I have inside my computer without opening it up?

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
Sam_
Solved:
Last query:
Last reply:
Revision history for this message
Brent Plummer (brentplummer) said :
#1

System>Administration>System Monitor>'System' Tab

Revision history for this message
DChampnoise (avaterusa) said :
#2

I just wish it would tell me what kind of RAM I have.

Revision history for this message
Mark Rijckenberg (markrijckenberg) said :
#3

Hi,

Enter following commands:

sudo lshw -C MEMORY
sudo dmidecode

Regards,

Mark

Revision history for this message
Best Sam_ (and-sam) said :
#4

Hi,
for a graphical overview install with Synaptic 'hardinfo'.
Most detailed information you'll always get from commands in a terminal.
e.g.
$sudo hdparm -i /dev/sda
##hdparm Options:
-c get/set IDE 32-bit IO setting
-d get/set using_dma flag
-i display drive identification
-I detailed/current information directly from drive
-k get/set keep_settings_over_reset flag (0/1)
-p set PIO mode on IDE interface chipset (0,1,2,3,4,...)
-t perform device read timings
-T perform cache read timings
-X set IDE xfer mode (DANGEROUS)

$cat /proc/meminfo

$hwinfo --help ##without help long output
$lspci ##long output
$lshw ##long output

$sudo dmidecode -s system-manufacturer
$sudo dmidecode -s system-product-name
$sudo dmidecode -s system-version

Revision history for this message
DChampnoise (avaterusa) said :
#5

Thanks Sam, that solved my question.