feat:增加Systemback文档

This commit is contained in:
2026-03-12 22:00:12 +08:00
parent 62d0b0515e
commit a0c40be4b6
2 changed files with 38 additions and 0 deletions

View File

@@ -91,6 +91,7 @@ export const routers = [
{ text: 'VitePress使用和简介', link: '/Others/VitePress' }, { text: 'VitePress使用和简介', link: '/Others/VitePress' },
{ text: '企业微信工作台开发', link: '/Others/WeCom' }, { text: '企业微信工作台开发', link: '/Others/WeCom' },
{ text: 'XDRP简介和安装', link: '/Others/XDRP' }, { text: 'XDRP简介和安装', link: '/Others/XDRP' },
{ text: 'Systemback制作Ubuntu镜像', link: '/Others/Systemback' },
] ]
} }
]; ];

37
docs/Others/Systemback.md Normal file
View File

@@ -0,0 +1,37 @@
---
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)