/etc/burn.conf is in burn 0.4.6-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | # burn.conf
# Configuration for Burn optical media writer front-end.
[general]
# Prompt to continue if executed as non-root user?
ask_root: yes
# Use external programs for decoding compressed audio?
external_decoding: no
[executables]
# Path to media image writer program.
wodim: /usr/bin/wodim
# Path to media disc-at-once read/write program.
cdrdao: /usr/bin/cdrdao
# Path to media image generator program.
genisoimage: /usr/bin/genisoimage
# Path to decoder program for MP3 data.
mp3_decoder: /usr/bin/mpg321
# Command options for MP3 decoder program.
mp3_decoder_option: -q -w
# Path to decoder program for Ogg Vorbis data.
ogg_decoder: /usr/bin/ogg123
# Command options for Ogg Vorbis decoder program.
ogg_decoder_option: -q -d wav -f
[ISO]
# Path to create temporary image files.
tempdir: /tmp/
# File name for temporary image files.
image: burn_image.iso
# Add Joliet data (to make a MS Windows compatible filesystem)?
windows_read: yes
# Mount point (directory path) for checking image filesystem.
mount_dir: /mnt/
[CD-writer]
# Device node path for optical media writer.
device: /dev/cdrom
# Speed setting for write operations.
speed: 4
# Value for ‘driver’ setting when invoking ‘cdrdao’ command.
driver: generic-mmc
# Use Buffer Underrun Free writing support?
burnfree: yes
[CD-reader]
# Device node path for optical media reader.
device: /dev/cdrom
# Value for ‘driver’ setting when invoking ‘cdrdao’ command.
driver:
[Media]
# Detect target media capacity before writing?
media-check: no
# Default media capacity (MB) for media writer.
size: 700
|