有没有办法从命令行更改.iso文件卷ID?

我有一个Linux下的.iso文件,并试图find一种方法来更改卷ID而无需重新创build.iso文件。 大多数创作工具(如mkisofs提供了一个设置音量(-V)的开关。 但是我不知道如何改变它在一个预先存在的.iso文件。

澄清,我试图改变的是这个Volume id:string。 这是一个来自isoinfo命令的转储示例。

 % isoinfo -d -i /usr/share/virtualbox/VBoxGuestAdditions.iso CD-ROM is in ISO 9660 format System id: Win32 Volume id: VBOXADDITIONS_4.1.8_75467 Volume set id: Publisher id: Data preparer id: Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING Copyright File id: Abstract File id: Bibliographic File id: Volume set size is: 1 Volume set sequence number is: 1 Logical block size is: 2048 Volume size is: 22203 Joliet with UCS level 3 found Rock Ridge signatures version 1 found 

卷ID始终作为32字节ASCIIstring存储在偏移量0x8028。 编辑它的地方。

 #!/usr/bin/perl use strict; use warnings; die "Use: $0 <iso_file> <new volume id>\n" unless @ARGV == 2; open my $file, "+<", $ARGV[0] or die "Cannot open: $!"; seek $file, 0x8028,0; printf $file "%-32.32s", uc($ARGV[1]); 

testing – (isovolid.pl是上述脚本的名称):

 $ genisoimage -V A123456798012345678901234567890X -o aaa.iso * $ isoinfo -d -i aaa.iso | grep 'Volume id:' Volume id: A123456798012345678901234567890X $ ./isovolid.pl aaa.iso NEWVOLUMEID $ isoinfo -d -i aaa.iso | grep 'Volume id:' Volume id: NEWVOLUMEID