- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- reading files off a 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
09-09-2004 12:14 PM
09-09-2004 12:14 PM
I used the below command to write files over 2gb to tape:
#dd if=
Is there any way of reading what files are on tape without extracting them to a file system?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 12:20 PM
09-09-2004 12:20 PM
Re: reading files off a tape
Only way to find out is to extract the file off the tape to a filesystem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 12:22 PM
09-09-2004 12:22 PM
Re: reading files off a tape
You can just extract less than 50 MB to figure out the FILE TYPE.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 01:02 PM
09-09-2004 01:02 PM
SolutionI was about to post my response in the other thread and you already closed it :-).
dd will work fine if you are trying to copy a single file. However, if you have multiple files to be backed up on the remote tape, then you have few more choices
1. If both the source and the destination systems are HP systems, you can use fbackup without rsh
fbackup -f server:/dev/rmt/1m -i
2. If the source system is HP but the remote system is not, then you can still use fbackup
fbackup -f - -i
Look at the man page of fbackup for more information on -i and -g options.
3. If both the systems are not HP, then this thread doesn't belong here.. But you can still try gtar..
With fbackup, you can read files from archive
frecover -I /tmp/index -f /dev/rmt/1mn
/tmp/index contains the list of files backed up with fbackup.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 01:04 PM
09-09-2004 01:04 PM
Re: reading files off a tape
much appreiated.