Files
nexus/wiki/sources/如何判别你的Linux-服务器是-x64-还是-ARM64.md
weishen f9ac3145ab feat(wiki): ingest remaining subdirectories batch (51 files)
- Others: ChinaTextbook, Obsidian笔记系列, YouTube Channel ID, TikTok PM Django
- Skills: GOG CLI, Last30Days, baoyu-skills
- Vibe Coding: Cursor 2.0, Trae远程开发, Vibe-Kanban+OpenCode, vibe coding经验
- 微信公众号: 养虾日记1-5, AI时代赚钱
- 跨境电商: TikTok数据抓取, 选品策略, Superset Dashboard
- AI目录补充: 20个文件

Source pages: 51
Entities: TapXWorld, VibeKanban, OpenCode, Trae, SourceGrounding等
Concepts: 自举Meta生成, 5大设计原则, MD5去重, 混合搜索等
2026-04-14 20:48:34 +08:00

39 lines
1.2 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也就是 x86_64还是 ARM64"
type: source
tags: [linux, 架构, x64, arm64]
date: 2025-09-15
---
## Source File
- [[raw/Home Office/如何判别你的Linux 服务器是 x64也就是 x86_64还是 ARM64.md]]
## Summary
- 核心主题:判别 Linux 服务器 CPU 架构类型x86_64 vs ARM64
- 问题域:硬件架构识别
- 方法/机制:通过 uname/lscpu/proc/cpuinfo/file 等命令检测
- 结论/价值:确保下载正确的软件版本(如 FRP 需要选择对应架构版本)
## Key Claims
- uname -mx86_64Intel/AMD或 aarch64ARM
- lscpuArchitecture 字段直接显示 CPU 类型
- cat /proc/cpuinfox86_64 有 model nameARM64 显示 AArch64/ARMv8
- file /bin/bash检测可执行文件对应的 CPU 架构
## Key Quotes
> "uname -mx86_64 → 64位 x86Intel/AMDaarch64 → 64位 ARM 架构" — 最快速的架构判断方法
## Key Concepts
- [[x86_64]]Intel/AMD 64 位处理器架构
- [[ARM64 (aarch64)]]64 位 ARM 处理器架构
## Key Entities
- [[Linux]]:操作系统
## Connections
- [[Linux]] ← runs_on ← [[x86_64]]
- [[Linux]] ← runs_on ← [[ARM64]]
## Contradictions
-