CPU 클럭
사용 : cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq (KHz단위로 표시 : 900MHz이면 900000으로 표시)
CPU 온도
사용1 : cat /sys/class/thermal/thermal_zone0/temp (47615 이런 식으로 나오는데 1000을 나누어 읽는다, =47.6℃)
사용2 : vcgencmd measure_temp (기본유틸리티인 vcgencmd를 이용, 47.6'c로 표시됨.)
* vcgencmd 유틸은 온도, 전압 측정 등 여러가지 기능이 있다.
top : 프로세서 상태 확인(이미 설치되어 있음.)
사용 : top
htop : CPU 및 RAM Usage를 한눈에 볼 수 있는 작업관리자, 설치시 X-Window에서도 볼 수 있다.
설치 : sudo apt-get install htop
사용 : htop
Iftop 실시간 네트웍 트래픽 확인
설치 : sudo apt-get install iftop
사용 : sudo iftop -i eth0 *eth0 : ifconfig 명령으로 확인된 네트웍 ID, 마치려면 Cntl+C.
nmap : IP/포트 스캔
설치 : sudo apt-get install nmap
사용예
1.열려 있는 port 확인
pi@raspberrypi ~ $ nmap localhost |
Starting Nmap 6.00 ( http://nmap.org ) at 2015-07-02 15:09 KST Nmap scan report for localhost (127.0.0.1) Host is up (0.0019s latency). Other addresses for localhost (not scanned): 127.0.0.1 Not shown: 994 closed ports PORT STATE SERVICE 21/tcp open ftp 22/tcp open ssh 139/tcp open netbios-ssn 445/tcp open microsoft-ds 3389/tcp open ms-wbt-server 9091/tcp open xmltec-xmlmail Nmap done: 1 IP address (1 host up) scanned in 0.50 seconds |
2.
pi@raspberrypi ~ $ nmap -sP 192.168.0.1-255 |
Starting Nmap 6.00 ( http://nmap.org ) at 2015-07-02 15:12 KST Stats: 0:00:33 elapsed; 0 hosts completed (0 up), 255 undergoing Ping Scan Ping Scan Timing: About 32.35% done; ETC: 15:14 (0:01:11 remaining) Nmap done: 255 IP addresses (0 hosts up) scanned in 103.21 seconds |
'IT > 라즈베리파이2' 카테고리의 다른 글
스마트폰으로 X윈도우 제어 (0) | 2015.06.18 |
---|---|
kodi 14.2 exit bug대책, kodi 15.0설치 (0) | 2015.06.18 |
리눅스 프로세서 관리 (0) | 2015.06.17 |
라즈베리파이 자동 로그인 (0) | 2015.06.17 |
라즈베리파이2 외장하드 연결 (0) | 2015.06.17 |