我使用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时看到文件名更改为小写字母。