- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- tar error - file changed size
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
тАО09-06-2001 05:48 AM
тАО09-06-2001 05:48 AM
Does "non-fatal" mean that the file is correctly backed up or just that the error is not serious enough to stop tar in its tracks?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2001 06:05 AM
тАО09-06-2001 06:05 AM
Re: tar error - file changed size
tar -cf stuff *
this will also try to tar the stuff file into itself, bad thing to do
cd /tmp
tar -cf stuff /other-dir
will create the stuff file in /tmp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2001 06:06 AM
тАО09-06-2001 06:06 AM
SolutionIt means that while being backed up a file was modified (typically appended) by another process. Whether this is bad or not depends on the application. If it is a database it is almost certainly very bad. One way to avoid these kinds of errors is to do an OnlineJFS snapshot mount and backup the snapshot. The snapshot takes only a few seconds and then all the snapshot files are certain to remain constant while the 'real' files can remain in use.
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2001 06:21 AM
тАО09-06-2001 06:21 AM
Re: tar error - file changed size
the tar is to a tape, not to a file.
Clay,
unfortunately, many of our customers do not have online JFS. The file is not a database file. As you suggest, it is appended to periodically. It appears that the backup is coinciding with one of these periods.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2001 10:07 AM
тАО09-06-2001 10:07 AM
Re: tar error - file changed size
As clay told you, the file got modified (appended or reduced) during the backup. does not look that serious to me, until the file is very important. There is no choice over this other than online JFs where you can create a snapshot and back that up. That is the only way you can be certain that you have a backup whcih matches the state of you file when the snapshot was taken. Otherwise learn to live with the error message you are getting. No harm in that.
Thanks