Jump to content

UDF Cds


rquin66
 Share

Recommended Posts

There's very little in the way of UDF support in the current kernel but I believe the 2.5.x development kernel has UDF support.

 

Reading a UDF CDRW (ie. written by direct CD on a windows machine) can be done very easily. You can mount the CD manually:

 

mount -t udf /dev/cdrom /mnt/cdrom

 

or you can disable supermount, edit fstab, and put a mounting icon on your desktop.

 

Disable supermount:

 

supermount -i disable

 

Reboot so that supermount is actually disabled.

 

Edit your fstab entry for the CDRW to look something like this:

 

/dev/scd0 /mnt/cdrom udf,iso9660 user,iocharset=iso8859-1,umask=0,exec,ro,noauto 0 0

 

The important modifications are the udf,iso9660 filesystem specification (in that order or else you might mount the iso9660 bridging track instead of the udf track), and the removal of the codepage= specification (which causes automatic detection of udf tracks to fail on some systems).

 

Finally add a convenient mounting icon on your desktop.

 

Glitz.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...