- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: remote backup data from rp5470 to k260
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
07-05-2004 07:55 PM
07-05-2004 07:55 PM
remote backup data from rp5470 to k260
At RRP5470 HP-UX server, I want to use the following command to remote backup data to DDS3 tape drive in K260 UP-UX server.
tar cvhf /dev/rmt/0m *
How can I do that? Thanks!
Best Regards
Ajk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2004 08:09 PM
07-05-2004 08:09 PM
Re: remote backup data from rp5470 to k260
You can try
#tar -cvf - *|remsh remote_server_ip_address dd of=/dev/rmt/0mn
regards,
RDL.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2004 09:10 PM
07-05-2004 09:10 PM
Re: remote backup data from rp5470 to k260
Your command does not work. Would you please confirm it? Thank you.
Best Regards
Ajk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2004 09:38 PM
07-05-2004 09:38 PM
Re: remote backup data from rp5470 to k260
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2004 10:06 PM
07-05-2004 10:06 PM
Re: remote backup data from rp5470 to k260
Doesn't work as well.
# tar cvf - /dskdump | remsh k260 dd of=/dev/rmt/0m bs=10k
a /dskdump/livedb-to-backup/cb_bin/README 2 blocks
a /dskdump/livedb-to-backup/cb_bin/_gpm 1 blocks
a /dskdump/livedb-to-backup/cb_bin/_passwd 1 blocks
a /dskdump/livedb-to-backup/cb_bin/_tmp 0 blocks
a /dskdump/livedb-to-backup/cb_bin/appear 1 blocks
a /dskdump/livedb-to-backup/cb_bin/audit-file 4 blocks
remshd: Login incorrect.
#
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2004 10:31 PM
07-05-2004 10:31 PM
Re: remote backup data from rp5470 to k260
when you do a
#remsh remote_host
it does not ask for the password.
For this on the remote_host /.rhosts file
host1 root
host1 is the hostname of the machine from where the tar is fired.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2004 10:32 PM
07-05-2004 10:32 PM
Re: remote backup data from rp5470 to k260
In your remote_server must be a .rhost file that allow the remote execution of the user. i.e:
In your remote_server
#cd
#create the .rhosts file with this content:
For detailed info "man .rhosts"
Rgds.