- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- file too large
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
11-04-2007 10:52 PM
11-04-2007 10:52 PM
[27] file too large not restored
We realised that some of the files are not being restored. We tried it 3X and still the same error.
Please could someone help us resolve this problem
Regards
AD
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2007 10:57 PM
11-04-2007 10:57 PM
Re: file too large
It sounds as though you a trying to restore a file to either:
a) A filesystem that is not large enough to accomodate the file.
or
b) You have not made the filesystem accept largefiles. ( more than 2GB ).
Mike.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2007 11:12 PM
11-04-2007 11:12 PM
SolutionCheck if you have online jfs installed:
# swlist -l product | grep -i online
fsadm -o largefiles /dev/
To enable an existing file system without OnlineJFS you could do this:
umount /
fsadm -o largefiles /dev/
Mount it back up........then to double check run and it should say "largefiles"
fsadm /dev/
You may be out of space as well as mentioned.....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2007 11:12 PM
11-04-2007 11:12 PM
Re: file too large
seems like your test server doesn't have largefiles enabled.
Check with:
'fstyp -v /dev/vg00/lvol
If f_flag: 0 -> max 2 GB
if f_flag: 16 -> max 8 GB
You can set it with:
'fsadm -F vxfs (or hfs) -o largefiles /dev/vg00/lvol
See also:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1056373
Also you have to update /etc/fstab , see:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=940718
HTH
Volkmar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2007 11:12 PM
11-04-2007 11:12 PM
Re: file too large
look at target fs by "fsadm /mountpoint". it shows largefiles if largefiles supported.
if it is not supported than
fsadm -o largefiles /dev/vgname/lvname will convert fs to largefiles support.
Hasan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2007 11:21 PM
11-04-2007 11:21 PM
Re: file too large
Is this file >2GB ? In that case you're probably facing option (b) from above.
To check whether your filesystem supports largfiles, issue the command 'fsadm -F vxfs
If it's not there, there are two possibilities:
1) you have onlineJFS: enable largefiles support with 'fsadm -F vxfs -o largefiles
2) you don't have onlineJFS: recreate the filesystem with the largefiles option. (maybe you can also unmount and run the command from (1), but I'm not sure about that)
Now the filesystem should support largefiles.
To check whether it has been mounted with largefiles support:
Issue the 'mount' command without any options. Check the mount options of the filesystem in question for 'largefiles'.
If not there, re-mount the filesystem with the largefiles option (-o largefiles) or add largefiles to the options in fstab.
Cheers,
Wout
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2007 03:04 AM
11-05-2007 03:04 AM
Re: file too large
BR