- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Backup Oracle home software with "cp" command.
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-07-2005 04:30 AM
01-07-2005 04:30 AM
Backup Oracle home software with "cp" command.
Oracle recommends using tar or cpio commands for eample:
$tar -cf - . | (cd /u01/Disk1; tar -xpvf - )
But, can I simply use UNIX “cp” command and copy complete Oracle Home mount point instaed?
In this case what’s difference using cp command compared to using tar or cpio.
Thanks,
G
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2005 04:34 AM
01-07-2005 04:34 AM
Re: Backup Oracle home software with "cp" command.
Regards,
Fred
"Reality is just a point of view." (P. K. D.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2005 04:36 AM
01-07-2005 04:36 AM
Re: Backup Oracle home software with "cp" command.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2005 04:38 AM
01-07-2005 04:38 AM
Re: Backup Oracle home software with "cp" command.
for a full mount point I would use cpio. I would use cp only for a selection of files usually within same directory.
man cpio
Regards
Jean-Luc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2005 04:59 PM
01-07-2005 04:59 PM
Re: Backup Oracle home software with "cp" command.
doing 'cp -p -R
regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2005 05:11 PM
01-07-2005 05:11 PM
Re: Backup Oracle home software with "cp" command.
cp won't give you an indication of how far it's gotten. The "v" in the syntax above will print out each filename as it's processed and you have an idea where things stand. I also seem to recall that errors can pop up from a cp command without any indication about where the command was in the filesystem when the error happened; not so with tar because of the v (I basically don't use cp like this much any more).
The tar syntax recommended by Oracle is a useful tip to keep in mind.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2005 05:54 PM
01-07-2005 05:54 PM
Re: Backup Oracle home software with "cp" command.
# cd/u01/app
# cp -rp ora92olap ora92bak