- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- cpio not copying .files
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
10-22-2002 11:34 AM
10-22-2002 11:34 AM
cpio not copying .files
find /home/mark -depth -newer /home/backup/junk |cpio -ocumBvd > /home/backup/back. This command is being used in a script and is not copying the .files. What would be wrong with this command? Please advice.
Thanks
Joe.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2002 11:44 AM
10-22-2002 11:44 AM
Re: cpio not copying .files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2002 11:45 AM
10-22-2002 11:45 AM
Re: cpio not copying .files
What are time stamps on the . files in /home/mark and on /home/backup/junk?
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2002 11:46 AM
10-22-2002 11:46 AM
Re: cpio not copying .files
# find /home/mark -depth -newer /home/backup/junk -exec ls -l {} \;
to find out.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2002 11:48 AM
10-22-2002 11:48 AM
Re: cpio not copying .files
It skips your "dot" files, right? Your command syntax works for me. Are you sure the "dot" files are new enough to be included?
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2002 11:49 AM
10-22-2002 11:49 AM
Re: cpio not copying .files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2002 12:07 PM
10-22-2002 12:07 PM
Re: cpio not copying .files
If you are making a regular backup of a user's home directory, probably the only changed dot file you will get is the .sh_history file, and maybe some of the Xwindows files (.dt dir, .Xauthority, etc.) if you are using that. I checked some of mine and they are all pretty old.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2002 12:16 PM
10-22-2002 12:16 PM
Re: cpio not copying .files
I understand the command is OK.
Thanks again,
Joe.