시스템 명령어 3

[각 OS별]커널 bit 확인 하는 법 32/64bit

간단한 명령어로 확인이 가능하다. LONG 때문에 TCP 통신하는 경우 32/64bit 간에 오류가 나게 되는데 아래와 같이 하면 쉽게 확인이 된다. 출처 : http://baljack.tistory.com/6 LINUX # getconf LONG_BIT HP UX 11.xx 일 경우 # getconf KERNEL_BITS 64 10.xx 일 경우 # getconf LONG_MAX 2147483647 (64비트임)로 확인할 수 있습니다 AIX 현재 load된 kernel 이 32-bit 혹은 64-bit 인지 확인하는 명령어 # bootinfo -K 32 사용중인 machine이 32-bit 혹은 64-bit 인지 확인하는 명령어 # bootinfo -y 32 SOLARIS # isainfo -kv 64..

엔지니어 2012.07.12

LINUX 디스크, CPU 정보 확인 명령

출처 : http://liverpooh.tistory.com/1 디스크 사용량 확인하기 #df -mh Filesystem Size Used Avail Use% Mounted on /dev/mapper/VolGroup00-LogVol00 73G 7.0G 62G 11% / /dev/hda1 99M 12M 82M 13% /boot none 251M 0 251M 0% /dev/shm CPU 정보 확인하기 # more /proc/cpuinfo processor : 0 vendor_id : GenuineIntel cpu family : 15 model : 2 model name : Intel(R) Pentium(R) 4 CPU 3.20GHz stepping : 9 cpu MHz : 3208.132 cache siz..

엔지니어 2012.07.11

[명령어]OS 별 CPU, Memory, 커널Bit 확인방법

OS별로 자주 쓰이는 CPU, Memory등의 정보확인 방법에 대한 비교이다. 일부 command는 Root 권한으로 수행되어야 한다. 1. CPU 정보 AIX lsdev -Cc processor HP-UX ioscan -fnC processor SOLARIS psrinfo -v Tru64 psrinfo -v LINUX cat /proc/cpuinfo 2. Physical RAM AIX bootinfo -r HP-UX grep -i Physical /var/adm/syslog/syslog.log SOLARIS Prtconf Tru64 uerf | grep memory LINUX free 3. Kernel Bits AIX bootinfo -K HP-UX getconf KERNEL_BITS SOLARIS i..

엔지니어 2011.08.11