Category Archives: Inf. Tech

Cara mengetahui running services di CentOS/RedHat


Berikut cLi untuk melihat daftar running services di CentOS/RedHat :

– Service command,melihat daftar running services
# service --status-all
# service --status-all | grep ntpd
# service --status-all | less

Contoh command untuk mengetahui status apache (httpd) service:
# service httpd status

– List all known services (configured via SysV)
# chkconfig --list

– List service and their open ports
# netstat -tulpn

– Turn on / off service
# ntsysv
ntsysv adalah interface sederhana untuk setting runlevel services dimana biasanya bisa disetting dari chkconfig.

Contoh command chkconfig:
# chkconfig httpd off
# chkconfig ntpd on

 


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