Ubuntu 僅使用/啟用 4 個核心中的 1 個?

Ubuntu 僅使用/啟用 4 個核心中的 1 個?

中央處理器:英特爾酷睿 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

在 BIOS 設定中,我可以選擇使用12Allcores,但無論選擇哪個值,ubuntu 都只使用一個。

您知道這裡可能出了什麼問題嗎?我是否可以以某種方式禁用其他核心?

答案1

我檢查了內核啟動參數並(不知道為什麼)nolapic已設定。刪除此參數並重新啟動後一切正常。

詳細說明:我在該行中進行了編輯/etc/default/grub和刪除,然後更新了 grub並重新啟動。nolapicGRUB_CMDLINE_LINUX="..."sudo update-grub

相關內容