DebianThis forum is for the discussion of Debian Linux.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I have a 4.4G file. And this is what happens when I try to make an ISO of it:
Code:
$ mkisofs -r -o brun.iso brun.mkv
I: -input-charset not specified, using utf-8 (detected in locale settings)
genisoimage: Value too large for defined data type. File brun.mkv is too large - ignoring
Any solutions? I found some old patches for genisoimage, but I wonder if there's an other way.
Huh. I passed -udf option to mkisofs, and got the same message.
Ok. Here’s the thing—pay attention : First, what you’re using is not mkisofs, but the mkisofs-derived genisoimage (which you already acknowledge). Only mkisofs (from cdrtools-2.01.01a32 or later) has the ability to write multiple extents as described in the article. To use this functionality, you have to enable iso-level 3 or 4 (the latter of which is really a pseudo-iso-level). For example this works on my system (with vanilla cdrtools-2.01.01a34):
Regardless of your ability to create it, you’d currently have a hard time trying to read such an image from linux.
Second, udf support in mkisofs is poor (and udf support in genisoimage is extremely poor). There is no way to make a standalone udf image using mkisofs. The best you can do is make a hybrid, in which case you still need cdrtools-2.01.01a32 or later and you still use “-iso-level 3” for the multiple extents in the iso part.
So when I suggested udf, I meant using udftools, which is (AFAIK) linux-only.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.