- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- tar network data
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
08-05-2003 05:24 PM
08-05-2003 05:24 PM
Assume B has connect a TAPE drive.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2003 05:27 PM
08-05-2003 05:27 PM
Re: tar network data
Few ways to get the data over there.
If host be is running nfs, you can mount a folder where you'd have read/write capabilities. Lets call it /tmp/tar
mount hostb://tmp/tar /hostb
A folder in root named /hostb must exist.
then
tar xvf /hostb/file.tar *
Alternative:
tar xvf /tmp/file.tar
scp -p /tmp/file.tar hostb://tmp/tar
rcp will also work if you are using it.
scp requires Secure Shell and public keys exchanged to work without a password change.
Let me know if you need more detail.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2003 05:28 PM
08-05-2003 05:28 PM
Re: tar network data
1) You can't write directly to the tape drive on host B.
Few ways to get the data over there.
If host be is running nfs, you can mount a folder where you'd have read/write capabilities. Lets call it /tmp/tar
mount hostb://tmp/tar /hostb
A folder in root named /hostb must exist.
then
tar cvf /hostb/file.tar *
Alternative:
tar cvf /tmp/file.tar
scp -p /tmp/file.tar hostb://tmp/tar
rcp will also work if you are using it.
scp requires Secure Shell and public keys exchanged to work without a password change.
Let me know if you need more detail.
SEP
Apologies for the pea brain molecule(brain) freeze.
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2003 05:33 PM
08-05-2003 05:33 PM
Solution# tar cvf - /data/* | remsh hostname dd of=/dev/rmt/0m
or
# cd /data
# tar cvf - . | remsh hostname dd of=/dev/rmt/0m
which will backup the current directory.
or
# remsh hostname "dd if=/dev/rmt/0m bs=10k" | tar xvf -
'hostname' is the hostname of the machine with the tape drive.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2003 05:33 PM
08-05-2003 05:33 PM
Re: tar network data
fbackup allow you to do a this kind of backup.
Here are the bit of man pages on fbackup option -f :
There is slightly different behavior if remote devices
are used. A device on the remote machine can be
specified in the form machine:device. fbackup creates
a server process from /usr/sbin/rmt on the remote
machine to access the tape device. If /usr/sbin/rmt
does not exist on the remote system, fbackup creates a
server process from /etc/rmt on the remote machine to
access the tape device. Only magnetic tapes can be
remote devices. When remote DDS tape devices are used,
the fast search marks capability is not used.
I done it a couple of years ago and if i was not mistaken you need to setup the rhost only.
If my pee-wee brain remember correctly.
Hope this help.
regards
mB