UDF and FreeBSD

FreeBSD supports UDF 2.50 for bluray discs?
I have read every post on the forum to mount disks: cdrom ok, dvd ok, but bluray impossible.
Thanks.
 
Normal blu-ray disks should be readable. The only problem you will have is trying to play commercial Blu-ray disks. These are encrypted and unlike the DVD encryption this hasn't been fully cracked yet. It's therefor impossible to play commercial blu-ray disks on any open source operating system.
 
Thanks for responding SirDice. I'm using a backup of a bluray therefore has no encryption (to remove it in w7 with anydvd hd.)

With:
mount_cd9660 /dev/acd0 /home/me/folder
I can mount cd and dvd. But no bluray.
 
I have also tested
mount-t udf /dev/acd0 /home/me/folder
mount-t udf /dev/acd0 /cdrom (as root)

The result is the same.

Edit: I can not change my post to Merge with previous ... sorry
 
@musucopo

Try also that:
Code:
# [B]kldload atapicam[/B] [color="#c0c0c0"](co You would have [FILE]/dev/cd0[/FILE] to try instead of [FILE]/dev/acd0[/FILE])[/color]
# [B]mount_cd9660 -o ro[/B] [color="#c0c0c0"](try read only also)[/color]
# [B]mount_udf    -o ro[/B] [color="Silver"](try read only also)[/color]
 
Thanks for responding ... forgive vermaden running late but was testing.
I have had no luck ... I have tried without success the following commands (all as root):

# [file]mount_cd9660[/file] -o ro / dev/acd0 /cdrom
Code:
mount_cd9660: / dev/acd0: Invalid argument


# [file]mount_cd9660[/file] -o ro / dev/cd0 /cdrom
Code:
mount_cd9660: / dev/cd0: Invalid argument


# [file]mount_udf[/file] -o ro / dev/acd0 /cdrom
Code:
mount_udf: / dev/acd0: Invalid argument


# [file]mount_udf[/file] -o ro / dev/cd0 /cdrom
Code:
mount_udf: / dev/cd0: Invalid argument


# [file]mount_udf[/file] -t / dev/acd0 / cdrom
Code:
mount_udf: / dev/acd0: Invalid argument


# [file]mount_udf[/file] -t / dev/cd0 /cdrom
Code:
mount_udf: / dev/cd0: Invalid argument

Finaly this is my fstab:

Code:
/dev/acd0   /cdrom   cd9660,udf  ro,noauto  0  0
/dev/cd0    /cdrom   cd9660,udf  ro,noauto  0  0

I can think of nothing else ...

Edit: thanks moderator for the help for the message format
 
Hello vermaden;
* a new bluray plain (Sony bdr 50 GB), not get anything. I returned, both as acd0 cd0:
Code:
Input / output error

* with a formatted recordable bluray w7:
Code:
invalid argument

So I was not able to test recording blurays.
I think that until FreeBSD udf does not update to higher versions (2.50 to bluray), there is nothing to do .... what you gonna do, FreeBSD is perfect, but not so much;-) (although I must admit that I also I am no expert and maybe the problem is mine)

Greetings.
 
In any case thank you for your interest.
Forum Somewhere I read that a user had used blurays ... I'll see if we locate him and asked.
If I get something I'll post it here.
Greetings.
 
Use udfclient port, it is user level udf fs manipulation tool(s).
Kernel level support for udf in FreeBSD is far from complete/usable.
 
Maybe it is only me, but when I see something like this:
Code:
mount_udf -o ro / dev/cd0 /cdrom
-----------------^
I get the impression that there is one space where it does not belong. Could that be the case?
 
@ richardpl:
I have been trying to udfclient, but it returns:
Code:
UDF: no explicit support for disc devices for this operating system yet
Let's see if with a little luck in FreeBSD 9 is encouraged to improve support:p.

@ Crivens:
I've actually seen, but only about an error in transcription of the message.

Thank you both for commenting.
Greetings.
 
It's written on that page you linked to:
&quot said:
Just in case, to apply the patch you need the following:
1. FreeBSD sources :)
2. cd /usr/src
3. patch -p1 < /path/to/the/patch
4. cd sys/modules/udf
5. make obj && make depend && make && make install
6. kldload udf
 
musucopo said:
I have not been successful ... it gives me errors when applying the patch.
Greetings.

The patch was for 7.0 while we are at 8.2+ actually and 9.0 will be out in months, probably there were some changes there, it's a lot of time.
 
True ... I send a message to the author to see if you can make a patch for version 8.2. Once you know something I tell you.
Greetings.
 
Back
Top