Files
nexus/wiki/sources/clonezilla对ubuntu-server进行全盘镜像备份.md

52 lines
3.3 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: "Clonezilla对Ubuntu Server进行全盘镜像备份"
type: source
tags: [backup, clonezilla, nas, rufus, ubuntu]
date: 2026-05-06
---
## Source File
- [[raw/Home Office/Clonezilla对Ubuntu Server进行全盘镜像备份.md]]
## Summary用中文描述
- 核心主题:使用 Clonezilla再生龙对 Ubuntu Server 进行全盘镜像备份到 NAS灾难时可完整还原系统
- 问题域Linux 服务器数据保护、灾难恢复DR、NAS 存储集成
- 方法/机制Clonezilla live USB 启动 → device-image 模式 → NFS 网络存储挂载 → savedisk 全盘镜像 → restordisk 还原
- 结论/价值Clonezilla 提供类似 Ghost 的磁盘级镜像能力,是 rsync 增量备份之外的全量快照方案,两者互补构成完整备份策略
## Key Claims用中文描述
- Rufus 写入 Clonezilla ISO 时必须选择"ISO 镜像模式",否则可能导致 U 盘启动失败
- 针对较新笔记本,分区方案应选 GPT + UEFI非 CSM老旧笔记本选 MBR + BIOS
- NFS 是 NAS 备份场景下兼容性最好的网络协议,相比 SMB 更适合 Linux 环境
- Clonezilla 备份完成后,新硬盘可通过 restoredisk 完整还原,系统即刻复活,无需重装
## Key Quotes
> "Clonezilla live (Default settings, VGA 800x600)" — Clonezilla 启动菜单推荐选项,英文界面更稳定
> "以 ISO 镜像模式写入 (推荐)" — Rufus 写入 ISOHybrid 镜像时的关键选择DD 模式仅作备选
## Key Concepts
- [[全盘镜像备份]]:将整个磁盘(所有分区 + 数据)打包为单个镜像文件,支持完整灾难恢复
- [[NFS 网络存储]]Network File SystemLinux 原生网络文件系统NAS 共享的标准协议
- [[ISOHybrid 镜像]]:同时支持 ISO 和 DD 两种写入模式的混合镜像Rufus 写入时需注意模式选择
- [[GPT vs MBR]]新一代分区表格式GPT vs 传统格式UEFI 启动需要 GPT 分区
## Key Entities
- [[Clonezilla]]:开源磁盘镜像工具(再生龙),支持保存和还原整块磁盘镜像
- [[Rufus]]Windows U 盘启动盘制作工具,用于将 Clonezilla ISO 写入 U 盘
- [[Ubuntu Server]]目标备份操作系统HP ZBook 工作站上运行的服务器版本
- [[NFS]]Network File System用于将 NAS 存储挂载到 Clonezilla 进行镜像存储
## Connections
- [[Ubuntu服务器通过rsync实现日常增量备份]] ← 互补方案 ← [[Clonezilla全盘镜像备份]]
- Clonezilla 提供全量快照低频rsync 提供增量同步(高频),两者构成完整备份策略
- [[家庭监控方案-prometheus-grafana-node-exporter-cadvisor-blackbox]] ← 依赖 ← [[Ubuntu Server]]
- Ubuntu Server 是家庭监控系统的运行平台,其备份直接关系到监控系统可用性
- [[NFS]] ← 存储后端 ← [[Clonezilla全盘镜像备份]]
- NAS 通过 NFS 协议提供镜像存储空间
## Contradictions
- 与 [[Ubuntu服务器通过rsync实现日常增量备份]] 方法层面:
- 冲突点rsync 是文件级增量备份Clonezilla 是磁盘级全量镜像
- 当前观点两者互补而非互斥——Clonezilla 做周期性全量快照如每月rsync 做每日增量同步
- 对方观点rsync 更适合不停机的日常备份场景Clonezilla 更适合系统迁移或重大变更前的快照