I can't find any information that's more recent than 2 years on how to setup packetwriting for my DVD-RAM drive. I like DVD-RAMs for reliable backups and hope to set it up correctly. I tried with some outdated how-tos which resulted in messing up a lot because there was no udev back then! How can I achieve this setup in the latest Ubuntu?
DVD-RAM does not require packet writing.
If you are referring to DVD-RW or CD-RW packet writing, I know that there are HOWTOs all over the Internet. However, I have yet to find one that actually works with desktop environments/HAL/dbus/whatever it is that ubermodern systems are using instead of plain old fashioned manual configuration. :-)
I'm sure it is possible. I just can't figure out how to do it reliably without killing half the things that make my system useful. Sorry, this isn't much of an answer at all, I know: I have been searching for one for the last couple of years.
There really were some advantages to the way things were done a few or more years ago.
DVD-RAM is very old so there is no new info. Old and underestimated. DVD-RAM on Ubuntu Linux is easy. I use Ubuntu 16.10 with XFCE4 but that does not matter at all.
Why DVD-RAM? Because it is more reliable and more stable archiving data. See Wikipedia for details on DVD-RAM.
However, DVD-RAM is rather an external drive than a DVD to write on. Not all drives can write and read. However, most modern Laptop and Computer optical drives can.
Careful: DVD-RAM is slow by modern means. Don't force the mount and umount to break.
We have to format it as UDF file system. This is the appropriate FS for the DVD-RAM (I do not quote the details here, use duckduckgo.com)
Know your CD-Writer: Mount a CD, with „mount“ watch out for the name. Like /dev/sr0.
Take the DVD-RAM out of the cartridge if necessary, put it in your drive and reboot.
Prepare:
Make a mount point:
and adapt the user rights etc. You need to adapt the rights again for the mounted DVD-RAM (different than vfat floppy or external drive).
Adapt the fstab:
For automatic mount enter a new line like
The first auto may better be "udf". The second auto depends on you: Try noauto if the boot process hangs.
Format the DVD-RAM:
The default options for mkudffs probably match your needs. Otherwise: man mkudffs !
Mount the DVD-RAM:
should do it, otherwise use as
sudo mount /dev/sr0
. With the fstab entry it will be found.When you ask your CLI now with
mount
it should answer something like:Now again adapt the access rights for the mounted(!) drive:
Test your access rights:
without sudo it should work. Otherwise check the rights.
Do a reboot now or restart all relevant services.
So now we have
It shall be available in the file manager like a normal drive. Watch out for /mnt/dvdram0 (and in Nemo create a bookmark).
Unmounting takes time because of write completion. It is done from CLI or try to find a way in your browser.
What did I forget? What was wromng?
Better way to unmount??