Linux 명령줄에서 다음에 대한 정보를 얻는 방법을 알고 싶습니다.
- 단어(즉, CPU가 한 번에 처리할 수 있는 크기, 이는 OS 비트 심도가 아닐 수 있음)
- 주소 크기(즉, 실제 주소의 비트 수)
- 주소 버스 크기(정의된 주소 크기와 동일한지는 확실하지 않지만 서로 다르며 동의하지 않을 수도 있음)
- 데이터 버스 크기,
- 명령어 크기?
답변1
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
답변2
실행 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:
당신이 찾고 있는 대부분의 정보는 여기에서 추론될 수 있습니다.