HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: How do you use tar for n/w backup
Operating System - Linux
1829124
Members
2011
Online
109986
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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
07-25-2006 08:07 PM
07-25-2006 08:07 PM
what is the command to take backup using tar
Iam connected to the server using telnet
Tell me commands for both conditons
1. If the tape device is connected localy to the server
2. If the tape device is connected to another system on the same n/w
Iam connected to the server using telnet
Tell me commands for both conditons
1. If the tape device is connected localy to the server
2. If the tape device is connected to another system on the same n/w
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2006 02:45 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2006 03:45 AM
07-27-2006 03:45 AM
Re: How do you use tar for n/w backup
I will suggest the use of "star" instead of tar. It's faster and more easy for remote backups.
With tar
Local backups:
Create
tar cvf /dev/st0 directory directory file ....
List
tar tvf /dev/st0
Extract
tar xvf /dev/st0
Remote backups
Create
tar cvf - | ssh remotehost dd of=/dev/st0
List
ssh remotehost dd if=/dev/st0 | tar tvf -
Extract
ssh remotehost dd if=/dev/st0 | tar xvf -
Using star
Local backups:
star -cv f=/dev/st0 directory directory files ...
Remote backups:
env RSH=/usr/bin/ssh star -cvM f=user@host.dominio:/dev/st0 directory directory files ...
With tar
Local backups:
Create
tar cvf /dev/st0 directory directory file ....
List
tar tvf /dev/st0
Extract
tar xvf /dev/st0
Remote backups
Create
tar cvf - | ssh remotehost dd of=/dev/st0
List
ssh remotehost dd if=/dev/st0 | tar tvf -
Extract
ssh remotehost dd if=/dev/st0 | tar xvf -
Using star
Local backups:
star -cv f=/dev/st0 directory directory files ...
Remote backups:
env RSH=/usr/bin/ssh star -cvM f=user@host.dominio:/dev/st0 directory directory files ...
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2006 06:24 PM
07-27-2006 06:24 PM
Re: How do you use tar for n/w backup
How can we mount remote tape device
Pls give Syntax
Rgds
Sreekanth
Pls give Syntax
Rgds
Sreekanth
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP