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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
|
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR Free Software Foundation, Inc.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2024-06-01 06:27+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. type: TH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "SYSTEMD-DISSECT"
msgstr ""
#. type: TH
#: archlinux fedora-40 mageia-cauldron opensuse-tumbleweed
#, no-wrap
msgid "systemd 255"
msgstr ""
#. type: TH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "systemd-dissect"
msgstr ""
#. -----------------------------------------------------------------
#. * MAIN CONTENT STARTS HERE *
#. -----------------------------------------------------------------
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "NAME"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "systemd-dissect, mount.ddi - Dissect Discoverable Disk Images (DDIs)"
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "SYNOPSIS"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
msgid "B<systemd-dissect >B<[OPTIONS...]>B< >I<IMAGE>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
msgid "B<systemd-dissect >B<[OPTIONS...]>B< >B<--mount>B< >I<IMAGE>B< >I<PATH>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
msgid "B<systemd-dissect >B<[OPTIONS...]>B< >B<--umount>B< >I<PATH>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
msgid "B<systemd-dissect >B<[OPTIONS...]>B< >B<--attach>B< >I<IMAGE>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
msgid "B<systemd-dissect >B<[OPTIONS...]>B< >B<--detach>B< >I<PATH>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
msgid "B<systemd-dissect >B<[OPTIONS...]>B< >B<--list>B< >I<IMAGE>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
msgid "B<systemd-dissect >B<[OPTIONS...]>B< >B<--mtree>B< >I<IMAGE>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
msgid ""
"B<systemd-dissect >B<[OPTIONS...]>B< >B<--with>B< >I<IMAGE>B< "
">B<[>I<COMMAND>...]"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
msgid ""
"B<systemd-dissect >B<[OPTIONS...]>B< >B<--copy-from>B< >I<IMAGE>B< "
">I<PATH>B< >B<[>I<TARGET>]"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
msgid ""
"B<systemd-dissect >B<[OPTIONS...]>B< >B<--copy-to>B< >I<IMAGE>B< "
">B<[>I<SOURCE>]B< >I<PATH>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
msgid "B<systemd-dissect >B<[OPTIONS...]>B< >B<--discover>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
msgid "B<systemd-dissect >B<[OPTIONS...]>B< >B<--validate>B< >I<IMAGE>"
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "DESCRIPTION"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<systemd-dissect> is a tool for introspecting and interacting with file "
"system OS disk images, specifically Discoverable Disk Images (DDIs)\\&. It "
"supports four different operations:"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Show general OS image information, including the image\\*(Aqs B<os-"
"release>(5) data, machine ID, partition information and more\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Mount an OS image to a local directory\\&. In this mode it will dissect the "
"OS image and mount the included partitions according to their designation "
"onto a directory and possibly sub-directories\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Unmount an OS image from a local directory\\&. In this mode it will "
"recursively unmount the mounted partitions and remove the underlying loop "
"device, including all the partition sub-devices\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Copy files and directories in and out of an OS image\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "The tool may operate on three types of OS images:"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"OS disk images containing a GPT partition table envelope, with partitions "
"marked according to the \\m[blue]B<Discoverable Partitions "
"Specification>\\m[]\\&\\s-2\\u[1]\\d\\s+2\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"OS disk images containing just a plain file-system without an enveloping "
"partition table\\&. (This file system is assumed to be the root file system "
"of the OS\\&.)"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"OS disk images containing a GPT or MBR partition table, with a single "
"partition only\\&. (This partition is assumed to contain the root file "
"system of the OS\\&.)"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"OS images may use any kind of Linux-supported file systems\\&. In addition "
"they may make use of LUKS disk encryption, and contain Verity integrity "
"information\\&. Note that qualifying OS images may be booted with B<systemd-"
"nspawn>(1)\\*(Aqs B<--image=> switch, and be used as root file system for "
"system service using the I<RootImage=> unit file setting, see B<systemd."
"exec>(5)\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Note that the partition table shown when invoked without command switch (as "
"listed below) does not necessarily show all partitions included in the "
"image, but just the partitions that are understood and considered part of an "
"OS disk image\\&. Specifically, partitions of unknown types are ignored, as "
"well as duplicate partitions (i\\&.e\\&. more than one per partition type), "
"as are root and /usr/ partitions of architectures not compatible with the "
"local system\\&. In other words: this tool will display what it operates "
"with when mounting the image\\&. To display the complete list of partitions "
"use a tool such as B<fdisk>(8)\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The B<systemd-dissect> command may be invoked as B<mount\\&.ddi> in which "
"case it implements the B<mount>(8) \"external helper\" interface\\&. This "
"ensures disk images compatible with B<systemd-dissect> can be mounted "
"directly by B<mount> and B<fstab>(5)\\&. For details see below\\&."
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "COMMANDS"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If neither of the command switches listed below are passed the specified "
"disk image is opened and general information about the image and the "
"contained partitions and their use is shown\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--mount>, B<-m>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Mount the specified OS image to the specified directory\\&. This will "
"dissect the image, determine the OS root file system \\(em as well as "
"possibly other partitions \\(em and mount them to the specified "
"directory\\&. If the OS image contains multiple partitions marked with the "
"\\m[blue]B<Discoverable Partitions Specification>\\m[]\\&\\s-2\\u[1]\\d\\s+2 "
"multiple nested mounts are established\\&. This command expects two "
"arguments: a path to an image file and a path to a directory where to mount "
"the image\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"To unmount an OS image mounted like this use the B<--umount> operation\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"When the OS image contains LUKS encrypted or Verity integrity protected file "
"systems appropriate volumes are automatically set up and marked for "
"automatic disassembly when the image is unmounted\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The OS image may either be specified as path to an OS image stored in a "
"regular file or may refer to block device node (in the latter case the block "
"device must be the \"whole\" device, i\\&.e\\&. not a partition device)\\&. "
"(The other supported commands described here support this, too\\&.)"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"All mounted file systems are checked with the appropriate B<fsck>(8) "
"implementation in automatic fixing mode, unless explicitly turned off (B<--"
"fsck=no>) or read-only operation is requested (B<--read-only>)\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Note that this functionality is also available in B<mount>(8) via a command "
"such as B<mount -t ddi myimage\\&.raw targetdir/>, as well as in "
"B<fstab>(5)\\&. For details, see below\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Added in version 247\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<-M>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "This is a shortcut for B<--mount --mkdir>\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--umount>, B<-u>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Unmount an OS image from the specified directory\\&. This command expects "
"one argument: a directory where an OS image was mounted\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"All mounted partitions will be recursively unmounted, and the underlying "
"loop device will be removed, along with all its partition sub-devices\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Added in version 252\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<-U>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "This is a shortcut for B<--umount --rmdir>\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--attach>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Attach the specified disk image to an automatically allocated loopback block "
"device, and print the path to the loopback block device to standard "
"output\\&. This is similar to an invocation of B<losetup --find --show>, but "
"will validate the image as DDI before attaching, and derive the correct "
"sector size to use automatically\\&. Moreover, it ensures the per-partition "
"block devices are created before returning\\&. Takes a path to a disk image "
"file\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Added in version 254\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--detach>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Detach the specified disk image from a loopback block device\\&. This undoes "
"the effect of B<--attach> above\\&. This expects either a path to a loopback "
"block device as an argument, or the path to the backing image file\\&. In "
"the latter case it will automatically determine the right device to "
"detach\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--list>, B<-l>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Prints the paths of all the files and directories in the specified OS image "
"or directory to standard output\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Added in version 253\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--mtree>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Generates a BSD B<mtree>(8) compatible file manifest of the specified disk "
"image or directory\\&. This is useful for comparing image contents in "
"detail, including inode information and other metadata\\&. While the "
"generated manifest will contain detailed inode information, it currently "
"excludes extended attributes, file system capabilities, MAC labels, "
"B<chattr>(1) file flags, B<btrfs>(5) subvolume information, and various "
"other file metadata\\&. File content information is shown via a SHA256 "
"digest\\&. Additional fields might be added in future\\&. Note that inode "
"information such as link counts, inode numbers and timestamps is excluded "
"from the output on purpose, as it typically complicates reproducibility\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--with>"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"Runs the specified command with the specified OS image mounted\\&. This will "
"mount the image to a temporary directory, switch the current working "
"directory to it, and invoke the specified command line as child process\\&. "
"Once the process ends it will unmount the image again, and remove the "
"temporary directory\\&. If no command is specified a shell is invoked\\&. "
"The image is mounted writable, use B<--read-only> to switch to read-only "
"operation\\&. The invoked process will have the I<$SYSTEMD_DISSECT_ROOT> "
"environment variable set, containing the absolute path name of the temporary "
"mount point, i\\&.e\\&. the same directory that is set as the current "
"working directory\\&. It will also have the I<$SYSTEMD_DISSECT_DEVICE> "
"environment variable set, containing the absolute path name of the loop "
"device the image was attached to\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--copy-from>, B<-x>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Copies a file or directory from the specified OS image or directory into the "
"specified location on the host file system\\&. Expects three arguments: a "
"path to an image file or directory, a source path (relative to the "
"image\\*(Aqs root directory) and a destination path (relative to the current "
"working directory, or an absolute path, both outside of the image)\\&. If "
"the destination path is omitted or specified as dash (\"-\"), the specified "
"file is written to standard output\\&. If the source path in the image file "
"system refers to a regular file it is copied to the destination path\\&. In "
"this case access mode, extended attributes and timestamps are copied as "
"well, but file ownership is not\\&. If the source path in the image refers "
"to a directory, it is copied to the destination path, recursively with all "
"containing files and directories\\&. In this case the file ownership is "
"copied too\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--copy-to>, B<-a>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Copies a file or directory from the specified location in the host file "
"system into the specified OS image or directory\\&. Expects three arguments: "
"a path to an image file or directory, a source path (relative to the current "
"working directory, or an absolute path, both outside of the image) and a "
"destination path (relative to the image\\*(Aqs root directory)\\&. If the "
"source path is omitted or specified as dash (\"-\"), the data to write is "
"read from standard input\\&. If the source path in the host file system "
"refers to a regular file, it is copied to the destination path\\&. In this "
"case access mode, extended attributes and timestamps are copied as well, but "
"file ownership is not\\&. If the source path in the host file system refers "
"to a directory it is copied to the destination path, recursively with all "
"containing files and directories\\&. In this case the file ownership is "
"copied too\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"As with B<--mount> file system checks are implicitly run before the copy "
"operation begins\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--discover>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Show a list of DDIs in well-known directories\\&. This will show machine, "
"portable service and system/configuration extension disk images in the usual "
"directories /usr/lib/machines/, /usr/lib/portables/, /usr/lib/confexts/, /"
"var/lib/machines/, /var/lib/portables/, /var/lib/extensions/ and so on\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--validate>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Validates the partition arrangement of a disk image (DDI), and ensures it "
"matches the image policy specified via B<--image-policy=>, if one is "
"specified\\&. This parses the partition table and probes the file systems in "
"the image, but does not attempt to mount them (nor to set up disk encryption/"
"authentication via LUKS/Verity)\\&. It does this taking the configured image "
"dissection policy into account\\&. Since this operation does not mount file "
"systems, this command \\(en unlike all other commands implemented by this "
"tool \\(en requires no privileges other than the ability to access the "
"specified file\\&. Prints \"OK\" and returns zero if the image appears to be "
"in order and matches the specified image dissection policy\\&. Otherwise "
"prints an error message and returns non-zero\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<-h>, B<--help>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Print a short help text and exit\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--version>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Print a short version string and exit\\&."
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "OPTIONS"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "The following options are understood:"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--read-only>, B<-r>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Operate in read-only mode\\&. By default B<--mount> will establish writable "
"mount points\\&. If this option is specified they are established in read-"
"only mode instead\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--fsck=no>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Turn off automatic file system checking\\&. By default when an image is "
"accessed for writing (by B<--mount> or B<--copy-to>) the file systems "
"contained in the OS image are automatically checked using the appropriate "
"B<fsck>(8) command, in automatic fixing mode\\&. This behavior may be "
"switched off using B<--fsck=no>\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--growfs=no>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Turn off automatic growing of accessed file systems to their partition size, "
"if marked for that in the GPT partition table\\&. By default when an image "
"is accessed for writing (by B<--mount> or B<--copy-to>) the file systems "
"contained in the OS image are automatically grown to their partition sizes, "
"if bit 59 in the GPT partition flags is set for partition types that are "
"defined by the \\m[blue]B<Discoverable Partitions "
"Specification>\\m[]\\&\\s-2\\u[1]\\d\\s+2\\&. This behavior may be switched "
"off using B<--growfs=no>\\&. File systems are grown automatically on access "
"if all of the following conditions are met:"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "The file system is mounted writable"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The file system currently is smaller than the partition it is contained in "
"(and thus can be grown)"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "The image contains a GPT partition table"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The file system is stored on a partition defined by the Discoverable "
"Partitions Specification"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Bit 59 of the GPT partition flags for this partition is set, as per "
"specification"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "The B<--growfs=no> option is not passed\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Added in version 249\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--mkdir>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If combined with B<--mount> the directory to mount the OS image to is "
"created if it is missing\\&. Note that the directory is not automatically "
"removed when the disk image is unmounted again\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--rmdir>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If combined with B<--umount> the specified directory where the OS image is "
"mounted is removed after unmounting the OS image\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--discard=>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Takes one of \"disabled\", \"loop\", \"all\", \"crypto\"\\&. If \"disabled\" "
"the image is accessed with empty block discarding turned off\\&. If \"loop\" "
"discarding is enabled if operating on a regular file\\&. If \"crypt\" "
"discarding is enabled even on encrypted file systems\\&. If \"all\" "
"discarding is unconditionally enabled\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--in-memory>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If specified an in-memory copy of the specified disk image is used\\&. This "
"may be used to operate with write-access on a (possibly read-only) image, "
"without actually modifying the original file\\&. This may also be used in "
"order to operate on a disk image without keeping the originating file system "
"busy, in order to allow it to be unmounted\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--root-hash=>, B<--root-hash-sig=>, B<--verity-data=>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Configure various aspects of Verity data integrity for the OS image\\&. "
"Option B<--root-hash=> specifies a hex-encoded top-level Verity hash to use "
"for setting up the Verity integrity protection\\&. Option B<--root-hash-"
"sig=> specifies the path to a file containing a PKCS#7 signature for the "
"hash\\&. This signature is passed to the kernel during activation, which "
"will match it against signature keys available in the kernel keyring\\&. "
"Option B<--verity-data=> specifies a path to a file with the Verity data to "
"use for the OS image, in case it is stored in a detached file\\&. It is "
"recommended to embed the Verity data directly in the image, using the Verity "
"mechanisms in the \\m[blue]B<Discoverable Partitions "
"Specification>\\m[]\\&\\s-2\\u[1]\\d\\s+2\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--loop-ref=>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Configures the \"reference\" string the kernel shall report as backing file "
"for the loopback block device\\&. While this is supposed to be a path or "
"filename referencing the backing file, this is not enforced and the kernel "
"accepts arbitrary free-form strings, chosen by the user\\&. Accepts "
"arbitrary strings up to a length of 63 characters\\&. This sets the "
"kernel\\*(Aqs \"\\&.lo_file_name\" field for the block device\\&. Note this "
"is distinct from the /sys/class/block/loopX/loop/backing_file attribute file "
"that always reports a path referring to the actual backing file\\&. The "
"latter is subject to mount namespace translation, the former is not\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"This setting is particularly useful in combination with the B<--attach> "
"command, as it allows later referencing the allocated loop device via /dev/"
"disk/by-loop-ref/\\&... symlinks\\&. Example: first, set up the loopback "
"device via B<systemd-dissect attach --loop-ref=quux foo\\&.raw>, and then "
"reference it in a command via the specified filename: B<cfdisk /dev/disk/by-"
"loop-ref/quux>\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--mtree-hash=no>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If combined with B<--mtree>, turns off inclusion of file hashes in the mtree "
"output\\&. This makes the B<--mtree> faster when operating on large "
"images\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--image-policy=>I<policy>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Takes an image policy string as argument, as per B<systemd.image-"
"policy>(7)\\&. The policy is enforced when operating on the disk image "
"specified via B<--image=>, see above\\&. If not specified defaults to the "
"\"*\" policy, i\\&.e\\&. all recognized file systems in the image are "
"used\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--no-pager>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Do not pipe output into a pager\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--no-legend>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Do not print the legend, i\\&.e\\&. column headers and the footer with "
"hints\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<--json=>I<MODE>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Shows output formatted as JSON\\&. Expects one of \"short\" (for the "
"shortest possible output without any redundant whitespace or line breaks), "
"\"pretty\" (for a pretty version of the same, with indentation and line "
"breaks) or \"off\" (to turn off JSON output, the default)\\&."
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "EXIT STATUS"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"On success, 0 is returned, a non-zero failure code otherwise\\&. If the B<--"
"with> command is used the exit status of the invoked command is "
"propagated\\&."
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "INVOCATION AS /SBIN/MOUNT\\&.DDI"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The B<systemd-dissect> executable may be symlinked to /sbin/mount\\&.ddi\\&. "
"If invoked through that it implements B<mount>(8)\\*(Aqs \"external helper\" "
"interface for the (pseudo) file system type \"ddi\"\\&. This means "
"conformant disk images may be mounted directly via"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "# mount -t ddi myimage\\&.raw targetdir/\n"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "in a fashion mostly equivalent to:"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "# systemd-dissect --mount myimage\\&.raw targetdir/\n"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Note that since a single DDI may contain multiple file systems it should "
"later be unmounted with B<umount -R targetdir/>, for recursive operation\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"This functionality is particularly useful to mount DDIs automatically at "
"boot via simple /etc/fstab entries\\&. For example:"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "/path/to/myimage\\&.raw /images/myimage/ ddi defaults 0 0\n"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"When invoked this way the mount options \"ro\", \"rw\", \"discard\", "
"\"nodiscard\" map to the corresponding options listed above (i\\&.e\\&. B<--"
"read-only>, B<--discard=all>, B<--discard=disabled>)\\&. Mount options are "
"I<not> generically passed on to the file systems inside the images\\&."
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "EXAMPLES"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
msgid "B<Example\\ \\&1.\\ \\&Generate a tarball from an OS disk image>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "# systemd-dissect --with foo\\&.raw tar cz \\&. E<gt>foo\\&.tar\\&.gz\n"
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "SEE ALSO"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6
#: opensuse-tumbleweed
msgid ""
"B<systemd>(1), B<systemd-nspawn>(1), B<systemd.exec>(5), "
"\\m[blue]B<Discoverable Partitions "
"Specification>\\m[]\\&\\s-2\\u[1]\\d\\s+2, B<mount>(8), B<umount>(8), "
"B<fdisk>(8)"
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "NOTES"
msgstr ""
#. type: IP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid " 1."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Discoverable Partitions Specification"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"\\%https://uapi-group.org/specifications/specs/"
"discoverable_partitions_specification"
msgstr ""
#. type: TH
#: debian-bookworm opensuse-leap-15-6
#, no-wrap
msgid "systemd 254"
msgstr ""
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
msgid ""
"Runs the specified command with the specified OS image mounted\\&. This will "
"mount the image to a temporary directory, switch the current working "
"directory to it, and invoke the specified command line as child process\\&. "
"Once the process ends it will unmount the image again, and remove the "
"temporary directory\\&. If no command is specified a shell is invoked\\&. "
"The image is mounted writable, use B<--read-only> to switch to read-only "
"operation\\&. The invoked process will have the I<$SYSTEMD_DISSECT_ROOT> "
"environment variable set, containing the absolute path name of the temporary "
"mount point, i\\&.e\\&. the same directory that is set as the current "
"working directory\\&."
msgstr ""
#. type: TH
#: debian-unstable fedora-rawhide
#, no-wrap
msgid "systemd 256~rc3"
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid "B<systemd-dissect> [OPTIONS...] I<IMAGE>"
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid "B<systemd-dissect> [OPTIONS...] [--mount] I<IMAGE> I<PATH>"
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid "B<systemd-dissect> [OPTIONS...] [--umount] I<PATH>"
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid "B<systemd-dissect> [OPTIONS...] [--attach] I<IMAGE>"
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid "B<systemd-dissect> [OPTIONS...] [--detach] I<PATH>"
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid "B<systemd-dissect> [OPTIONS...] [--list] I<IMAGE>"
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid "B<systemd-dissect> [OPTIONS...] [--mtree] I<IMAGE>"
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid "B<systemd-dissect> [OPTIONS...] [--with] I<IMAGE> [I<COMMAND>...]"
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid ""
"B<systemd-dissect> [OPTIONS...] [--copy-from] I<IMAGE> I<PATH> [I<TARGET>]"
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid ""
"B<systemd-dissect> [OPTIONS...] [--copy-to] I<IMAGE> [I<SOURCE>] I<PATH>"
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid "B<systemd-dissect> [OPTIONS...] [--make-archive] I<IMAGE> [I<TARGET>]"
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid "B<systemd-dissect> [OPTIONS...] [--discover]"
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid "B<systemd-dissect> [OPTIONS...] [--validate] I<IMAGE>"
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid ""
"In place of the image path a \"\\&.v/\" versioned directory may be "
"specified, see B<systemd.v>(7) for details\\&."
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid "B<--make-archive>"
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid ""
"Generates an archive file from the specified disk image\\&. Expects two "
"arguments: the path to the disk image and optionally the output archive file "
"path\\&. If the latter is omitted the archive is written to standard "
"output\\&. The archive file format is determined automatically from the "
"specified output archive file name, e\\&.g\\&. any path suffixed with \"\\&."
"tar\\&.xz\" will result in an xz compressed UNIX tarball (if the path is "
"omitted an uncompressed UNIX tarball is created)\\&. See B<libarchive>(3) "
"for a list of supported archive formats and compression schemes\\&."
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid "Added in version 256\\&."
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid ""
"B<Example\\ \\&1.\\ \\&Generate a tarball from an OS disk image (--with)>"
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid "or alternatively just:"
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid ""
"B<Example\\ \\&2.\\ \\&Generate a tarball from an OS disk image (--make-"
"archive)>"
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
#, no-wrap
msgid "# systemd-dissect --make-archive foo\\&.raw foo\\&.tar\\&.gz\n"
msgstr ""
#. type: Plain text
#: debian-unstable fedora-rawhide
msgid ""
"B<systemd>(1), B<systemd-nspawn>(1), B<systemd.exec>(5), B<systemd.v>(7), "
"\\m[blue]B<Discoverable Partitions "
"Specification>\\m[]\\&\\s-2\\u[1]\\d\\s+2, B<mount>(8), B<umount>(8), "
"B<fdisk>(8)"
msgstr ""
|