Get system info on linux

References
http://rud.web.id/baca/artikel/148/cara-mudah-cek-processor-memory-harddisk-vga-dll
http://www.computerbob.com/guests/how_to_get_system_info_in_linux.php

 
Untuk mengetahui system information di Linux dapat menggunakan beberapa command melalui terminal/konsol, (harus menggunakan user account root):

# cat /proc/cpuinfo | Informasi Processor
# cat /proc/meminfo | Informasi Memory
# lshw | Untuk list perangkat keras
# fdisk -l | Informasi Harddisk dan partisi
# lspci | Informasi lengkap jenis Controller, BUS, PCI, dll
# lspci -nn | Informasi singkat jenis Controller, BUS, PCI, dll
# lspci | grep VGA | Informasi VGA / Display Card
# lspci | grep Eth | Informasi Ethernet Card / NIC / LAN Card
# uname -a | Informasi Kernel dan jenis Processor

Perintah Linux yang lebih lengkap dapat dilihat disini

Leave a Reply

Your email address will not be published. Required fields are marked *