- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Copying raw volumes to a new server
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
06-23-2004 11:03 PM
06-23-2004 11:03 PM
Copying raw volumes to a new server
Filesytem data is not a major issue, but I'm not sure how to transfer the informix raw volumes I have. Is there a way of combining dd, and ftp into a script? Has anyone tried something similar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 11:14 PM
06-23-2004 11:14 PM
Re: Copying raw volumes to a new server
How about dd and remsh.
# dd if=/dev/rdsk/cxtydz ibs=1024 | remsh rhost -l ruser dd of=/dev/rdsk/cxtydz obs=1024
Yoy will need to setup a temp $HOME/.rhosts file for the user.
Hope this helps,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 11:20 PM
06-23-2004 11:20 PM
Re: Copying raw volumes to a new server
If you have a good network, you can copy raw_devices as follows:
dd if=/dev/vgxx/rlvolXX bs=32768k |remsh target "dd of=/dev/vgyy/lvolYY bs=32768k"
You have to provide free remsh access from source to target.
BTW, this is a good solution, if your DB is full, other I'd recommend to use ontape utility. I mean to create ontape archive , on the target machine build needed raw device configuration and restore the db with ontape -r. You can do ontape archive either on a tape or into a file.
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 11:21 PM
06-23-2004 11:21 PM
Re: Copying raw volumes to a new server
# dd if=/dev/vg01/rlvol1 ibs=1024k | remsh rhost -l ruser dd of=/dev/vg01/rlvol1 obs=1024k
and I changed the blocksize to 1024k, works faster.
Reagrds,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 11:23 PM
06-23-2004 11:23 PM
Re: Copying raw volumes to a new server
Thanks for your help.