![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| SCO Santa Cruz Operation (SCO) was a software company based in Santa Cruz, California which was best known for selling three UNIX variants for Intel x86. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Full System Backup Sco 5.0.5 | nellenodrog | UNIX for Dummies Questions & Answers | 2 | 01-23-2009 12:22 PM |
| backup spanning multiple DVDs | dangral | UNIX for Dummies Questions & Answers | 0 | 12-24-2007 02:02 PM |
| Solaris System State & filesystems backup | adel8483 | SUN Solaris | 2 | 01-26-2007 11:29 AM |
| System Backup | efang | SUN Solaris | 2 | 01-22-2007 05:08 AM |
| Disk-Spanning Zip/Tar-File | mrosengarth | UNIX for Dummies Questions & Answers | 1 | 04-17-2002 07:25 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
I don't remember the exact format for the command. I'm at another job site and don't have access to a SCO box here. I will get into a SCO box later ad confirm the commands. One thing you can do is get a listing ofthe tape to make sure the directories you want aer there.
run cpio -ivt < /dev/rStp0 > /tmp/tape.list -ivt willjust read the names off of the tape and te /tmp/tape.list is just a name for the file. Once the file is created then vi the file and you should be able to search it for what you want. Another thing we need to check is the format. let me know if each line starts with ./ or with just a / this will be important during the restore. |
|
||||
|
i have a question regarding the use of the 'find' command.... wouldn't i be duplicating some directories in my backup if the parent directory is listed with all its child directories? here is a sample output:
find . -depth /repod/log/rman_29.log /repod/log /repod/huk7kik0_1_1 /repod/i4k7n700_1_1 /repod so if i pipe this to cpio, i would get the child /repod/log/rman_29.log and then it would be repeated with /repod/log? i would get the childs /repod/huk7kik0_1_1 and /repod/i4k7n700_1_1 and then everything would repeat again with /repo? is there a way to just get the last depth? |
|
||||
|
SCO and cpio
Not sure what your asking but cpio works fine for SCO.
A typical command would be " find . -print | cpio -ocumvdB -O/dev/rStp0 This backs up the folders and the child folders and files only once. Your just seeing the absolute path from the pwd. |
|
||||
|
tests have shown you are correct. thank you.
|
| Sponsored Links | ||
|
|