- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: mkisofs file size limitations
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2006 09:01 AM
09-20-2006 09:01 AM
mkisofs file size limitations
I'm trying to make DVD Golden Images of my HPUX servers for DR, and I'm running into a problem that I believe is due to mkisofs. The DVDs seem fine. They boot. They find the image, and they nearly finish loading. The output goes like this:
Processing 10% of Archive
Processing 20% of Archive
Processing 30% of Archive
Processing 50 % of Archive
somewhere near the end, but before 100%, I get an End of archive error and it asks for a second DVD, which of course desn't exist. Change_media is set to False, and the config seems fine. I think the image is getting truncated by the mkisofs utility. My images are all greater than 2GB, but less than 4GB. Is there some fix or option I need?
My mkisofs commands
RISC
/usr/local/bin/mkisofs -D -R -U -max-iso9660-filenames -eltorito-alt-boot -no-emul-boot -b ${lif[$s]} -o $isotmpdir/$
iname $isotmpdir | tee -a $session
IA
/usr/local/bin/mkisofs -D -R -U -max-iso9660-filenames -no-emul-boot -b EFI_CD_image -eltorito-alt-boot -no-emul-boot
-b ${lif[$s]} -o $isotmpdir/$iname $isotmpdir | tee -a $session
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2006 07:55 PM
09-20-2006 07:55 PM
Re: mkisofs file size limitations
you're not burning the DVD with mkisofs, right?
I believe you have the problem, that your filesystem is not configured for largefiles.
So you only can create files of 2GB.
HTH
Volkmar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2006 08:11 PM
09-20-2006 08:11 PM
Re: mkisofs file size limitations
to check this:
fstyp -v /dev/vg00/lvol3 |grep -i f_flag
if
f_flag: 0 - max 2GB
f_flag: 16 - max 8GB
V.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2006 01:11 AM
09-21-2006 01:11 AM
Re: mkisofs file size limitations
fstyp -v /dev/vx/dsk/ignitedg/ignitevol | grep -i f_flag
f_flag: 16
I recorded the error:
gunzip: stdin: unexpected end of file
pax_iux ready for volume 2
I'm burning the ISO to DVD using ImgBurn.
The iso's are created on a samba share and I'm burning them to a DVD player over the network. they seem fine, other than this wacky error at the very end of the load.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2006 03:11 AM
09-21-2006 03:11 AM
Re: mkisofs file size limitations
so if you unzip your image of the DVD without booting from it, you get already an error 'unexpected end of file'?
So the image was cut during creation.
How big is the gz-image?
How big unzipped? - More than 8GB?
The next point could be, that your gzip is not supporting more than 2 GB, or your tar if it is also involved.
I've heard that gzip 1.24 can't handle files bigger than 2 GB.
You have to check every step of creation for this cut - or a message like 'end of tape' and something like 'give device to continue'.
HTH
Volkmar