- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- problem while taking backup of /var/lost+found
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
01-08-2008 05:09 AM
01-08-2008 05:09 AM
problem while taking backup of /var/lost+found
While taking tar backup of /var/lost+found it is going in to loop and it will never complited .Force fully we have to kill this process.
Kindly suggest the solution.
O/S is HP UX 10.0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 05:24 AM
01-08-2008 05:24 AM
Re: problem while taking backup of /var/lost+found
Give the syntax.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 05:38 AM
01-08-2008 05:38 AM
Re: problem while taking backup of /var/lost+found
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 06:27 AM
01-08-2008 06:27 AM
Re: problem while taking backup of /var/lost+found
lost+found is for files with lost and/or found file structure that became corrupt / lost due to a system crash or some like event. fsck did not know what they were named or their location so it puts them in there.
The idea is that you look at those files, try to determine if they are important and move or rename them back to what they should be.
If you must how about trying cpio ?
cd /var/lost+found find ./|cpio -omvb > /dev/rmtX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 09:17 PM
01-08-2008 09:17 PM
Re: problem while taking backup of /var/lost+found
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 10:18 PM
01-08-2008 10:18 PM
Re: problem while taking backup of /var/lost+found
That's the problem. You have no idea what the names of the files are and no idea if they are useful. I don't understand why tar would hang on them? When is the last time you did an fsck?
Also, if these files went "missing" on some crash, has any user complained about them?
Since some are corrupted, I'm not sure if it makes sense to save them. I suppose you could have a loop that tars each file and then if it stops, you know which to remove. Then you can tar off the rest.
Start off with the last one listed (-v) before it hung?