我正在使用 32 位 Ubuntu 14.4 LTS。如何判断我的计算机是否可以运行 64 位操作系统?我对架构和 CPU 操作模式感到困惑。
摘自/proc/cpuinfo
:
$ grep " lm " /proc/cpuinfo
flags : fpu vme de pse tsc msr pae mce cx8 apic sep 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 vmx est tm2 ssse3 cx16 xtpr pdcm xsave lahf_lm dtherm tpr_shadow vnmi flexpriority
输出lscpu
:
kamal@kamal-G31T-M7:~$ lscpu
Architecture: i686
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 2
On-line CPU(s) list 0, 1
Thread(s) per core: 1
Core(s) per socket: 2
Socket(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 23
Stepping: 10
CPU MHz: 2793.084
BogoMIPS: 5586.16
Virtualization: VT-x
L1d cache: 32K
L1i cache: 32K
L2 cache: 2048K
…
如果你看这
CPU op-mode(s)
条线,你会看到一个线索:所以是的,您的 CPU 支持 64 位指令。如果您愿意,可以使用 64 位版本的 Ubuntu。这将需要重新安装,没有升级路径。
您将遇到的大多数CPU(当然是过去十年左右的)可能都支持 64 位。这不能保证,因为英特尔仍然生产 132 个 32 位 CPU,但这些都是超预算的 Atom、Celeron 和 Pentium、专用 Xeon 和一些 SoC。AMD 的产品与此类似。
如果你能找出CPU 是什么(即读取
Model name
输出),你最终会得到一些非常适合 Google 的东西。这是我的一台服务器:这给出了这个Intel ARK 页面,它告诉您所有 CPU 功能和支持的架构。当然,您的链接将与该链接不同,但它非常可靠且更易于阅读,然后破译 和 中的
lscpu
标志cat /proc/cpuinfo
。请不要对输出感到困惑。
要从Ubuntu进行交叉检查:
所以,运行命令:
您将获得 CPU 的型号。做一个谷歌搜索,在那里你会找到一些关于你的 CPU 是否是 64 位的信息。
来自英特尔:
您的 CPU 支持 64 位系统。
中可以看到
CPU op-mode(s)
。