![]() |
|
|
|||||||
| Home | Forums | Register | Rules & FAQ | Members List | Arcade | 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. |
Other UNIX.COM Threads You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| making the changes permanent in a file | vijaya2006 | Shell Programming and Scripting | 4 | 05-22-2007 12:05 PM |
| Making an output file of cscope | eynkesef | UNIX for Dummies Questions & Answers | 1 | 09-07-2006 06:17 AM |
| making change in file without opening it | naamas03 | Shell Programming and Scripting | 0 | 04-04-2006 01:11 AM |
| Making Changes without opening file | irehman | Shell Programming and Scripting | 9 | 03-16-2006 06:13 AM |
| sed : Making changes in the same file | amol | Shell Programming and Scripting | 3 | 07-17-2002 03:50 AM |
![]() |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
making an iso file...
can i make an iso file from my DAT tape?
pref .ISO? the thing is .. i have an 5.0.7 and a complete backup of hd (cpio cmd) on to tape (find . -depth -print | cpio -oVcB -C 20480 -O /dev/rStp0) that i made after booting from boot&root floppies now i want to take this backup and dump it on to my VMware after succciding in converting the Boot&Root floppies to .img files (VMware recognize) i got the prompt but i have no tape on my host!! is there any way to convert this tape to iso file or img file?? pls Last edited by asafronit : 03-06-2008 at 02:15 AM. |
| Forum Sponsor | ||
|
|
|
|||
|
How about...
Use dd to copy the tape back to a single file (dd if=/dev/Stp0 of=/tmp/tape ), with an appropriate block size. Use mkisofs to create the iso file, and use cdrecord to copy to cd/dvd Two issues, will the tape fit on the cd/dvd, and do you have enough free disk space, (not more than 25 percent used)? |