如何判断我的服务器运行的是 64 位 Ubuntu 还是 32 位

如何判断我的服务器运行的是 64 位 Ubuntu 还是 32 位

可能重复:
确定 Linux 服务器的架构(32 位或 64 位)

我想安装一个软件包,它有 32 位 ubuntu 版本和 64 位版本。我如何知道我的服务器上正在运行哪一个?

答案1

如果你想检查版本包裹而不是服务器的版本,请执行以下任一命令:

dpkg -s <packagename>
dpkg -p <packagename>

打印出包裹的详细信息。例如,它将如下所示:

$ dpkg -s zip
Package: zip
Status: install ok installed
Priority: optional
Section: utils
Installed-Size: 644
Maintainer: Ubuntu Core Developers <[email protected]>
Architecture: amd64
Version: 3.0-1ubuntu1
Replaces: zip-crypt (<= 2.30-2)
Depends: libc6 (>= 2.7)
Recommends: unzip
Conflicts: zip-crypt (<= 2.30-2)
Description: Archiver for .zip files
 This is InfoZIP's zip program. It produces files that are fully
 compatible with the popular PKZIP program; however, the command line
 options are not identical. In other words, the end result is the same,
 but the methods differ. :-)
 .
 This version supports encryption.
Original-Maintainer: Santiago Vila <[email protected]>

答案2

你知道当你输入一个问题时,它会列出类似的问题吗?嗯,看看它们是有意义的,因为这个问题可能之前已经被问过;

确定 Linux 服务器的架构(32 位或 64 位)

答案3

嗯..如果其他人想知道,我已经知道了:

uname -m

答案4

如果您有 64 位服务器,它可以运行 32 位或 64 位,但只要有可能,我都会坚持使用 64 位。而 Ubuntu 通常会坚持使用我安装时使用的版本。

相关内容