Files
blog-press/docs/Others/Systemback.md
2026-03-12 22:00:12 +08:00

37 lines
1.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: Systemback制作Ubuntu镜像
date: 2026-03-12
---
# 一、Systemback简介
  Systemback 是一款用于 Ubuntu 等基于 Ubuntu 的 Linux 发行版的系统管理工具。它主要功能是创建系统备份和还原系统,类似于 Windows 系统中的 “系统还原” 功能。
# 二、安装
```bash
sudo sh -c 'echo "deb [arch=amd64] http://mirrors.bwbot.org/ stable main" > /etc/apt/sources.list.d/systemback.list'
sudo apt-key adv --keyserver 'hkp://keyserver.ubuntu.com:80' --recv-key 50B2C005A67B264F
sudo apt-get update
sudo apt-get install systemback
```
# 三、制作镜像
1. 打开Systemback工具
```bash
sudo systemback
```
2. 选择 **Live system create**
3. 勾选include the user data files
4. 点击 **Create new**
5. 等待制作
6. 插入U盘在Write target中选择U盘点击 **Write to target**
7. 等待制作完成
# 四、还原镜像
1. 插入U盘进入安装界面选择 **Boot System installer**
2. 设置用户名和密码
3. 设置分区,**注意一定要设置/boot/efi分区**
4. 等待还原
# 五、参考资料
1. [使用systemback备份和还原Ubuntu](https://blog.csdn.net/weixin_51526597/article/details/135712523)
2. [Systemback Ubuntu18.04 制作系统ISO镜像并物理机还原](https://www.zhihu.com/tardis/zm/art/576420693?source_id=1005)