1

我使用 JIIC 创建了一个 ISO。当我在 Windows 机器中通过 7z 打开 ISO 内容时,我看到所有内容都是正确的。但是如果我在 Solaris 机器上安装 ISO,我会看到目录和文件名被修剪为 8 和 8+3 字符。我在 maven 部分使用以下选项来创建 ISO。

<plugin>
                <groupId>com.github.stephenc.java-iso-tools</groupId>
                <artifactId>iso9660-maven-plugin</artifactId>
                <version>1.2.2</version>
                <executions>
                    <execution>
                        <id>generate-iso</id>
                        <goals>
                            <goal>iso</goal>
                        </goals>
                        <phase>package</phase>
                        <configuration>
                    <finalName>${project.build.finalName}.iso</finalName>
                            <inputDirectory>${project.build.directory}/iso</inputDirectory>

                            <volumeId>${product}</volumeId>
                            <enableRockRidge>false</enableRockRidge>
                            <enableJoliet>true</enableJoliet>
                            <restrictDirDepthTo8>false</restrictDirDepthTo8>
                            <interchangeLevel>2</interchangeLevel>
                            <padEnd>false</padEnd>
                            <forceDotDelimiter>false</forceDotDelimiter>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

你能帮帮我吗?我还看到安装 ISO 时文件名更改为小写字母。

4

0 回答 0