diff --git a/pages/linux/timeshift.md b/pages/linux/timeshift.md new file mode 100644 index 000000000..0d33617c9 --- /dev/null +++ b/pages/linux/timeshift.md @@ -0,0 +1,28 @@ +# timeshift + +> System restore utility. +> More information: . + +- List snapshots: + +`sudo timeshift --list` + +- Create a new snapshot (if scheduled): + +`sudo timeshift --check` + +- Create a new snapshot (even if not scheduled): + +`sudo timeshift --create` + +- Restore a snapshot (selecting which snapshot to restore interactively): + +`sudo timeshift --restore` + +- Restore a specific snapshot: + +`sudo timeshift --restore --snapshot '{{snapshot}}'` + +- Delete a specific snapshot: + +`sudo timeshift --delete --snapshot '{{snapshot}}'`