如何查找已安装操作系统的体系结构

如何查找已安装操作系统的体系结构

我使用的是 Core 2 Duo。从英特尔网站上我发现它是 64 位架构的 CPU。

很久以前,我在这台机器上安装了 Ubuntu 操作系统。但我不确定我安装的是 x86-32 还是 x86-64 版本的 Linux。我想知道我使用的是哪个版本的 Linux。我该如何知道呢?

我如何在 Windows 上找到相同内容?

答案1

在类 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.

答案2

在 Windows Vista 及更高版本中,您可以运行命令

wmic os get osarchitecture

查明它是 32 位还是 64 位。

答案3

从控制台运行

set 

并查找PROCESSOR_ARCHITECTURE value。就我而言:

PROCESSOR_ARCHITECTURE=AMD64

或者直接从头开始打印

echo %PROCESSOR_ARCHITECTURE%

答案4

对于 Windows,请查看 Microsoft 的此文档。它告诉您如何查找您可能拥有的任何 Windows 版本:

http://support.microsoft.com/kb/827218链接文本

对于 Windows 7,请查看此处的说明:

http://windows.microsoft.com/en-US/windows7/32-bit-and-64-bit-Windows-frequently-asked-questions

相关内容