- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Solution for 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
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
03-12-2002 10:54 AM
03-12-2002 10:54 AM
Solution for large files?
Being a newb idiot at linux here is my issue...
We are needing to write larger files for databases. Currently, we are limited to a 4gb file and must hit the 70gb range. We are using redhat 7.1 ( the hp version ). I have done some reading about ext3 but can't seem to find a solid source as to how to install it into the kernal. Is ext3 an option? If it is an option, how do we go about adding it. Any suggestions/options would be much appreciated :)
Thanks in advance!!
Desperately seeking larger files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 02:02 PM
03-12-2002 02:02 PM
Re: Solution for large files?
If you have a 4gig file size cap, then I'd suggest looking at your database server, and see whether IT has a 4gig limitation.
*does a quick test on the RH7.1 box beside him*
dd if=/dev/zero of=/tmp/Junk count=4097 bs=`echo "1024 * 1024" | bc`
...
ls -al /tmp/Junk
ls: Junk: Value too large for defined data type
err oops.. lets try something else..
wc -c /tmp/Junk
4296075872 Junk
Given that 4Gb is 4294967296.. A successful test. RH 7.1 doens't have an issue (at the file system and kernel level) with 4gb files.
As for converting an ext2 filesystem to ext3, there's another thread here on how to do that. I've never done it myself however.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 05:47 PM
03-12-2002 05:47 PM
Re: Solution for large files?
The maximum file size depends on your file system (reiserfs, ext2, ext3, etc.) your kernel version (2.2 vs. 2.4) and your architecture (32-bit vs 64-bit). I really doubt you're going over the allowable limit if you're using a 2.4 kernel and an ext? fs.
I hope this helps. Good luck.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 07:32 AM
03-13-2002 07:32 AM
Re: Solution for large files?
http://www.zip.com.au/~akpm/linux/ext3/ext3-usage.html
http://www.zip.com.au/~akpm/linux/ext3/
http://people.spoiled.org/jha/ext3-faq.html
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 07:33 AM
03-13-2002 07:33 AM
Re: Solution for large files?
Stuart....
Using your dd if=/dev/zero of=/tmp/Junk count=4097 bs=`echo "1024 * 1024" | bc` command I was able to pass the 4294967296 mark sucessfully ( over 5gb ) with both root and oracle users. Is there a limitation on a datatype or maybe the NFS transfer? We are basically using this RH box as a oracle dump with massive .dmp files and cannot create ( with oracle:dba user ) anything over that golden 4gb mark. If it helps...we are mounting this server to the DB server and moving the dumps on.
Christopher....
I checked the limits.conf and there is nothing set in it to specify a limit on a file size. I am using a 2.4.2-2 kernal and ext2 fs. As seen from above, you were both correct that it is not the FS itself.
Any other suggestions or ideas?
Again...thanks for your help :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 07:41 AM
03-13-2002 07:41 AM
Re: Solution for large files?
These are perfect for what I was looking for. Fortunaltey, the other 2 experts have already directed my issue to another direction.
Thanks for the sites :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 02:03 PM
03-13-2002 02:03 PM
Re: Solution for large files?
The RH box seems to be used only for data storage using that NFS mount.
If it is the same area of kernel revision of Linux (ie. >2.2.16), then ok.
I still think it could be the database server. I know Oracle can handle large raw disk systems, but does it possibly have a limit as to the size of a dump "file" ? What version of Oracle? 8? 9?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2002 06:10 AM
03-14-2002 06:10 AM
Re: Solution for large files?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2002 04:02 PM
03-14-2002 04:02 PM
Re: Solution for large files?
Reguardless of the NFS server's abilites, if the HP-UX box can't handle files larger than 4Gb, then you are buggered.
Did you find out whether the Oracle version you are using can handle large files?
Unfortunately, I don't use either Oracle or HP-UX on a regular basis, so I do not know these answers off the top of my head.