Writing/Burning a data CD-R/DVD-R or DVD+RW in Unix/Linux

There's a lot of outdated information and confusion for system administrator's out there.

One annoying task for many an Administrator has been backing up data in Linux.  You don't need any GUI tools such as K3B or GnomeBaker.  Both are excellent tools but for veteran command line users working remotely, using the keyboard is a great and possibly automated way to save yourself pain and hassle.

At a later date we'll cover how scripting can automatically backup certain files to disc, verify them, catalogue them and even e-mail a report of the whole thing nightly or weekly.  It can even remind you the night before to make sure a blank disc has been inserted.

Requirements:

You'll need dvd+rw-tools.

On Debian variants including Ubuntu you would run:

apt-get install dvd+rw-tools

On Redhat Enterprise / Centos you would run:

yum install dvd+rw-tools

In Unix it would probably be the same port/package name, especially on FreeBSD.

No drivers or anything else are required at this point.

Now for the burning.

There are two ways of doing it, the traditional way is creating an iso image using mkisofs, but that is a pain and not even a possibility for some overfilled disk systems.  Many people believe there is no way to write on the fly, except to create an ISO with the data you'd like to burn.

Here's the tradtional way just for the sake of the oldschool:

mkisofs -r -o /root/myisoname.iso /var/www/vhosts

Now we use growisofs to actually burn the .iso:

growisofs -Z /dev/dvd1=/root/myisoname.iso

*Replace /dev/dvd1 with the device name of your burner

Watch as it burns:

   52887552/367337472 (14.4%) @3.9x, remaining 0:59 RBU 100.0% UBU  61.2%
   71925760/367337472 (19.6%) @4.1x, remaining 0:53 RBU 100.0% UBU  55.1%
   90112000/367337472 (24.5%) @3.9x, remaining 0:49 RBU 100.0% UBU  59.2%
  108363776/367337472 (29.5%) @4.0x, remaining 0:47 RBU  99.6% UBU  53.1%
  127303680/367337472 (34.7%) @4.1x, remaining 0:43 RBU 100.0% UBU  55.1%
  145555456/367337472 (39.6%) @4.0x, remaining 0:39 RBU 100.0% UBU  51.0%
  164265984/367337472 (44.7%) @4.1x, remaining 0:37 RBU  99.6% UBU  53.1%
  182779904/367337472 (49.8%) @4.0x, remaining 0:33 RBU 100.0% UBU  55.1%
  200900608/367337472 (54.7%) @3.9x, remaining 0:29 RBU 100.0% UBU  61.2%
  219971584/367337472 (59.9%) @4.1x, remaining 0:26 RBU  97.3% UBU  53.1%
  238157824/367337472 (64.8%) @3.9x, remaining 0:23 RBU 100.0% UBU  57.1%
 



The Sensible Way

There's no reason to use mkisofs and create an isofile, it wastes time and resources.

You could have just done this:

growisofs -M /dev/dvd1 -R -J /var/www/vhosts

*-R and -J are for Rockridge and Joliet extensions so you don't get annoying 8-character long, truncated filenames

 

*Actually my preferred way is this:

growisofs -M /dev/dvd1 -R -J -joliet-long -iso-level 3 /filenordir/name

-joliet-long gives you much longer filenames

-iso-level 3 helps too

This is the perfect setup, in both Linux, Windows and a DVD Player the filenames are shown as expected.

Latest Articles

  • File /etc/vz/conf/ve-vps.basic.conf-sample not found: No such file or directory - Openvz Error solution
  • Ubuntu 10 Nvidia Drivers Not Updated After Kernel Update Solution/How-To Manually Rebuild nvidia kernel modules for Ubuntu
  • What's Needed To Fix Linux
  • mdadm/Debian problem
  • iptables block torrents/torrenting
  • vmware Failed to initialize monitor device 95% power on
  • OpenVPN don't use bridgestart.sh or bridge at all use iptables
  • postfix lopback error solution
  • Drupal/MySQL database error: PDOException: SQLSTATE[42000] [1044] Access denied for user 'db_user'@'localhost' to database 'dbname' in lock_may_be_available() (line 167 of /home/user/public_html/includes/lock.inc).
  • How To Burn ISO Image using cdrtools/dvdrtools for Linux/Unix Ubuntu/Debian/RHEL/Centos etc..
  • Ubuntu Suspend Solution Fix blank screen laptop/computer won't come back
  • iPhone Restore/Backup Location of Notes and Contact/Address Book
  • Install Android SDK and start testing on Debian/Ubuntu: How To Guide/Tutorial
  • gocr - free Linux OCR (Optical Character Recognition) conversion tool
  • Linux Kernel Panic Messages - Symptoms of bad RAM module/stick
  • Hitachi HDD/Drive RMA Process Experience
  • convert carat ^M/M Windows based text files to Linux
  • MySQL Import CSV data tutorial guide
  • scp not found - solution
  • vino crashed/stopped working, restart vino manually without rebooting