Author Archives: bachem

Find file on linux

# find / -name ‘squid’ -type d
# find / -name squid
# find / -iname squid.conf

Note:
the fist parameter “/” is where to look in this case “/” the entire system.
-name could be -iname to ignore case also -type is not mandatory

For more options
# man find

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