Because the DVD+RW format allows a true UDF file system, you can write to them without using packet writing.
You do not need to apply any packet writing patches to the kernel to use this method of DVD+RW writing.
I'll explain how I have it running.
- Make sure to you compile UDF support into your kernel.
File systems -> CD-ROM/DVD File Systems - Edit you /etc/fstab and make sure you have two entries. One for accessing DVD in "normal" mode and one for accessing in writing mode.
My burner device location is /dev/hdb. Change this to point to your burner location.
Code: Select all
/dev/hdb /mnt/dvdrw udf noauto,noatime,unhide,users,rw 0 0 /dev/hdb /mnt/cdrom auto noauto,noatime,ro,users 0 0 - Make sure you have the folder needed for the mount points.
Code: Select all
mkdir /mnt/cdrom mkdir /mnt/dvdrw - To format a new disc
dvd+rw-format is from the dvd+rw-tools package and mkudffs is from the udftools package which you may need to emerge.
Code: Select all
dvd+rw-format /dev/hdb mkudffs /dev/hdb
The media must NOT be mounted when you perform these commands. - Mount the writeable disc and change permissions.
You only have to change the permissions the first time you mount the writeable disc.
Code: Select all
mount /dev/hdb /mnt/dvdrw chmod a+rw /mnt/dvdrw - You should now be able to copy to the folder as any user now.
- Make sure to unmount the disc when done.
- For KDE users, make two device icons on your desktop. One for DVDROM access and one for DVD+RW access.
(You can name them whatever you want)
Under the device properties both will point to /dev/hdb, but the mount points will be different.
In addition make sure to unclick the read-only property for the writer. You can now use the desktop icons to mount and unmount both. - As mentioned by NeddySeagoon, Every rw mount costs a superblock write and the media life is only about 1000 writes. When the superblock is dead, the data is gone. So tried to minimize your number of mounts. Either mount only when you needed to write or leave mounted if you leave your system on.
Edit: This is probably outdated and/or requires changes due to the advances with media mounting included in the newest DEs.





