Files
nexus/wiki/concepts/裸机恢复.md

37 lines
1.5 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: "裸机恢复"
tags: [backup, disaster-recovery, bare-metal]
date: 2026-04-28
---
# 裸机恢复 (Bare Metal Recovery)
## Definition
裸机恢复是指在磁盘完全损坏或更换新磁盘后,无需重新安装操作系统和应用程序,直接从预先创建的磁盘镜像文件中还原整个系统到可用状态的过程。目标是实现系统的"即时复活",使系统在还原完成后立即可投入生产使用。
## Core Process
```
1. 系统正常时 → 使用 Clonezilla savedisk 备份整个磁盘为镜像
2. 磁盘损坏 → 更换新磁盘
3. 从 Clonezilla 启动 U 盘启动
4. 选择 restoredisk → 挂载镜像存储NAS/外置硬盘)→ 选择目标磁盘
5. 确认覆盖 → 等待还原完成
6. 系统启动 → 即刻可用
```
## Key Characteristics
- **完整还原**: 包括操作系统、应用、配置、数据
- **即时可用**: 还原后无需额外配置
- **镜像依赖**: 依赖提前创建的完整磁盘镜像(与增量备份互补)
- **目标多样性**: 支持本地磁盘、外置硬盘、NFS、SMB 等多种镜像存储位置
## Related Concepts
- [[全盘镜像备份]] — 裸机恢复的前置条件
- [[Clonezilla]] — 裸机恢复的核心工具
- [[Disaster-Recovery]] — 裸机恢复是灾备策略的重要组成部分
- [[RTO]] — 裸机恢复时间是 RTO 的核心组成部分
- [[增量备份]] — 互补方案(增量备份=文件级,裸机恢复=系统级)
## Related Sources
- [[clonezilla对ubuntu-server进行全盘镜像备份]]