public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] how to make large iso with mkisofs?
@ 2009-06-19 15:03 David Shen
  2009-06-19 15:16 ` Paul Hartman
  2009-06-19 15:49 ` Joerg Schilling
  0 siblings, 2 replies; 6+ messages in thread
From: David Shen @ 2009-06-19 15:03 UTC (permalink / raw
  To: gentoo-user

Hi,

I have a blue-ray dvd copied on disk, it is about 20GB large, when I
use mkisofs, it reports my files are too large. Is there any way to
fix this?


-- 
Best Regards,
David Shen

http://twitter.com/davidshen84



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [gentoo-user] how to make large iso with mkisofs?
  2009-06-19 15:03 [gentoo-user] how to make large iso with mkisofs? David Shen
@ 2009-06-19 15:16 ` Paul Hartman
  2009-06-19 15:43   ` David Shen
  2009-06-19 20:46   ` Neil Bothwick
  2009-06-19 15:49 ` Joerg Schilling
  1 sibling, 2 replies; 6+ messages in thread
From: Paul Hartman @ 2009-06-19 15:16 UTC (permalink / raw
  To: gentoo-user

On Fri, Jun 19, 2009 at 10:03 AM, David Shen<davidshen84@googlemail.com> wrote:
> Hi,
>
> I have a blue-ray dvd copied on disk, it is about 20GB large, when I
> use mkisofs, it reports my files are too large. Is there any way to
> fix this?

I don't have a Blu-ray drive and never used one, but you can try to
use growisofs from app-cdr/dvd+rw-tools. It contains examples in the
manpage:

       To master and burn an ISO9660 volume with Joliet and Rock-Ridge
extensions on a DVD or Blu-ray Disc:

            growisofs -Z /dev/dvd -R -J /some/files

       To append more data to same media:

            growisofs -M /dev/dvd -R -J /more/files

       Make sure to use the same options for both initial burning and
when appending data.

       To finalize the multisession DVD maintaining maximum compatibility:

            growisofs -M /dev/dvd=/dev/zero



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [gentoo-user] how to make large iso with mkisofs?
  2009-06-19 15:16 ` Paul Hartman
@ 2009-06-19 15:43   ` David Shen
  2009-06-19 16:12     ` Joerg Schilling
  2009-06-19 20:46   ` Neil Bothwick
  1 sibling, 1 reply; 6+ messages in thread
From: David Shen @ 2009-06-19 15:43 UTC (permalink / raw
  To: gentoo-user

thanks, but I have just found an easier solution, just add -iso-level
3 to mkisofs option. the iso level 3 do not have restriction on file
size.


On Fri, Jun 19, 2009 at 11:16 PM, Paul
Hartman<paul.hartman+gentoo@gmail.com> wrote:
> On Fri, Jun 19, 2009 at 10:03 AM, David Shen<davidshen84@googlemail.com> wrote:
>> Hi,
>>
>> I have a blue-ray dvd copied on disk, it is about 20GB large, when I
>> use mkisofs, it reports my files are too large. Is there any way to
>> fix this?
>
> I don't have a Blu-ray drive and never used one, but you can try to
> use growisofs from app-cdr/dvd+rw-tools. It contains examples in the
> manpage:
>
>       To master and burn an ISO9660 volume with Joliet and Rock-Ridge
> extensions on a DVD or Blu-ray Disc:
>
>            growisofs -Z /dev/dvd -R -J /some/files
>
>       To append more data to same media:
>
>            growisofs -M /dev/dvd -R -J /more/files
>
>       Make sure to use the same options for both initial burning and
> when appending data.
>
>       To finalize the multisession DVD maintaining maximum compatibility:
>
>            growisofs -M /dev/dvd=/dev/zero
>
>



-- 
Best Regards,
David Shen

http://twitter.com/davidshen84



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [gentoo-user] how to make large iso with mkisofs?
  2009-06-19 15:03 [gentoo-user] how to make large iso with mkisofs? David Shen
  2009-06-19 15:16 ` Paul Hartman
@ 2009-06-19 15:49 ` Joerg Schilling
  1 sibling, 0 replies; 6+ messages in thread
From: Joerg Schilling @ 2009-06-19 15:49 UTC (permalink / raw
  To: gentoo-user

David Shen <davidshen84@googlemail.com> wrote:

> I have a blue-ray dvd copied on disk, it is about 20GB large, when I
> use mkisofs, it reports my files are too large. Is there any way to
> fix this?

Which files are "too large"?
Are you using mkisofs?

Jörg

-- 
 EMail:joerg@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin
       js@cs.tu-berlin.de                (uni)  
       joerg.schilling@fokus.fraunhofer.de (work) Blog: http://schily.blogspot.com/
 URL:  http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [gentoo-user] how to make large iso with mkisofs?
  2009-06-19 15:43   ` David Shen
@ 2009-06-19 16:12     ` Joerg Schilling
  0 siblings, 0 replies; 6+ messages in thread
From: Joerg Schilling @ 2009-06-19 16:12 UTC (permalink / raw
  To: gentoo-user

David Shen <davidshen84@googlemail.com> wrote:

> thanks, but I have just found an easier solution, just add -iso-level
> 3 to mkisofs option. the iso level 3 do not have restriction on file
> size.

If your problem has been that you need multi-extent files for your purpose, you 
are correct.

Jörg

-- 
 EMail:joerg@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin
       js@cs.tu-berlin.de                (uni)  
       joerg.schilling@fokus.fraunhofer.de (work) Blog: http://schily.blogspot.com/
 URL:  http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [gentoo-user] how to make large iso with mkisofs?
  2009-06-19 15:16 ` Paul Hartman
  2009-06-19 15:43   ` David Shen
@ 2009-06-19 20:46   ` Neil Bothwick
  1 sibling, 0 replies; 6+ messages in thread
From: Neil Bothwick @ 2009-06-19 20:46 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 504 bytes --]

On Fri, 19 Jun 2009 10:16:18 -0500, Paul Hartman wrote:

> > I have a blue-ray dvd copied on disk, it is about 20GB large, when I
> > use mkisofs, it reports my files are too large. Is there any way to
> > fix this?  
> 
> I don't have a Blu-ray drive and never used one, but you can try to
> use growisofs from app-cdr/dvd+rw-tools.

growisofs only handles writing the data to the disc,the rest of the work
it hands over to mkisofs.


-- 
Neil Bothwick

Set phasers to extreme itching!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-06-19 20:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-19 15:03 [gentoo-user] how to make large iso with mkisofs? David Shen
2009-06-19 15:16 ` Paul Hartman
2009-06-19 15:43   ` David Shen
2009-06-19 16:12     ` Joerg Schilling
2009-06-19 20:46   ` Neil Bothwick
2009-06-19 15:49 ` Joerg Schilling

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox