리눅스의 커맨드 라인에서 다음과 같은 정보를 얻는 방법이 궁금합니다.
- 워드 (즉, CPU가 한 번에 처리 할 수있는 크기 (OS 비트 깊이가 아닐 수 있음)),
- 주소 크기 (예 : 실제 주소의 비트 수)
- 주소 버스 크기 (정의상 주소 크기와 같은지 확실하지 않지만 서로 다르고 동의하지 않을 수 있음),
- 데이터 버스 크기,
- 지시 크기?
답변
DO가 cat /proc/cpuinfo
결과에와보고 :
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 23
model name : Genuine Intel(R) CPU U4100 @ 1.30GHz
stepping : 10
cpu MHz : 1200.000
cache size : 2048 KB
physical id : 0
siblings : 2
core id : 1
cpu cores : 2
apicid : 1
initial apicid : 1
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts aperfmperf pni dtes64 monitor ds_cpl est tm2 ssse3 cx16 xtpr pdcm xsave lahf_lm
bogomips : 2593.48
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:
찾고있는 많은 정보가 여기에서 유추 될 수 있습니다.
답변
getconf WORD_BIT
getconf LONG_BIT
(긴 정수의 크기)arch
예를 들어, Fedora 14 x64 시스템에서 :
% uname -a
Linux grinchy 2.6.35.14-106.fc14.x86_64 #1 SMP Wed Nov 23 13:07:52 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux
% getconf WORD_BIT
32
% getconf LONG_BIT
64
% arch
x86_64