- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Automated File Backup
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
10-21-2005 06:01 AM
10-21-2005 06:01 AM
Automated File Backup
Please guide me
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2005 06:44 AM
10-21-2005 06:44 AM
Re: Automated File Backup
scp /local/file/name remotehost:/remote/file/name.
a guide, written by Steven Protter is attached to guide you to set up the trusted keys (MS Word Doc).
Hope this helps
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2005 06:47 AM
10-21-2005 06:47 AM
Re: Automated File Backup
Are you using Linux or HP-UX?
If HP-UX:
fbackup -f remote_system:/dev/rmt/0m -i /filesystem
If Linux:
env RSH=/usr/bin/ssh star -c -xdev f=user@remote_system:/dev/st0 /filesystem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2005 06:47 AM
10-21-2005 06:47 AM
Re: Automated File Backup
Are you using Linux or HP-UX?
If HP-UX:
fbackup -f remote_system:/tmp/backupfile.fbackup -i /filesystem
If Linux:
env RSH=/usr/bin/ssh star -c -xdev f=user@remote_system:/tmp/backupfile.star /filesystem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2005 08:34 AM
10-21-2005 08:34 AM
Re: Automated File Backup
consider using rsync. It is very efficient
at synconizing changes in files.
I use rsync to update copies of my web server
access logs which grow over the week. Only
some checksum data and the new data is copied.
I also use it to update a web site from a test
site. Again only changes are copied.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2005 04:18 PM
10-23-2005 04:18 PM
Re: Automated File Backup
1. I have Linux system where the data should be backed up from Unix machine.
2. I have Unix machine from where data should be backed up on Linux Machine.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2005 12:57 AM
10-24-2005 12:57 AM
Re: Automated File Backup
Maybe You can use rsync(with ssh of course) or snapback2 tool?
Regards
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2005 05:47 PM
10-25-2005 05:47 PM
Re: Automated File Backup
Thanks