Files
nexus/wiki/sources/ru-he-pan-bie-ni-de-linux-fu-wu-qi-shi-x64-huan-shi-arm64.md
2026-04-14 16:02:50 +08:00

34 lines
1.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "如何判别你的Linux服务器是x64还是ARM64"
type: source
tags: [linux]
date: 2026-04-14
source_file: raw/Technical/Home Office/🟠如何判别你的Linux 服务器是 x64也就是 x86_64还是 ARM64.md
---
## Summary
- 核心主题识别Linux服务器的CPU架构类型
- 问题域:系统架构检测
- 方法/机制使用uname、lscpu、/proc/cpuinfo、file命令
- 结论/价值:确认架构以便安装对应版本的软件
## Key Claims
- uname -m输出x86_64表示Intel/AMD 64位架构aarch64表示ARM64
- lscpu的Architecture字段直接显示CPU类型
- /proc/cpuinfo中model name显示Intel类型ARM64显示AArch64/ARMv8
- file命令检测可执行文件架构
## Key Concepts
- [[x86_64]]Intel/AMD 64位处理器架构
- [[ARM64]]64位ARM处理器架构又称aarch64
- [[CPU架构检测]]:通过命令行识别系统架构
## Key Entities
- [[Linux]]:开源操作系统内核
## Connections
- [[Linux]] ← 运行在 ← [[x86_64]]
- [[Linux]] ← 运行在 ← [[ARM64]]
## Contradictions