Making Your IDE CD Burner Work On FreeBSD
Created: 06/15/2005
General Information
Many people using or wanting to use FreeBSD are not clued on to the fact that, by default, CD burning does not work on either 4.x or 5.x. This tutorial was designed to help users get their IDE CD Writing devices working under FreeBSD 5.Requirements
|
# # # |
cd /usr/src/sys/i386/conf cp GENERIC HOSTNAME nano -w HOSTNAME |
|
device scbus # SCSI bus (required for SCSI) device ch # SCSI media changers device da # Direct Access (disks) device sa # Sequential Access (tape etc) device cd # CD device pass # Passthrough device (direct SCSI access) device ses # SCSI Environmental Services (and SAF-TE) device atapicam |
| # | nano -w /etc/devfs.conf |
|
perm acd0 0666 link acd0 cdrom perm pass0 0666 perm cd0 0666 perm xpt0 0666 |
| # | nano -w /etc/rc.conf |
|
devd_enable="YES" |
|
# # # # # # |
cd /usr/ports/sysutils/cdrdao make make install make clean cd /usr/local/bin chmod u+s cdrdao |
|
# # # # |
cd /usr/ports/sysutils/k3b make make install make clean |
Author: James Cornell
unixpenguin2004 at earthlink dot net