Ich habe gerade einen Athlon II X2 Regor Proc mit einem Foxconn M / B und 4 GB G-Skill-Speicher erhalten.
Ich setze meine 'cat / proc / cpuinfo' und 'free' am Ende, damit andere meine Spezifikationen sehen können. Es ist ein Dual-Core-Athlon II x2 mit 4 GB RAM.
uname -a on default slackware 14.0 kernel is 3.2.45.
Ich habe die Kernelquelle des nächsten Schritts (Linux-3.2.46) auf / archive4 heruntergeladen.
extrahierte es ( tar -xjvf linux-3.2.46.tar.bz2
);
cd'd in das Verzeichnis ( cd linux-3.2.46
);
und kopierte die Konfiguration des Standardkernels über ( cp /usr/src/linux/.config .
);
wird verwendet make oldconfig
, um die 3.2.46-Kernelkonfiguration vorzubereiten;
dann lief make mit verschiedenen Beschwörungen von -jX.
Ich habe die Timings jedes Laufs getestet, indem ich make nach dem Befehl time ausgegeben habe, z. B. 'time make -j2'. Zwischen jedem Lauf habe ich den Linux-3.2.46-Baum 'rm -rf' erstellt und erneut extrahiert, die Standardeinstellung /usr/src/linux/.config in das Verzeichnis kopiert, make oldconfig ausgeführt und dann meinen 'make -jX'-Test erneut durchgeführt .
einfach "machen":
real 51m47.510s
user 47m52.228s
sys 3m44.985s
bob@Moses:/archive4/linux-3.2.46$
wie oben, aber mit make -j2
real 27m3.194s
user 48m5.135s
sys 3m39.431s
bob@Moses:/archive4/linux-3.2.46$
wie oben, aber mit make -j3
real 27m30.203s
user 48m43.821s
sys 3m42.309s
bob@Moses:/archive4/linux-3.2.46$
wie oben, aber mit make -j4
real 27m32.023s
user 49m18.328s
sys 3m43.765s
bob@Moses:/archive4/linux-3.2.46$
wie oben, aber mit make -j8
real 28m28.112s
user 50m34.445s
sys 3m49.877s
bob@Moses:/archive4/linux-3.2.46$
'cat / proc / cpuinfo' ergibt:
bob@Moses:/archive4$ cat /proc/cpuinfo
processor : 0
vendor_id : AuthenticAMD
cpu family : 16
model : 6
model name : AMD Athlon(tm) II X2 270 Processor
stepping : 3
microcode : 0x10000c8
cpu MHz : 3399.957
cache size : 1024 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 5
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmo
v pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rd
tscp lm 3dnowext 3dnow constant_tsc nonstop_tsc extd_apicid pni monitor cx16 p
opcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowpre
fetch osvw ibs skinit wdt npt lbrv svm_lock nrip_save
bogomips : 6799.91
clflush size : 64
cache_alignment : 64
address sizes : 48 bits physical, 48 bits virtual
power management: ts ttp tm stc 100mhzsteps hwpstate
processor : 1
vendor_id : AuthenticAMD
cpu family : 16
model : 6
model name : AMD Athlon(tm) II X2 270 Processor
stepping : 3
microcode : 0x10000c8
cpu MHz : 3399.957
cache size : 1024 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 : 5
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmo
v pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rd
tscp lm 3dnowext 3dnow constant_tsc nonstop_tsc extd_apicid pni monitor cx16 p
opcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowpre
fetch osvw ibs skinit wdt npt lbrv svm_lock nrip_save
bogomips : 6799.94
clflush size : 64
cache_alignment : 64
address sizes : 48 bits physical, 48 bits virtual
power management: ts ttp tm stc 100mhzsteps hwpstate
"freie" Erträge:
bob@Moses:/archive4$ free
total used free shared buffers cached
Mem: 3991304 3834564 156740 0 519220 2515308
make `nproc`
, um CPU-unabhängiges Skript zu machen :)