1WIMSPLIT(1) User Commands WIMSPLIT(1)
2
3
4
6 wimsplit - Split a WIM archive into multiple parts
7
9 wimsplit WIMFILE SPLIT_WIM_PART_1 PART_SIZE [OPTION...]
10
12 wimsplit, or equivalently wimlib-imagex split, splits WIMFILE into
13 parts with size at most PART_SIZE mebibytes (power-of-2 megabytes),
14 with the first part having the name SPLIT_WIM_PART_1 and the other
15 parts having names numbered in order of the parts.
16
17 wimsplit can split both non-pipable and pipable WIMs.
18
20 --check
21 Before splitting the WIM, verify its integrity if it contains
22 extra integrity information. Also include extra integrity infor‐
23 mation in each split WIM part, even if WIMFILE did not contain
24 it.
25
26 --include-integrity
27 Include extra integrity information in each split WIM part, i.e.
28 like --check but don't also verify WIMFILE beforehand.
29
31 Splits the WIM 'windows.wim' into 'windows.swm', 'windows2.swm', 'win‐
32 dows3.swm', etc. where each part is at most 100 MiB:
33
34 wimsplit windows.wim windows.swm 100
35
37 It is possible for the size of the parts to exceed the PART_SIZE given.
38 This is impossible to avoid because the WIM file format provides no way
39 to divide a single file resource among multiple split WIM parts. So if
40 you, for example, have a file inside the WIM that is 100 MiB com‐
41 pressed, then the split WIM will have at least one part that is 100 MiB
42 in size to contain that file.
43
45 wimlib-imagex(1) wimjoin(1)
46
47
48
49wimlib 1.13.1 May 2019 WIMSPLIT(1)