pavement

Burncd

From FreeBSDwiki
(Difference between revisions)
Jump to: navigation, search
Line 1: Line 1:
When using burncd your data must be put into a CD Image (iso file) before hand.
 
  
Install mkisofs
+
NOTE: In Release 9.0 and newer the burncd utility is obsolete and does not function any more. You have to use cdrtools system utilites for writing cd and dvd media.<br>
# pkg_add -r cdrtools
+
<br>
 
+
pkg_add -r cdrtools
Make sure /dev/acd* have 666 permissions so users can write cd's
+
# chmod 666 /dev/acd*
+
 
+
Make the iso
+
# mkisofs -o file.iso -r <files>
+
 
+
Burn the CD
+
# burncd -f /dev/acd0 data file.iso fixate
+
Or do both commands in one:
+
# mkisofs -r mystuff | burncd -f /dev/acd0 -s max data – fixate
+
 
+
Shortcut (if you are burning to acd0 you don't have to use -f as acd0 is default)
+
# mkisofs -r mystuff | burncd data – fixate
+
  
  
 
[[Category:FreeBSD for Workstations]]
 
[[Category:FreeBSD for Workstations]]

Revision as of 22:07, 9 August 2012

NOTE: In Release 9.0 and newer the burncd utility is obsolete and does not function any more. You have to use cdrtools system utilites for writing cd and dvd media.

pkg_add -r cdrtools

Personal tools