Operating System - HP-UX
1755670 Members
4574 Online
108837 Solutions
New Discussion юеВ

Image Failure gzip: File too large

 
Bradley Gay
Occasional Advisor

Image Failure gzip: File too large

When I try to create the golden image with make_sys_image I receive the error:

gzip: stdout: File too large

How would I change the filesystem to accept large files?
7 REPLIES 7
G. Vrijhoeven
Honored Contributor

Re: Image Failure gzip: File too large

Hi,

normally with the command fsadm -F xvfs -o largefiles /mountpoint.

HTH,

Gideon
Steve Steel
Honored Contributor

Re: Image Failure gzip: File too large

Hi


see man fsadm


Steve Steel
If you want truly to understand something, try to change it. (Kurt Lewin)
Steven E. Protter
Exalted Contributor

Re: Image Failure gzip: File too large

fsadm

This is the command to change an in place filesystem

-F vxfs -o largefiles /dev/vg00/lvol

You might have to get a newer version of gzip too, but I doubt that.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Franky_1
Respected Contributor

Re: Image Failure gzip: File too large

Hi Brad,

you can change your FS for largefile option with (OnlineJFS)

fsadm -F vxfs -o largefiles

Regards

Franky
Don't worry be happy
Steve Steel
Honored Contributor

Re: Image Failure gzip: File too large

Hi


If this is an NFS thing then you need the following.

For the client to accept the largefiles from the server, the server must do a reexport of the fs directory, and then the
client must retake the file system.

Like this on a JFS server

1. fsadm -F vxfs -o largefiles /igdir

fsadm -F vxfs /igdir
( to verify the change)

2. exportfs -i /igdir


3.The client system

unmount /nfs3_igdir

mount servername:/igdir /nfs3_igdir

Steve Steel
If you want truly to understand something, try to change it. (Kurt Lewin)
Bradley Gay
Occasional Advisor

Re: Image Failure gzip: File too large

Can this be done on the root drive?
G. Vrijhoeven
Honored Contributor

Re: Image Failure gzip: File too large

Hi again Brad,

This can be done on alle filesystems ( vxfs) that are >2 GB.

Regards,

Gideon