0

我正在尝试通过 grub-mkrescue 创建一个 iso 可引导文件。但我需要分配iso的标签。阅读手册页后,我猜这是一个正确的命令行,但失败了。

grub-mkrescue -o "my_arch.iso" -- -volid=MY_ARCH my_iso_dir

它将显示错误为:

xorriso 1.4.2 : RockRidge filesystem manipulator, libburnia project.

Drive current: -outdev 'stdio:my_arch.iso'
Media current: stdio file, overwriteable
Media status : is blank
Media summary: 0 sessions, 0 data blocks, 0 data, 19.1g free
Added to ISO image: directory '/'='/tmp/grub.ZoYEzy'
xorriso : UPDATE : 613 files added in 1 seconds
xorriso : FAILURE : -as mkisofs: Unrecognized option '-volid=MY_ARCH'
xorriso : UPDATE : 613 files added in 1 seconds
xorriso : aborting : -abort_on 'FAILURE' encountered 'FAILURE'

根据“信息 grub-mkrescue”文档:

  All arguments not explicitly listed as 'grub-mkrescue' options are
passed on directly to 'xorriso' in 'mkisofs' emulation mode.  Options
passed to 'xorriso' will normally be interpreted as 'mkisofs' options;
if the option '--' is used, then anything after that will be interpreted
as native 'xorriso' options.

   Non-option arguments specify additional source directories.  This is
commonly used to add extra files to the image:
4

1 回答 1

1

xorriso 的 -as mkisofs 仿真理解

-V MY_ARCH

或者

-volid MY_ARCH

但不是

-volid=MY_ARCH

进一步请注意,您显然使用了不符合您引用的文档的 grub-mkrescue 的中间 C 版本。这个版本需要 '--' 作为 grub-mkrescue 选项和 xorriso -as mkisofs 选项之间的分隔符。

但是,如果您在旧的 grub-mkrescue shell 脚本或当前 grub-mkrescue C 程序的参数中包含“--”,那么您将退出 mkisofs 仿真。这将为您赢得一条错误消息

xorriso : FAILURE : Not a known command:  'my_iso_dir'
于 2016-05-08T19:20:47.543 回答