← 返回命令列表

Linux command

growisofs 命令

文本

复制后可按需替换文件名、目录或参数。

常用示例

Burn ISO to DVD

growisofs -dvd-compat -Z /dev/dvd=[image.iso]

Create DVD from directory

growisofs -Z /dev/dvd -R -J [directory]

Append to multisession DVD

growisofs -M /dev/dvd -R -J [directory]

Burn with verification

growisofs -dvd-compat -Z /dev/dvd=[image.iso] && md5sum /dev/dvd

说明

growisofs burns DVDs and Blu-ray discs. It combines an mkisofs frontend with a dvd+rw-tools backend for seamless disc creation. The tool handles session management, supports multisession DVDs, and works with DVD-R, DVD+R, DVD-RW, and Blu-ray media. It is the standard Linux DVD burning utility.

参数

-Z _DEVICE_
Create new session on device.
-M _DEVICE_
Append to existing multisession.
-dvd-compat
Close disc for maximum compatibility.
-speed= _N_
Set burn speed.
-dry-run
Simulate without writing.
-use-the-force-luke
Override safety checks.
--help
Display help information.

FAQ

What is the growisofs command used for?

growisofs burns DVDs and Blu-ray discs. It combines an mkisofs frontend with a dvd+rw-tools backend for seamless disc creation. The tool handles session management, supports multisession DVDs, and works with DVD-R, DVD+R, DVD-RW, and Blu-ray media. It is the standard Linux DVD burning utility.

How do I run a basic growisofs example?

Run `growisofs -dvd-compat -Z /dev/dvd=[image.iso]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

What does -Z _DEVICE_ do in growisofs?

Create new session on device.