- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- tar command "end of tape " 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-14-2001 01:36 AM
06-14-2001 01:36 AM
The command I use is :
cd /export/home2
tar cvf /export/home/snc.tar snc
I have checked the file system of /export/home , I has lots of free disk .
thanks.
Frank.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2001 01:56 AM
06-14-2001 01:56 AM
Re: tar command "end of tape " error ?
When end-of-tape is reached, tar should prompt the user for a new special file and continues, are you sure you have no quota set, since you are sure to have enough space?
Just thoughts
All the best
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2001 01:57 AM
06-14-2001 01:57 AM
Re: tar command "end of tape " error ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2001 02:39 AM
06-14-2001 02:39 AM
Re: tar command "end of tape " error ?
and I use the way :
tar cvf /export/apps/snc.tar ./snc or
tar cvf /export/apps/snc.tar ./snc/*
both prompts the same problem .
In fact , if I use /export/home instead of /export/apps , the problem also exists.
And there are lots of free on both file system .
Once the problem happeded , the tar is almosts 2G .
What's the problem ? your answer will be greatly appreciated !
thans.
Frank.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2001 03:07 AM
06-14-2001 03:07 AM
SolutionJust an idea. What, as I think, could be a reason of the End-of-tape message. In the last question you have mentioned 2GB. Probably your file system, where you want to store tar archive is the file system that do not support largefiles, greater than 2GB. By default small files are supported (size < 2GB).
You should use file system created with option
-o largefiles or transform your file system, you use to store tar archive, to allow files greater than 2GB. the command fsadm is to be used to make this transformation.
Hope this helps.
Tgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2001 04:27 AM
06-14-2001 04:27 AM
Re: tar command "end of tape " error ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2001 04:39 AM
06-14-2001 04:39 AM
Re: tar command "end of tape " error ?
That's true. Using tar we can archive only "small" files,
under 2GB. But as concernstar archive itself, cn be greter than 2 GB.
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2001 05:30 AM
06-14-2001 05:30 AM
Re: tar command "end of tape " error ?
Good luck
Victor