- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Creating large files
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
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
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
тАО02-21-2002 08:41 AM
тАО02-21-2002 08:41 AM
Creating large files
(BMCUDO182314E Maximum size has been reached for all data files)
Since my vxfs file-system was created with the largefiles option should the file size be limited to a 2.0 GB maximum?
Will the fsadm command with the largefile option correct this problem?
Thanks
Don
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-21-2002 08:44 AM
тАО02-21-2002 08:44 AM
Re: Creating large files
I have files with more than 2Gb width in Oracle , Vxfs and HP/US 11.0.
It's look like a Oracle problem.
Regards,
Justo.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-21-2002 08:50 AM
тАО02-21-2002 08:50 AM
Re: Creating large files
Share and Enjoy! Ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-21-2002 08:50 AM
тАО02-21-2002 08:50 AM
Re: Creating large files
# fsadm -F vxfs /dev/vgXX/lvolX
* got to umount the FS first (unless you got ONlineJFS)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-21-2002 08:50 AM
тАО02-21-2002 08:50 AM
Re: Creating large files
fsadm -F vxfs /myfilesys will display the largefiles setting. It is also possible the it was mounted with nolargefiles to override the default of the filesystem. However, I doubt that this is your problem because I have seen this very problem before. The trick is to dump to a named pipe.
mknod /tmp/mypipe p
cat < /tmp/mypipe > myoutputfile &
Now direct your export to the named pipe and when finished the data will be in 'myoutputfile'.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-21-2002 08:51 AM
тАО02-21-2002 08:51 AM
Re: Creating large files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-21-2002 08:55 AM
тАО02-21-2002 08:55 AM
Re: Creating large files
check and make sure your filesystem has been created with the largefiles option. Also make sure the filesystem is mounted with largefiles option. Do fsadm /lv_name to check if the filesystem has largefils enabled. Also check your /etc/fstab to see if the largefiles option is added to the filesystem mount options.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-21-2002 06:04 PM
тАО02-21-2002 06:04 PM
Re: Creating large files
I am not sure that can solve the problem.
Try to check the ulimit by typing "ulimit -a" to see the results. Or go to this link for more information:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xb47750011d20d6118ff40090279cd0f9,00.html
If still can't solve the problem, this may be the Oracle setting problem.
Hope this helps.
Kenny.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-21-2002 07:31 PM
тАО02-21-2002 07:31 PM
Re: Creating large files
dd if=/stand/vmunix of=/mount/sparse_file bs=1024k seek=4000
If you're able to create the sparse file w/out errors; possibly look towards the app to resolve this one.
Hope this helps
-denver