OpenBackRestore/backup/restore.sh

12 lines
289 B
Bash
Raw Normal View History

2024-03-30 09:49:09 +08:00
#!/bin/sh
# 恢复软件源
cp distfeeds.conf /etc/opkg/distfeeds.conf
# 恢复已安装列表
opkg update
cat packages-list.txt | cut -f 1 -d ' ' | xargs opkg install
# 恢复/overlay 配置
tar -xzvf overlay_backup.tar.gz -C /
# 恢复/etc 配置
tar -xzvf etc_backup.tar.gz -C /
reboot