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.


Tags:

dvd, rw, unix, linuxthere, outdated, confusion, administrator, task, backing, linux, gui, gnomebaker, veteran, users, remotely, keyboard, automated, hassle, ll, scripting, automatically, disc, verify, catalogue, nightly, weekly, inserted, requirements, debian, variants, ubuntu, apt, install, redhat, enterprise, centos, yum, freebsd, drivers, creating, iso, mkisofs, overfilled, disk, tradtional, oldschool, myisoname, var, www, vhosts, growisofs, z, dev, burner, remaining, rbu, ubu, sensible, isofile, wastes, rockridge, joliet, extensions, truncated, filenames, preferred, filenordir,

Latest Articles

  • How to combine .txt ACLs without breaking things
  • How to ping all of Googlebot's IPs script
  • 'virtio0' uses a qcow2 feature which is not supported by this qemu version: QCOW version 3
  • Linux bash script to get the IP of a list of hostnames
  • How To Use Camera Webcam in Docker for OBS Studio etc...
  • Computer Server Won't Post Boot Or Enter BIOS Setup After Installing RAID SAS or GPU Card etc..
  • How To Test PHP Scripts from CLI with GET variables/query string
  • apt-cache how to see all available versions of a package in Debian Ubuntu Mint
  • Virtualbox VBox Guest-utils drag and drop files stops working with Windows VMs
  • How To Remove Ubuntu Netplan and Go Back to /etc/network/interfaces
  • How To Force Flash an AMD Instinct GPU To Another Model Using Debian Ubuntu Mint Linux
  • How To compile ollama from source to use unsupported AMD GPU with rocm in Ubuntu Debian
  • QEMU KVM Virtio GPU Windows Cannot Select 1080P
  • Linux Gnome Desktop Ubuntu Mint Debian Gets Slower After Weeks
  • Firefox How to Save Full Page As Screenshot/PDF
  • Nvidia Datacenter Driver Tesla Slow nvidia-smi response and high utilization with 0 usage
  • ffmpeg how to normalize / increase the volume of your audio
  • kdenlive audio blips pops cracks artifacts solution fix
  • haproxy / nginx certbot SSL issues
  • nginx how to see the real IP when behind a CDN