我正在使用Core 2 Duo。在英特尔网站上,我发现它是64位架构的CPU。
很久以前,我已经在这台机器上安装了Ubuntu OS。但是我不确定是否安装了x86-32或x86-64版本的Linux。我想知道我正在使用哪个版本的Linux。我怎么知道呢?
如何在Windows上找到相同的内容?
我正在使用Core 2 Duo。在英特尔网站上,我发现它是64位架构的CPU。
很久以前,我已经在这台机器上安装了Ubuntu OS。但是我不确定是否安装了x86-32或x86-64版本的Linux。我想知道我正在使用哪个版本的Linux。我怎么知道呢?
如何在Windows上找到相同的内容?
Answers:
在类Unix操作系统上,您可以键入uname -m
以显示体系结构:
$ uname -m
x86_64
在Windows下,遵循Microsoft的指南:
若要确定您的计算机是否在Windows 7或Windows Vista中运行32位或64位版本的Windows,请执行以下操作:
Open System by clicking the Start button, right-clicking Computer, and then clicking Properties.
Under System, you can view the system type.
If your computer is running Windows XP, do the following:
Click Start.
Right-click My Computer, and then click Properties.
If you don't see "x64 Edition" listed, then you're running the 32-bit version of Windows XP.
If "x64 Edition" is listed under System, you're running the 64-bit version of Windows XP.
作为Tofystedeth的答案的补充,在Windows XP(及更高版本)中,您可以使用cpu
的AddressWidth和DataWidth获取所需的数据。
如果要查找操作系统的体系结构:
wmic cpu get AddressWidth
如果要查找处理器本身的体系结构:
wmic cpu get DataWidth
wmic installing...
出错,然后您遇到错误,那么对我wmic
wmic:root\cli>
cpu get AddressWidth
cpu get DataWidth
32
wmic
对于Windows,请从Microsoft签出此文档。它告诉您如何查找可能具有的任何Windows版本:
http://support.microsoft.com/kb/827218 链接文本
对于Windows 7,请在此处查看说明:
http://windows.microsoft.com/zh-CN/windows7/32-bit-and-64-bit-Windows-frequently-asked-questions
对于Windows 10 ... 设置 → 系统,然后关于(左下角)。它应在“ 设备规范:64位操作系统和基于x64的处理器”下列出。