Red Antigua Logo slogan
Ads by Goooooogle
Search this site (by Google)
Menu
Home
About
Tools
Perl modules
Perl tutorials
C tutorials
Server configurations
UNIX on Windows
Misc. FreeBSD/UNIX
Redirect a web page
JavaScript
Virus list
Old stuff
Off topic

Tools    (top)
Your IP
Check a site for broken links
(W3C)

Perl modules    (top)
Tree::Numbered::Tools
(CPAN)
Perl tutorials    (top)
Perl modules
HTML::Template
CGI::Application
Mail::POP3Client
Mail::Send
MIME::Tools
Cookies with CGI::Application
Upload files with CGI::Application
Download files with CGI::Application
Redirect with CGI::Application
CPAN shell
Install DBD::mysql from the CPAN shell
Perl trim function
Validate an IP with Perl
Run suid Perl scripts under Apache
Perl taint mode
Perl date functions with Date::Calc

In Spanish
Curso de Perl

C tutorials    (top)
C - Introduction
C - Absolute beginner's Emacs
C - Examples for beginners
C - Makefile examples
C - Autotools examples
Server configurations    (top)
DNS
Apache
Apache Authentication and Access Control
mod_perl on FreeBSD
MySQL
MySQL add account
phpMyAdmin
Squid
DHCP

UNIX on Windows    (top)
Apache setup on Windows
MySQL setup on Windows
PHP setup on Windows
Perl setup on Windows
Emacs setup on Windows
UnxUtils
PuTTY
WinSCP
GIMP on Windows
MinGW - gcc on Windows
MSYS - make-in-a-shell on Windows
msysDTK - autotools on Windows
GDB for MinGW on Windows

Misc. FreeBSD/UNIX    (top)
CD and DVD creation on FreeBSD using 'k3b' on FreeBSD
'ipf' on FreeBSD
'pf' on FreeBSD
'su' on FreeBSD
Mount an ISO image under FreeBSD
Load the correct sound driver under FreeBSD without knowing what sound card you are using
Simultaneous sound channels on FreeBSD
Boot floppies for FreeBSD
Problems with old disks/controllers and the 'ata' driver
FreeBSD network stuff
DOS-to-UNIX file conversion
favicon.ico on UNIX
Emacs tips
Sendmail tips
GKrellm
Command Line Calculator
Save multimedia streams with 'mplayer'
xargs - solution to 'Argument list too long'
Process multiple images from the command line using 'ImageMagick'
Turn the system bell off under X Windows
Process each line in an input file from the command line (or in a shell script)
How to keep a program running in the background using 'nohup'
How to remove symbolic links in the current directory using 'find' and 'rm'
How to remove Emacs backup files in the current directory and all subdirectories using 'find' and 'rm'
How to execute .profile without logging in

Redirect a web page    (top)
Redirect to another web page
Apache redirect
C redirect
Perl redirect
PHP redirect
HTML redirect
JavaScript redirect

Javascript    (top)
Trim function
Login form
Register form
Popup window

Virus list    (top)
Latest viruses - Computer Virus HQ (external)
Latest 10 viruses - Sophos

Links    (top)
HTML and PHP Scripts - Html Web Template

Old stuff    (top)
POP3 server setup
About AnyMail
AnyMail downloads

Off topic    (top)
Personal links

Validated by
Valid HTML 4.01!
Valid CSS!
Powered by
apache.org
k3B on FreeBSD
CD and DVD creation on FreeBSD using the 'k3b' GUI        
This tutorial is about creating CDs and DVDs using a GUI, tested on FreeBSD 5.3.
If you want to create CDs from the command line, check out the burncd tutorial.

The 'k3b' GUI is the most complete software I have seen for creating CDs and DVD on FreeBSD (and on Linux).
(The only drawback is that 'k3b' needs a lot of dependencies, so it can be time and disk consuming to install it.)

Install the port:
		    cd /usr/ports/sysutils/k3b
		    make install clean
Launch 'k3b' from the command line:
k3b
Try to burn a CD or a DVD.
If you were able to burn something, then you can stop reading here.
If not, there are mainly two causes for not beeing able to burn:
  1. Your CD/DVD burner was detected, but trying to burn gives a permission error.
  2. Your CD/DVD burner wasn't detected as a SCSI device.
The first cause is easy to fix.
The 'burning device', default /dev/cd, has no write permission for ordinary users.
Either change the permissions and/or include the users you want in the 'operator' group, or run 'k3b' as root.
The second cause is probably due to that your buening device is ATAPI instead of SCSI.
A SCSI emulator has to be added to the kernel:
		    cd /sys/i386/conf
		    cp GENERIC ATAPICAM
		    vi ATAPICAM
Add the following line:
		    device atapicam
Just check that the following lines are included (they are by default, if not, add them)
		    device scbus
		    device cd	    
		    device pass
		    device ata
Rebuild the kernel:
		    /usr/sbin/config ATAPICAM
		    cd ../compile/ATAPICAM
		    make cleandepend
		    make depend
		    make
		    make install
		    make clean
		    reboot
After the reboot, launch 'k3b' again, the ATAPI burning device should now be detected as a SCSI device.

Read more at:
http://www.k3b.org
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/creating-cds.html.
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/creating-dvds.html
Last modified: Fri Apr 8 14:47:46 EDT 2005