- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- best commands to move data to new storage
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
09-10-2004 01:29 PM
09-10-2004 01:29 PM
We are moving all data from SC10 to EVA3000. Data from sc10 are oracle and applications binaries and also oracle datafiles. We will do it while database is offline. Please assist us of what is the best command should we use to to successfully migrate those data. This comamand should preserve permission, symbolic links and date of the datafile.
Will highly appreciate your assistance.
Regards,
Adriatico
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2004 02:15 PM
09-10-2004 02:15 PM
Solutioncd /old_directory
find . | cpio -pudlmv /new_directory
find , assumes that there are no 'hidden' files, those that start with a period such as .profile and .exrc. If there are such files, use:
find . [.!]* | cpio -pudlmv /new_directory
The .[!.]* makes sure that .. is not matched and sent to the new location, yet finds all the 'dot-files'.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2004 03:10 PM
09-10-2004 03:10 PM
Re: best commands to move data to new storage
vxdump -0 -f - -s 1000000 -b 16 /zmnt/oracle | (cd /oracle; vxrestore rf -)
Where /zmnt is old filesystem and /oracle is new.
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2004 05:02 PM - last edited on 09-16-2024 02:09 AM by support_s
09-10-2004 05:02 PM - last edited on 09-16-2024 02:09 AM by support_s
Re: best commands to move data to new storage
regards
SK
- Tags:
- storage controller
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2004 03:56 AM
09-11-2004 03:56 AM
Re: best commands to move data to new storage
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2004 06:03 PM
09-11-2004 06:03 PM
Re: best commands to move data to new storage
The oracle datafiles from SC10 are more than 2 Gb. Aside from that, Oracle and applications will also move to EVA3000. So if cpio could not handle this what should be the command are appropriate in our migration. Please also consider oracle and applications binaries in the command you will provide.
Thanks in advance.
Adriatico
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2004 06:42 PM
09-12-2004 06:42 PM
Re: best commands to move data to new storage
regards
SK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2004 01:21 AM
09-13-2004 01:21 AM
Re: best commands to move data to new storage
Thanks and regards
Prashant