- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: remote tar
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-10-2001 08:54 AM
01-10-2001 08:54 AM
is connected to another host.
Can this be accomplished?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2001 08:59 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2001 09:04 AM
01-10-2001 09:04 AM
Re: remote tar
man fbackup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2001 09:07 AM
01-10-2001 09:07 AM
Re: remote tar
The command given by Sandor will work...
providing your systems are properly setup for remote commands.
Make sure that on the remote system (with the tape drive), the /.rhosts file (if you are root) has an entry for the system you're archiving files from.
Best regards,
Dan
PS: the find isn't absolutely necessary, you may use tar 'as-is' like in
tar cvf - file [file|directory] ... | remsh remote_host -n "dd of=/dev/rmt/xxx obs=10K"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2001 09:17 AM
01-10-2001 09:17 AM
Re: remote tar
Try the following:
a. To write remotely on that machines /dev/rmt/0m
tar cv . | remsh dd of=/dev/rmt/0m bs=10k
b. To read remotely on remote's /dev/rmt/0m
remsh dd if=/dev/rmt/0m |tar xvf -
Good Luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2001 09:18 AM
01-10-2001 09:18 AM
Re: remote tar
I had done the remote fbackup, but the user
in this case has their mind set on tar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2001 09:23 AM
01-10-2001 09:23 AM
Re: remote tar
/tmp/g40/
Hope this helps...RD