You are not logged in.
Pages: 1
Hi all,
I need to fir a 4.2 gig file onto a DVD in such a way that it can be accessed from Windows XP (so no Linux-filesystem-on-DVD methods).
Does anyone know of a way to do this without splitting the file?
If not, what's the best recommended way to split a file for recombination in XP, preferably with GUI FOSS or software built into XP.
Thanks a lot,
~B
Offline
I don't know about you but all of my DVDs are 4.3gb or 4.7gb anyway, so you should be able to fit it on without any trouble using any burning software (I reccomend deepburner for XP).
Offline
I don't know about you but all of my DVDs are 4.3gb or 4.7gb anyway, so you should be able to fit it on without any trouble using any burning software (I reccomend deepburner for XP).
Yes, but 2 gigs is the max that can be written with mkisofs (or 4 gigs for more recent/dev versions).
I don't own XP.
Last edited by brucebertrand (2007-03-03 22:33:09)
Offline
iirc, growisofs doesn't have that limit. try using that. it's part of dvd+rw-tools.
/swogs
Last edited by hugin (2007-03-05 16:04:38)
Open Toes; Open Mind; Open Source.
Offline
Offline
Can K3B do the job?
Offline
As with most Linux GUI programs, K3B is just a front end for a set of CLI tools. In this case K3B uses growisofs.
Last edited by brucebertrand (2007-03-05 19:44:48)
Offline
ISO9660/Joilet, the filesystem that mkisofs uses, has a 2GB file size limit (or 4GB, for the dev version).
The UDF filesystem has a much larger limit, but the UDF implementation in mkisofs/growisofs won't accept files larger than 2GB (or 4GB for dev ver???)
However, growisofs can burn a premastered UDF disc image to DVD.
So, I need to create a UDF image.
Taken from http://www.lemoncube.com/412.html
dd if=/dev/zero of=image2.udf bs=64k seek=71715 count=1
losetup /dev/loop0 image2.udf
mkudffs --media-type=dvd /dev/loop0
mount -t udf /dev/loop0 /mnt
cp backup_bigger_than_2gb.tar.gz /mnt
umount /mnt
losetup -d /dev/loop0
growisofs -Z /dev/hdd=image2.udf
BUT, When I try to copy the file to the new loop device, it bails out at 1GB with a "File size exceeded" error.
Turns out that, as of recently (around kernel version 2.6.8) , UDF in Linux is unable to handle files larger than 1GB.
See: http://git.kernel.org/?p=linux/kernel/g … 1b539fea44
And: http://www.mail-archive.com/debian-secu … 33301.html
In this last post, does anyone know what Omer meant about using strip to work around the problem?
Offline
I have created a Live Larch dual-layer DVD with 7.6GB of data with K3B and it boots copy-to-ram with no problems. The Linux boot portion is over 700MB and the added packages are not involved in the boot-up but are available to install via pacman...3200 packages in all.
Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit! X-ray confirms Iam spineless!
Offline
I have created a Live Larch dual-layer DVD with 7.6GB of data with K3B and it boots copy-to-ram with no problems. The Linux boot portion is over 700MB and the added packages are not involved in the boot-up but are available to install via pacman...3200 packages in all.
The point of the thread, though, is that its difficult to put a single file larger than 2gb onto a dvd.
Offline
My DVD has a single folder containing over 3200 packages and none of the files therein are 2GB ...as you point out the limits of file size.
Knoppix has a DVD with full 4.7GB but uses two "cloop" systems to do it.
It would seem you might split the file, rename one-half and burn to DVD r/w. Then copy,rename and join the files when in Desktop.
Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit! X-ray confirms Iam spineless!
Offline
It would seem you might split the file, rename one-half and burn to DVD r/w. Then copy,rename and join the files when in Desktop.
Yes...that's what I asked about in the initial post....
...what's the best recommended way to split a file for recombination in XP, preferably with GUI FOSS or software built into XP.
Can you suggest a method of splitting a file so that it can be recombined in XP by someone who will need a point-n-click interface.
Offline
I think 7-zip would be your best bet. I would turn the compression as far down as possible to make it as fast as possible. I've not actually done this, but it's an idea. You can use 7zip from Arch with the p7zip app in the extra repo.
/swogs
Open Toes; Open Mind; Open Source.
Offline
I've tried 7zip, but the MD5 hash of the extracted file differs from that of the original. This seems strange, so perhaps I'm not using the proper options.
Offline
I was having this problem too, using growisofs...but using the -allow-limited-size option in the command line got it working...but it gives me this warning:
This size can only be represented in the UDF filesystem.
Make sure that your clients support and use it.
ISO9660, Joliet, RockRidge, HFS will display incorrect size
Offline
Can you just use "split" and "cat" the files together later on? I have done that with video files before.
Offline
If WinXp is able to handle a UDF DVD you could use k3b (e.g.). Set UDF as filesystem and burn it.
P.S.
Sorry, but I don't know if XP could read UDF DVDs ...
Last edited by SiD (2007-12-14 00:36:10)
Offline
Pages: 1