-
Notifications
You must be signed in to change notification settings - Fork 14
/
README.txt
50 lines (23 loc) · 1.92 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
image-backup:
image-backup creates a backup of a running Raspbian system to a standard 'raw' image file that can be written to an SD card or a USB device card with Etcher, imageUSB, etc. It will also perform incremental updates to an existing backup image file.
Running image-backup with no parameters will create a full backup. To create the smallest possible image, specify an Image ROOT filesystem size of 0 to determine the minimum allowed size. If you plan to incrementally update the image file, specify a considerably larger size to allow for additional growth.
Running image-backup with a parameter of an existing image filename will incrementally update that image file.
Image-check:
image-check will check the integrity of a standard 'raw' image file. Usage is:
image-check imagefile [W95|Linux]
where W95 checks the BOOT partition and Linux checks the ROOT partition. If neither is specified, Linux is assumed.
image-compare:
image-compare compares a running Raspbian system to an existing standard 'raw' image file and displays the incremental changes that image-backup would perform if run. Usage is:
image-compare [imagefile]
image-mount:
image-mount mounts a standard 'raw' image file to allow it to be read or written as if it were a device. Usage is:
image-mount imagefile mountpoint [W95|Linux]
where W95 mounts the BOOT partition and Linux mounts the ROOT partition. If neither is specified, Linux is assumed.
image-set-ptuuid:
image-set-ptuuid sets the Partition Table UUID value of a standard 'raw' image file. Usage is:
image-set-ptuuid imagefile ptuuid
where ptuuid is 8 hex digits
image-shrink:
image-shrink shrinks a standard 'raw' image file to its smallest possible size (plus an optional additional amount of free space). Usage is:
image-shrink imagefile [Additional MB]
where Additional MB is an optional additional amount of free space to be added.