- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Tar backup error
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
06-05-2007 11:10 PM
06-05-2007 11:10 PM
Tar backup error
tar: blocksize = 0
tar: backspace over record failed
Can somebody tell me what exactly error means?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2007 11:22 PM
06-05-2007 11:22 PM
Re: Tar backup error
Can you provide the exact command you used?
Is there sufficient diskspace for the archive?
The second error message indicates possibly illegal or invisible charaters in filenames you are attempting to ad to the tarball.
I'd look at that first. Doesn't Solaris have an ITRC? Guess not.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2007 11:34 PM
06-05-2007 11:34 PM
Re: Tar backup error
It appears that you are attempting to append to a tape using 'tar' ('tar -r...'). It's possible that the tape drive's driver does not support the backward space ('bss') operation. You should be able to confirm this with 'mt eod && mt bss 1'. Even if this operation is supported, it's rather dangerous, as the write head could be misaligned, causing existing data to be overwritten.
It's much safer to write to a fresh tape.
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2007 11:46 PM
06-05-2007 11:46 PM
Re: Tar backup error
We are working in HP-unix backround only..but we are supposed to handle this one solaris server which is in our scope.
Command we fired
tar -cvf /dev/rmt/1m /u02/dba > u02dba.txt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2007 12:55 AM
06-06-2007 12:55 AM
Re: Tar backup error
Guess again?
http://sunsolve.sun.com
http://www.sun.com/bigadmin/home/index.html
It might also be interesting to know which
type of tape drive is being used, and what
state it's in (clean tape, used tape, ...).
Do "mt" commands fail, too, or is it a
"tar"-only problem?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2007 04:20 PM
06-06-2007 04:20 PM
Re: Tar backup error
You never worked with mag tape? ;-)
backspace is a tape motion command.
See mt(1) bsr, or bss as PCS mentioned.