1
2Timeshift v19.08 by Tony George (teejeetech@gmail.com)
3
4Syntax:
5
6  timeshift ‐‐check
7  timeshift ‐‐create [OPTIONS]
8  timeshift ‐‐restore [OPTIONS]
9  timeshift ‐‐delete‐[all] [OPTIONS]
10  timeshift ‐‐list‐{snapshots|devices} [OPTIONS]
11
12Options:
13
14List:
15  ‐‐list[‐snapshots]         List snapshots
16  ‐‐list‐devices             List devices
17
18Backup:
19  ‐‐check                    Create snapshot if scheduled
20  ‐‐create                    Create snapshot (even if not sched‐
21uled)
22  ‐‐comments <string>        Set snapshot description
23  ‐‐tags {O,B,H,D,W,M}       Add tags to snapshot (default: O)
24
25Restore:
26  ‐‐restore                  Restore snapshot
27  ‐‐clone                    Clone current system
28  ‐‐snapshot <name>          Specify snapshot to restore
29  ‐‐target[‐device] <device> Specify target device
30  ‐‐grub[‐device] <device>   Specify device for installing  GRUB2
31bootloader
32  ‐‐skip‐grub                Skip GRUB2 reinstall
33
34Delete:
35  ‐‐delete                   Delete snapshot
36  ‐‐delete‐all               Delete all snapshots
37
38Global:
39  ‐‐snapshot‐device <device> Specify backup device (default: con‐
40fig)
41  ‐‐yes                       Answer  YES  to  all   confirmation
42prompts
43  ‐‐btrfs                     Switch to BTRFS mode (default: con‐
44fig)
45  ‐‐rsync                    Switch to RSYNC mode (default:  con‐
46fig)
47  ‐‐debug                    Show additional debug messages
48  ‐‐verbose                  Show rsync output (default)
49  ‐‐quiet                    Hide rsync output
50  ‐‐scripted                 Run in non‐interactive mode
51  ‐‐help                     Show all options
52
53Examples:
54
55timeshift  ‐‐list  timeshift  ‐‐list  ‐‐snapshot‐device /dev/sda1
56timeshift ‐‐create ‐‐comments "after update" ‐‐tags  D  timeshift
57‐‐restore  timeshift  ‐‐restore  ‐‐snapshot ’2014‐10‐12_16‐29‐08’
58‐‐target     /dev/sda1     timeshift     ‐‐delete      ‐‐snapshot
59’2014‐10‐12_16‐29‐08’ timeshift ‐‐delete‐all
60
61Notes:
62
63  1) ‐‐create will always create a new snapshot
64  2)  ‐‐check will create a snapshot only if a scheduled snapshot
65is due
66  3) Use ‐‐restore without other options to select options inter‐
67actively
68  4) UUID can be specified instead of device name
69  5) Default values will be loaded from app config if options are
70not specified
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
Impressum