- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: run remote fbackup
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
04-25-2003 10:06 PM
04-25-2003 10:06 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2003 10:17 PM
04-25-2003 10:17 PM
Re: run remote fbackup
On "B"
make sure that you have entries in the /.rhosts file
like
A root
check the same using
from "A"
#remsh B
Then from A do a fbackup as
# fbackup -f r
i.e
#fbackup -f A:/dev/rmt/0m -v -i /home
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2003 10:21 PM
04-25-2003 10:21 PM
Re: run remote fbackup
HostA = files to backup
HostB = remote w/ tape drive
On HostB setup the ~/.rhosts file to contain HostA root info. Now run your fbackup from HostA.
fbackup -i /path -f HostB:/dev/rmt/0m
Hope this helps,
denver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2003 10:36 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2003 12:29 AM
05-02-2003 12:29 AM
Re: run remote fbackup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2003 12:32 AM
05-02-2003 12:32 AM
Re: run remote fbackup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2003 12:44 AM
05-02-2003 12:44 AM
Re: run remote fbackup
backup
#tar cvf - /home | remsh remote_system dd of=/dev/rmt/0m
restore
#remsh remote_system "dd if=/dev/rmt/0m " | tar -xvf -
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2003 01:59 AM
05-02-2003 01:59 AM
Re: run remote fbackup
i tried r method , my script is "tar cvf - /tmp |rsh remote_host dd of=/dev/rmt/0m" it still tar the local /tmp path , what is wrong in my script ? thx.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2003 02:27 AM
05-02-2003 02:27 AM
Re: run remote fbackup
you are backing up the local /tmp into the remote tape drive.
Run these commands on the system where there is no tape drive
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2003 03:05 AM
05-02-2003 03:05 AM
Re: run remote fbackup
I hv a tape drive on local server , how to tar the remote file to the local tape drive ? thx.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2003 04:21 AM
05-02-2003 04:21 AM
Re: run remote fbackup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2003 04:24 AM
05-02-2003 04:24 AM
Re: run remote fbackup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2003 04:42 AM
08-13-2003 04:42 AM
Re: run remote fbackup
I work fine to run remote tar backup , but how can I generate a backup log because I want to know whether it is successfully backup ? thx.