-
Notifications
You must be signed in to change notification settings - Fork 32
Question: Using udfutils to create a data BD-R image on Linux #40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Exactly.
Currently in the way how you used it. Problem is that there is no linux tool which can copy new file into UDF 2.50 or UDF 2.60 image.
mkudffs does not support putting files during formatting. In the same way works also mke2fs (for ext2/3/4), it does not support putting new files during formatting.
No it cannot.
To have feature complete support for formatting UDF filesystems
Sorry, but I do not understand this question. Packet writing is a technique/operation how to write data/packets to optical media, e.g. something like implementation of "write" syscall. |
Basically I do not know any non-comercial Linux tool which can create non-empty BD-R UDF image (2.50+) with files. There is paid Nero for Linux which support it. My plan was to extend mkudffs to allow "putting" files/directory during formatting, but I have not had time to implement it yet. So it would have been the first free Linux tool for pre-formatting UDF 2.50+ discs. But I do not see that I would have time for it in near future. Of course patches for such implementation are welcome! |
Hello pali,
Ok, I can certainly appreciate that point. I thought that I was just missing something in how to use it.
Ok. My thought was that maybe the way to write to an image file would be similar to how you would use a burner (like a virtual burner dev node). But I get that this is not the case...
Ah, Ok. I had not considered Nero, but that would be a fine option.
Understandable... I appreciate that, but I think that scope is outside of my capability. Thank you again ever so much! |
Hello pali,
I posted this on stack exchange without much success, so I hope it is Ok that I post my question here.
I'm attempting to script burning data Blu-ray media for a large collection of files. I want to generate image files on one server to be burned onto BD-R DL (50GB) media at a later point on another workstation. Some of my files are in the 5-6GB range each, which is why I want to UDF to avoid needing to split them.
I know that genisoimage will work to some degree with experimental udf support and I'm likely going to have to use that method, but I wanted to better understand the udf tools and I'm not finding a lot of documentation which explains the situation. I've been looking at mkudffs (I'm on v2.1 from debian buster) but I'm having a bit of trouble with them...
I made the UDF image like this:
I then attempted to use the image by loop mounting it:
But I am unable to write to it...
I assume that it is mounting as read-only because as the man pages indicate blu-ray uses UDF revision 2.50 and the linux kernel only supports read-write support on UDF revisions up to 2.01.
My questions are:
Thanks!
The text was updated successfully, but these errors were encountered: