HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

timeshift — System restore utility. More information: <https://manned.org/timeshift>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandcliinformationrestoretimeshiftmoreutilitysystem
linux

Problem

How to use the timeshift command: System restore utility. More information: <https://manned.org/timeshift>.

Solution

timeshift — System restore utility. More information: <https://manned.org/timeshift>.

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}}'

Code Snippets

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}}'

Context

tldr-pages: linux/timeshift

Revisions (0)

No revisions yet.