![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| HP-UX HP-UX (Hewlett Packard UniX) is Hewlett-Packard's proprietary implementation of the Unix operating system, based on System V. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| SCO UNIX tape restore | canbe842 | SCO | 4 | 06-25-2008 01:50 PM |
| Backup to SCSI Tape Backup aborts | zionpc | SCO | 4 | 12-07-2007 03:47 PM |
| Check backup file size on backup tape | ayhanne | UNIX for Dummies Questions & Answers | 0 | 10-25-2007 08:41 AM |
| Mounting DLT tape and to backup file to tape | ayzeayem | UNIX for Dummies Questions & Answers | 0 | 08-13-2007 11:09 PM |
| Restore a tape | lo-lp-kl | AIX | 1 | 06-07-2007 06:22 PM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Backup Tape Restore?
I am trying to do a restore on a backup tape (DDS2) and am having a little trouble. For one, I dont know how the tape was made, whether is was tar, cpio, dump..etc. Anyone know how to restore a tape without knowing the format of the backup?
|
| Forum Sponsor | ||
|
|
|
|||
|
not sure if this will work but...
------------------------------------- IDEA: You can use the fstyp command to find out what filesystem a device is. Example: # fstyp /dev/rdsk/<tape device> ufs You could also use a shell script like so to determine all devices in the /dev/rdsk directory: for i in /dev/rdsk/*; do echo “$i = $(fstyp $i 2>/dev/null)”; done ------------------------------------- Hope this helps! |