Crea file dmg su macOS 10.14 che può essere aperto su macOS 10.11

3

Esecuzione

$ hdiutil create -size <size>b <.dmg-file> -srcfolder <directory> -ov -format UDBZ

su macOS 10.14 crea un file dmg che non può essere aperto su macOS 10.11. Esiste un'opzione che crea il file dmg in questo modo che può essere utilizzato su macOS 10.11?

    
posta Thomas S. 01.12.2018 - 12:46
fonte

1 risposta

3

Se la cartella di origine si trova in un volume APFS, per impostazione predefinita verrà creato un volume APFS nel file dmg. Questo tipo di volume non può essere letto da El Capitan. La soluzione sarebbe quella di creare un file dmg che usi il formato JHFS +. Di seguito è riportato il comando corretto che dovresti usare.

hdiutil create -size <size>b -fs JHFS+ <.dmg-file> -srcfolder <directory> -ov -format UDBZ

Note: When testing this answer, I used the -megabytes option instead of the -size option. Also, I tested while running High Sierra instead of Mojave.

    
risposta data 02.12.2018 - 09:34
fonte

Leggi altre domande sui tag