Can't backup more than ~1TB.


 
Thread Tools Search this Thread
Operating Systems AIX Can't backup more than ~1TB.
# 1  
Old 11-16-2011
Can't backup more than ~1TB.

Hello all,

I create a backup of a file system with
Code:
hostA #  find . | backup -iqvf /backup/hostA.fsA.backup

After a while I get the following error message:
Code:
backup medium write error: File too large
Check backup media and rerun the backup

/backup is a NFS mount and is the backup device here (I think).
Then I mount the NSF share on another server and ran a new backup command.
Code:
hostB # find . | backup -iqvf /backup/hostB.fsB.backup

To my suprise hostB can create far larger backup files and does not see the error message.
Code:
# ls -l /backup
-rw-r--r--    1 root     system   1073741312 Nov 16 12:15 hostA.fsA.backup
-rw-r--r--    1 root     system   19677542400 Nov 16 12:27 hostB.fsB.backup

The size of hostA.fsA.backup is ~1GB.
The size of hostB.fsB.backup is ~19GB.


On hostA & hostB /backup is mounted with nfs3
Code:
# mount | grep /backup
server /export/backup   /backup          nfs3   Nov 07 12:02 # hostA
server /export/backup   /backup          nfs3   Nov 15 14:48 # hostB

I then tried the tar command but it also stopped at ~1GB with an error message.

Why can't hostA write more that 1GB to my NFS share while other hosts can?
# 2  
Old 11-16-2011
Maybe your user is limited?
Code:
ulimit

.. will show the maximal block size (512 bytes) a file may have with your user on this system.
This User Gave Thanks to zaxxon For This Post:
# 3  
Old 11-16-2011
Thanks Zaxxon,

Right on the spot. Changed it to unlimited and the backup runs fine.
# 4  
Old 11-16-2011
You're welcome^^ Btw, 19 TB is already above the recommended file size for jfs2 which is 16 TB:
IBM Information Center - JFS2 Limits

Not that you run into severe problems over time.
# 5  
Old 11-16-2011
Thanks for the warning.

/backup is 800GB so I hope not to touch the 16TB soon :-)
# 6  
Old 11-16-2011
Ah ok - was still having the size stuck in my head, sorry Smilie

Quote:
Can't backup more than ~1TB
Nevermind^^
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Splitting a file into chunks of 1TB

Hi I have a file with different filesystems with there sizes. I need to split them in chucks of 1TB. The file looks like vf_MTLHQNASF07_Wkgp2 187428400 10601AW1 vf_MTLHQNASF07_Wkgp2 479504596 10604AW1 vf_MTLHQNASF07_Wkgp2 19940 10605AID vf_MTLHQNASF07_Wkgp2 1242622044... (4 Replies)
Discussion started by: bombcan
4 Replies

2. Shell Programming and Scripting

Help with Backup Shell Script for Network Device Configuration backup

HI all, im new to shell scripting. need your guidence for my script. i wrote one script and is attached here Im explaining the requirement of script. AIM: Shell script to run automatically as per scheduled and backup few network devices configurations. Script will contain a set of commands... (4 Replies)
Discussion started by: saichand1985
4 Replies

3. Solaris

Attaching 1TB external drive to SunFire v880

Hi I have a 1TB external drive that I want to attach to a SunFire v880 server which runs on Solaris 9. After attaching the external drive what commands should I issue so that the drive will be seen by the server? (7 Replies)
Discussion started by: rahmantanko
7 Replies

4. Shell Programming and Scripting

rsync backup mode(--backup) Are there any options to remove backup folders on successful deployment?

Hi Everyone, we are running rsync with --backup mode, Are there any rsync options to remove backup folders on successful deployment? Thanks in adv. (0 Replies)
Discussion started by: MVEERA
0 Replies

5. Solaris

Multiple Backups to USB 1TB Drives using dd

First of all, great web site! I have been using it for a while but just registered today. It's been a great resource for me. Now, on to my issue.;) I'm geographically separated from six (Sun v245s) development servers that I have been asked to backup and restore as development is done and... (11 Replies)
Discussion started by: ShawnD41
11 Replies

6. Linux

mdadm - Swapping 500GB disks for 1TB

Hi, I have a three disk raid 5, with 500GB disks. This is close to being full, and whilst I can just add another disk and rebuild to add another 500GB, I would prefer to replace with 1TB disks. So i have some questions. Can I replace these disks one by one with bigger disks? I... (1 Reply)
Discussion started by: snoop2048
1 Replies

7. UNIX for Dummies Questions & Answers

FreeBSD 7.1 Rel install on 1TB won't load

Hi Folks, Have anyone install FreeBSD on 1TB hard drive and have problem like not able to boot into the system? Well, I just purchase a new Maxtor 1TB SATA 300 hard drive and install FreeBSD on it, everything install well, but then reboot and all I get is just a display cursor.... nothing... (0 Replies)
Discussion started by: bsdme2
0 Replies

8. Solaris

mounting 1TB hard disk with Solaris10 X86

I have a 1TB hard disk that I had partitioned on a Sun clone and had 7 partitions of 137GB a piece. (Using a USB to SATA adaptor) I then had loaded a new hard disk on my laptop (T60...Lenova) with Solaris 10 X86. I tried to mount the hard disk but it kept telling me the mount point was busy and I... (2 Replies)
Discussion started by: mndavies
2 Replies

9. UNIX for Dummies Questions & Answers

Check backup file size on backup tape

Hi, I performed backup on tape and I want to append more files to my previous backup on the same backup tape. But before I do that I need to know the backup file size of the first backup I performed so that I know the available size on the backup tape. Can someone help me what command I will use... (0 Replies)
Discussion started by: ayhanne
0 Replies
Login or Register to Ask a Question