Q. How can I burn ISO images to CD-Rs and CD-RWs with cdrecord under Linux operating systems?
A.Use cdrecord to record audio or data Compact Disks or Digital Versatile Disks from a master. First, you need to find out information about your CD-R or CD-RW device.
Linux Command To determine the device name
Type the following command:
$ drecord -scanbus
Sample output:
scsibus0: 0,0,0 0) 'TSSTcorp' 'CD/DVDW SH-S182D' 'SB04' Removable CD-ROM 0,1,0 1) * 0,2,0 2) * 0,3,0 3) * 0,4,0 4) * 0,5,0 5) * 0,6,0 6) * 0,7,0 7) *
Burn Linux ISO Image with Disk AT Once Mode
To burn with "Disk At Once" mode, enter:
$ cdrecord -v -dao dev=0,0,0 /path/to/iso/file/name.iso
Where,
- -v : verbosity option
- -dao : Disk At Once mode
- dev=000 : Define the device that was found with the scanbus option above, in this example, it's 0,0,0.
Linux Burn multi-session CD
To burn multi-session CD, -multi option on all sessions except the last session.
$ cdrecord -v -multi -dao dev=0,0,0 /path/to/iso/file/name.iso
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop










![Linux Disable Bluetooth [ Bluetooth Input Devices (hidd) ]](http://s13.cyberciti.org/images/shared/rp/3/1.jpg)


{ 1 comment… read it below or add one }
Multi-session cd means?