- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Making backup from Windows to Unix Tape.
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
02-09-2004 03:32 AM
02-09-2004 03:32 AM
Making backup from Windows to Unix Tape.
Is it possible to copy them to tape attached to our HP-UX Server (with ftp/tar etc without using SAMBA).
Thanks,
Gulam.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2004 03:41 AM
02-09-2004 03:41 AM
Re: Making backup from Windows to Unix Tape.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2004 03:43 AM
02-09-2004 03:43 AM
Re: Making backup from Windows to Unix Tape.
Create a lvol with large files enabled, zip your c:\ drive to a file, ftp the file to the unix server and use tar to create a backup to tape.
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2004 03:43 AM
02-09-2004 03:43 AM
Re: Making backup from Windows to Unix Tape.
The best you can do is zip/tar up the files you want on the Windows machine and then ftp/scp them to the Unix Server. Once there a cron job can write them to tape.
The secure way would be to install Secure Shell on the HP-9000 server.
http://software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=T1471AA
With a windows client you will be able to set up password free transfer with the scp command of your tarball from Windows to the HP-9000 server.
Much less secure is an ftp script:
example ftp scripting which requires the hard coding of the password in the script.
ftp -nv ${SERVER} << FTPEOF > /tmp/temp_log.$$
user ${USERNAME} ${PASSWORD}
#Get file
get $1
quit
FTPEOF
The backup process itself needs to be initiated on the 9000 server.
If you go the Secure Shell route, your windows box can do this:
ssh root@hp-9000.hostname "fbackup command line"
Good Luck,
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
02-09-2004 03:45 AM
02-09-2004 03:45 AM
Re: Making backup from Windows to Unix Tape.
Keep in mind this is a copy of files, not the same as running a backup on your MS box. So system files would be tough to replace should you need to rebuild the XP box.
I would suggest that you use a GUI type of ftp software in the XP box, that would make it infinately easier to transfer a directory tree.