Frequently Asked Questions


General

What is Open Burning Suite?

Open Burning Suite is a free, open-source, cross-platform optical disc burning application. It supports burning, reading, building, and verifying CD, DVD, HD DVD, and Blu-ray discs on Windows, Linux, and macOS.

How is Open Burning Suite different from other burning tools?

Unlike most disc burning applications that rely on external command-line tools (cdrecord, wodim, growisofs, mkisofs), Open Burning Suite communicates directly with your optical drive using native SCSI/MMC commands. This means:

What platforms are supported?

Is Open Burning Suite free?

Yes! Open Burning Suite is free and open-source, released under the BSD 2-Clause License.


Installation & Setup

What do I need to install?

You need the .NET 8.0 SDK to build and run Open Burning Suite from source. Alternatively, you can use a self-contained published build that includes the .NET runtime.

Do I need an optical drive?

For burning, reading, and verification operations — yes, you need a physical optical drive. For building disc images from files/folders, no drive is needed.

Why do I need administrator / root access?

Disc burning requires direct hardware access via SCSI passthrough commands. Operating systems restrict this access for security:

The application doesn’t detect my drive. What should I do?

  1. Check the connection: Ensure your drive is properly connected (internal SATA, external USB)
  2. Check permissions: On Linux, try running with sudo
  3. Check device nodes (Linux): Run ls -la /dev/sr* /dev/sg* to see if devices exist
  4. Load the sg module (Linux): Run sudo modprobe sg
  5. Try a different USB port: For external drives, some USB ports may not support SCSI passthrough

Burning

What write speed should I use?

What is simulation mode?

Simulation mode performs all steps of a burn — laser calibration, data transfer, timing — without actually writing to the disc. Use it to test your setup before committing to a real burn.

Can I burn multiple copies?

Yes. Set the “Copies” count in the Write view. After each copy, the disc is ejected and the application waits for you to insert a new blank disc.

What is buffer underrun protection?

Buffer underrun occurs when the drive’s internal buffer runs empty during a burn (e.g., due to a slow computer or heavy system load). Buffer underrun protection (also known as BURN-Free, SafeBurn, or JustLink) pauses the burn and resumes seamlessly when the buffer refills. It is enabled by default and strongly recommended.

What is overburn?

Overburn writes data beyond the rated capacity of a disc. For example, writing more than 80 minutes on a standard 80-minute CD-R. Not all drives and media support overburn, and it may reduce compatibility with some readers. Use with caution.


Reading

Which output format should I use?

Format Best For
ISO Data discs, general use, maximum compatibility
BIN/CUE Audio CDs, exact copies, multi-track discs
CDI Dreamcast games
NRG, MDF/MDS Compatibility with specific tools (Nero, Alcohol 120%)
IMG Simple raw copies

What is audio paranoia mode?

Audio paranoia performs error-corrected reading of audio CDs by reading each sector multiple times, comparing reads, and interpolating damaged samples. It’s slower but produces better results from scratched or damaged discs.

What are subchannel modes?

Subchannels are additional data streams embedded alongside the main data on a CD. They can contain CD-TEXT, copy protection data, or other metadata. Capturing subchannel data is mainly useful for exact disc copies or copy-protected discs.


Building Images

What filesystem should I use?

Target Recommended
Windows PCs Joliet
Linux systems Rock Ridge
DVDs / Blu-rays UDF
Maximum compatibility ISO 9660
Cross-platform Joliet + Rock Ridge

Why is my volume label being changed?

ISO 9660 volume identifiers are limited to 32 uppercase characters per the ECMA-119 standard. Open Burning Suite automatically truncates and uppercases volume labels to comply with this requirement.

Can I create bootable discs?

Yes. Enable the “Bootable” option and provide a boot image file (e.g., an El Torito boot image). The boot image is embedded in the ISO according to the El Torito specification.

Can I create audio CDs?

Yes. You can use the Audio & Music Wizard in the sidebar for a guided step-by-step experience, or add audio tracks manually in the Build view. Configure CD-TEXT metadata (album, artist), set per-track properties (title, ISRC, pre-gap), and Open Burning Suite converts audio files to the required PCM format automatically.

Can I rip audio CDs?

Yes. The Audio & Music Wizard includes a “Rip Audio CD” option that extracts audio tracks to individual WAV files, or saves the full disc as a raw BIN/CUE audio image. Advanced options include audio paranoia mode (for scratched discs) and jitter correction for maximum accuracy.

Can I copy music files to a disc?

Yes. The Audio & Music Wizard has a “Copy Music to Disc” mode that lets you add MP3, FLAC, WAV, OGG, AIFF, AAC, WMA, and M4A files and burn them to a data disc.

What are the Quick Start Wizards?

The Quick Start Wizards are guided step-by-step workflows accessible from the sidebar:

Each wizard walks you through the process step by step: choose a task, configure options, review a summary, and execute.


Verification

How long does verification take?

Verification speed depends on disc read speed and size. A typical DVD at 8x takes about 8–10 minutes. Blu-ray discs take longer due to their larger capacity.

Which checksum algorithm should I use?

Can I verify without the original image?

Yes. The “Verify Disc” mode reads every sector and checks for read errors without needing the original image. However, this only checks physical readability, not data accuracy. For data accuracy verification, use “Compare Disc to Image” with the source image file.

How does verification work with mixed-mode CDs (e.g., PS1 games)?

Mixed-mode CDs contain both data and audio tracks. Open Burning Suite handles these by:

Does verification support both single-file and multi-file BIN/CUE?

Yes. Both layouts are fully supported. Single-file CUE images (one .bin file containing all tracks) and multi-file CUE images (one .bin file per track) produce identical verification results because the engine uses the same per-sector sync-pattern classification for both.


Gaming Discs

Which gaming consoles are supported?

PlayStation 1–5, PSP, Nintendo GameCube, Wii (SL/DL), Wii U, Nintendo DS/3DS (verification only), Xbox, Xbox 360, Xbox One/Series, Sega Dreamcast, Saturn, Mega CD, PC Engine/TurboGrafx-CD, Neo Geo CD, 3DO, Philips CD-i, Amiga CD32, Amiga CDTV, and Atari Jaguar CD.

Can Open Burning Suite decrypt game discs?

Open Burning Suite supports PS3 disc decryption. The Game Wizard and Write view support three key sources: IRD files (.ird), disc key files (.dkey), or direct hex key input. The Copy Disc Wizard supports decryption using IRD files (.ird). Select the “Decrypt PS3 disc” option and provide the matching key. Other encrypted gaming disc formats are not supported.

Do I need a special drive for gaming discs?

Standard optical drives can read most gaming discs. However, some formats (like GD-ROM for Dreamcast) use proprietary high-density areas that cannot be read by standard drives.

Can I encrypt disc images?

Yes. Open Burning Suite includes a built-in disc image encryption feature using AES-256-CBC with PBKDF2 key derivation. Encrypted images are saved with the .obse extension. You can encrypt any disc image with a password and decrypt it later for burning or verification.


Troubleshooting

Build fails with “SDK not found”

Ensure you have the .NET 8.0 SDK installed:

dotnet --version
# Should output 8.0.x or later

If not installed, download it from dotnet.microsoft.com.

“Permission denied” when accessing drive

Burn fails with “Medium not present”

Ensure a blank disc is inserted and the drive has recognized it. Try:

  1. Ejecting and reinserting the disc
  2. Waiting a few seconds for the drive to spin up
  3. Checking if the disc type is compatible with your drive

Burn fails with “Write error”

Common causes:


Have a question not covered here? Open an issue on GitHub.