Files
nexus/wiki/concepts/磁盘镜像备份.md

41 lines
1.6 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: "磁盘镜像备份"
type: concept
tags: [备份, 运维, 灾难恢复]
date: 2025-12-19
---
## Definition
将整个磁盘或分区保存为单个压缩镜像文件的技术,灾难时可完整恢复到任意磁盘状态。区别于文件级备份(逐文件复制),镜像备份保留磁盘分区表、引导扇区等底层结构。
## Core Properties
- **完整性**:包含操作系统、应用程序、数据、引导信息的完整副本
- **粒度**:磁盘级(整个硬盘)或分区级(单个分区)
- **压缩**:通常支持压缩(如 Clonezilla 的 -z1p
- **增量备份**:部分工具(如 Clonezilla server支持增量模式
## Comparison with File-Level Backup
| 维度 | 磁盘镜像备份 | 文件级备份 |
|------|------------|-----------|
| 恢复速度 | 快(全盘一次性恢复) | 慢(逐文件还原) |
| 存储效率 | 低(包含未使用空间) | 高(仅备份使用数据) |
| 系统迁移 | 支持完整迁移 | 需要重新安装系统 |
| 粒度 | 粗(整盘/分区) | 细(单个文件) |
## Use Cases
- 服务器灾难恢复(硬盘故障替换)
- 系统升级前的安全网
- 迁移到新硬件
- 合规性定期备份
## Related Tools
- [[Clonezilla]]:开源镜像备份工具
- Ghost商业镜像备份工具Symantec
- Macrium ReflectWindows 商业备份工具
- Time MachinemacOS 内置备份(文件级)
## Connections
- [[磁盘镜像备份]] ← 工具 ← [[Clonezilla]]
- [[磁盘镜像备份]] ← 存储目标 ← [[Synology NAS]]
- [[磁盘镜像备份]] ← 协议 ← [[NFS]]