- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- support files > 2 GB
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
08-07-2003 01:17 AM
08-07-2003 01:17 AM
we're running a x86 based server with SuSE 8.1.
Now we have to copy a file > 2GB to this machine. This original file is splitted into 500MB pieces, and now joining fails with the message "file too large".
Seems like limit 2GB. The partition is formatted with reiserfs3.6.2, Kernel 2.4.19
What do we have to do to support files larger than 2 Gig ??
thanks in advance ..GERD..
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2003 01:25 AM
08-07-2003 01:25 AM
SolutionRegards,
Sergejs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2003 01:34 AM
08-07-2003 01:34 AM
Re: support files > 2 GB
Bad news is... you can't. The way the kernel is written limits the file size on reiserfs to 2GB (a little more on ext3). The next kernel, 2.6, is said to be supporting terabytes files, but while on 2.4.x, you get the max size.
There is a much better way of doing this copy job. And that is to use the multi-volume option of dump. A further advantage of dump over dd is that:
(1) The data can be restored to a disk of different size or type.
(2) Any file system or disk problems won't be replicated into the backup.
(3) Partition sizes may be changed (like to make an FS bigger or smaller) during the restore.
(3) Files/dirs can be selectively extracted from the backup.
The only disadvantages of dump over an image backup, like dd, is that you have to create file systems and swap space and re-install a bootloader after restore if you wind up replacing a failed disk drive. Since that's trivially easy with RedHat by booting off the CD in rescue mode I don't see it as a significant disadvantage.
The basic command to dump a large (greater than 2Gb) file system to files on another disk would look like:
dump 0jMf /path-to-backups/fs-name fs
This will create a series of files, each 2Gb in size, on /path-to-backups named like fs-name001, fs-name002, etc. , (M option). The data written to the to the files will be compressed (j option). It will be a full backup (0) option. Dump only operates on a file system so if your system had file systems of /, /var, /home you'd need to do something like:
dump 0jMf /backups/root /
dump 0jMf /backups/var /var
dump 0jMf /backups/home /home
As an enchancement, you can also use dump to do incremental backups after doing a full. This makes the incremental backups quite fast as only data changed since the last lower numbered backup need to be saved.
Take a look at the man pages for dump and restore for more information.
hth
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2003 01:39 AM
08-07-2003 01:39 AM
Re: support files > 2 GB
:]
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2003 02:50 AM
08-07-2003 02:50 AM
Re: support files > 2 GB
Regards,
Sergejs