Ubuntu는 4개의 코어 중 1개만 사용/활성화합니까?

Ubuntu는 4개의 코어 중 1개만 사용/활성화합니까?

CPU:인텔 코어 i7 870... 코어 수 = 4

Ubuntu 17.04 64비트를 설치했습니다(두 번, Ubuntu MATE 17.04 64비트도 시도했습니다. 마찬가지입니다). 4개의 코어 중 1개만 사용되는 것 같습니다.

$ lscpu
 Architecture:          x86_64
 CPU op-mode(s):        32-bit, 64-bit
 Byte Order:            Little Endian
 CPU(s):                1
 On-line CPU(s) list:   0
 Thread(s) per core:    1
 Core(s) per socket:    1
 Socket(s):             1
 NUMA node(s):          1
 Vendor ID:             GenuineIntel
 CPU family:            6
 Model:                 30
 Model name:            Intel(R) Core(TM) i7 CPU         870  @ 2.93GHz
 Stepping:              5
 CPU MHz:               2926.117
 BogoMIPS:              5852.23
 Virtualization:        VT-x
 L1d cache:             32K
 L1i cache:             32K
 L2 cache:              256K
 L3 cache:              8192K
 NUMA node0 CPU(s):     0
 Flags:                 fpu vme de pse tsc msr pae mce cx8 sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 popcnt lahf_lm tpr_shadow vnmi flexpriority ept vpid dtherm ida

$ nproc
 1

1BIOS 설정에서 , 2또는 코어 사용 중에서 선택할 수 있지만 All어떤 값을 선택하든 상관없이 우분투는 하나만 사용합니다.

여기서 무엇이 잘못되었을 수 있는지 아시나요? 어떻게든 다른 코어를 비활성화할 수 있었을까요?

답변1

커널 부팅 매개변수를 확인했는데 (이유는 모르겠지만) nolapic설정되었습니다. 이 매개변수를 제거하고 재부팅한 후에는 모든 것이 정상이었습니다.

세부 사항: 줄에서 편집 /etc/default/grub하고 제거한 다음 grub을 업데이트 하고 재부팅했습니다.nolapicGRUB_CMDLINE_LINUX="..."sudo update-grub

관련 정보