- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: data migration
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
03-12-2004 02:36 AM
03-12-2004 02:36 AM
data migration
I need to migrate data from old raid based storage array to high end storage array. I am thinking to create new file systems and copy the data using tar command using the syntax below.
cd fromdir ; tar cf - . | ( cd todir ; tar xf - )
Man page says
Because of industry standards and interoperability goals, tar does not
support the archival of files larger than 2GB or files that have
Does this note applies to tar command syntax mentioned above?
What is the best way to do migration? I need to do it in TBs of data.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2004 02:40 AM
03-12-2004 02:40 AM
Re: data migration
I did migration like yours - best thing to use is vxdump:
vxdump -0 -f - -s 1000000 -b 16 /export/data/sap/IPR/ARCHIVE | (cd /zmnt/export/data/sap/IPR/ARCHIVE ;
vxrestore rf -)
The zmnt is the new storage.
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2004 02:41 AM
03-12-2004 02:41 AM
Re: data migration
The only thing you need to watch out for when doing copying of this type is that you make sure you don't miss out th".files". However, your command syntax is correct.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2004 02:42 AM
03-12-2004 02:42 AM
Re: data migration
Gurus here will give exact command line. I have not used fbackp that often. Even a dd will also help and you can bump up bs count to bit high.
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2004 02:46 AM
03-12-2004 02:46 AM
Re: data migration
Another approach would be to add the LUN's / PV's or your new array to your existing volume group using vgextend and then use pvmove to move the data. You then can vgreduce the originals.
The scary part of this to me is that if you are thinking about using tar for this then that implies that tar is your normal backup. So how are you backing your files >2GB now?