Files
nexus/wiki/sources/clonezilla-ubuntu-server-full-disk-backup.md
2026-04-16 21:08:55 +08:00

42 lines
1.7 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, ubuntu, nfs, nas]
date: 2025-12-20
---
## Source File
- [[raw/Home Office/Clonezilla对Ubuntu Server进行全盘镜像备份.md]]
## Summary
- 核心主题:使用 Clonezilla 实现 Ubuntu Server 全盘镜像备份到 NAS
- 问题域:服务器灾难恢复、磁盘镜像备份
- 方法/机制Clonezilla再生龙+ NFS 网络存储
- 结论/价值:实现类似 Ghost 的磁盘镜像备份,支持灾难恢复
## Key Claims
- Clonezilla 支持将整个磁盘备份为镜像文件,存储在 NAS 或外置硬盘上
- 使用 NFS 协议连接 NAS 是 Linux 环境下的推荐方案
- 备份完成后可通过 Restore 功能将镜像还原到新硬盘,实现系统即时复活
## Key Quotes
> "以 ISO 镜像模式写入 (推荐)" — Rufus 制作启动盘的最佳模式选择
> "选择 -z1p (默认的高压缩率,适合节省 NAS 空间)" — 备份压缩级别选择
## Key Concepts
- [[Clonezilla]]:开源磁盘镜像备份工具
- [[NFS]]:网络文件系统协议
- [[NAS]]:网络附加存储
- [[灾难恢复]]:系统故障后的数据还原流程
- [[增量备份]]:仅备份变化数据的备份策略(本场景为全盘备份)
## Key Entities
- [[Rufus]]:制作 Clonezilla 启动 U 盘的工具
- [[Ubuntu Server]]:备份源操作系统
## Connections
- [[Clonezilla]] ← uses ← [[NFS]] ← stores ← [[NAS]]
- [[灾难恢复]] ← enables ← [[Clonezilla]]
## Contradictions
- 与 [[rsync]] 增量备份相比Clonezilla 是全盘镜像rsync 是文件级增量备份。Clonezilla 适合完整系统恢复场景rsync 适合日常文件同步。