Sponsored Content
Full Discussion: making an iso file...
Operating Systems SCO making an iso file... Post 302173281 by jgt on Thursday 6th of March 2008 07:42:37 AM
Old 03-06-2008
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)?
 

9 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

Edit an ISO / dd file?

Just trying to come up with a solution to something I'm trying... Does anyone know if it's possible to edit the contents of an ISO image? Or a file created using the dd command? What am I trying to do? - Well, I had the idea that if I took the FreeBSD "mini.iso" - I could strip out the bits... (4 Replies)
Discussion started by: WIntellect
4 Replies

2. BSD

making OpenBSD ISO's for the sparc

i'm lookin to make a sparc 2 an open bsd box. i know that everyone is encouraged to buy the ISO's, but i rather try before I buy here. this is what i did with FreeBSD, now I buy all their stuff... i've scoured the net on how to make an ISO, but I can't find a damn thing of use to me. does... (1 Reply)
Discussion started by: xyyz
1 Replies

3. UNIX for Advanced & Expert Users

ISO file creation -- procedure

Hi All, Am creating ISO file for same directory two times and both has different md5sum, Why does it so ?! Am pretty sure that, there is no change in that directory between the ISO creations, So what could be issue ? Or is there any misunderstanding in the process. mkisofs -J -R... (0 Replies)
Discussion started by: thegeek
0 Replies

4. Solaris

Install Solaris 10 by using the ISO file

Hi Gurus Recently i had download the ISO installer (sol-10-u8-ga-sparc-dvd.iso) for Solaris 10. And i ftp to a Server. May i know is it possible to install the Solaris by using this ISO file directly (not using network)? (8 Replies)
Discussion started by: SmartAntz
8 Replies

5. UNIX for Dummies Questions & Answers

How to modify an iso image file

Hi, I'm trying to create a customized debian installer on a USB key. I found a tutorial on how to create the usb key. After the USB key is prepared, all you have to do is to copy the iso file to the stick. So what I need to do now is to be able to modify the content of the iso file before... (7 Replies)
Discussion started by: chebarbudo
7 Replies

6. Red Hat

How to make boot.iso image from rhel6 installation dvd iso ?

Hello Everyone, Can anyone let me know how to make minimal boot.iso from rhl6 installation dvd iso image. I have a dvd image with me but i want to make just a minimal boot media. Somehow it is not shipped with dvd iso. I know we can download boot.iso from redhat site but is there any anyway we... (5 Replies)
Discussion started by: Rohit Bhanot
5 Replies

7. Boot Loaders

Is Unetbootin capable of making any iso file bootable

1)It is a great experience to achieve what I got today. I had downloaded GParted iso file (135 MB size). Now to make a bootable usb of it, I used unetbootin and to surprise I succeded in entering Gparted application and modified my partitions. Earlier I was in a notion that it is used only for... (0 Replies)
Discussion started by: ravisingh
0 Replies

8. Boot Loaders

Where to get windows 7 iso file of repair?

I need to make a bootable usb of windows 7 repair disc iso file so that I can use it in case my system doesn't boot up. On net I am getting complete windows 7 OS iso but I need only the repair disc for making bootable iso. I am not sure whether I used right word by using the word disc here... (3 Replies)
Discussion started by: ravisingh
3 Replies

9. Ubuntu

.ISO file extension

I am hoping that someone will give me information on opening and installing Ubuntu to run beside Windows 7 on my computer. I downloaded Ubuntu-14.04-desktop-i386, but it came as an .ISO file, and I have no idea how to open it to install it. Please Help. (7 Replies)
Discussion started by: JohnBaxter
7 Replies
ANSITAPE(LOCAL) 														   ANSITAPE(LOCAL)

NAME
ansitape - ANSI standard tape handler SYNOPSIS
ansitape [key] [keyargs] [files] DESCRIPTION
Ansitape reads and writes magnetic tapes written in ANSI standard format (called ``Files-11'' by DEC). Tapes written by ansitape are labeled with the first 6 characters of the machine name by default. Actions are controlled by the key argument. The key is a string of characters containing at most one function letter. Other arguments to the command are a tape label and file names specifying which files are to be written onto or extracted from the tape. The function portion of the key is specified by one of the following letters: r The named files are written at the end of the tape. The c function implies this. x The named files are extracted from the tape. If no file argument is given, the entire contents of the tape is extracted. Note that if the tape has duplicated file names, only the last file of a given name can be extracted. t The names of the specified files are listed each time they occur on the tape. If no file argument is given, all files on the tape are listed. c Create a new tape; writing begins at the beginning of the tape instead of after the last file. This command implies r. The following characters may be used in addition to the letter which selects the function desired. f This argument allows the selection of a different tape device. The next word in the keyargs list is taken to be the full name of a device to write the tape on. The default is /dev/rmt12. n The n option allows the user to specify as the next argument in the keyargs list, a control file containing the names of files to put on the tape. If the file name is '-', the control file will, instead, be read from standard input. The control file contains one line for each file to be placed on the tape. Each line has two names, the name of the file on the local machine, and the name it is to have when placed on the tape. This allows for more convenient flattening of hierarchies when placing them on tape. If the second name is omitted, the UNIX file name will be used on the tape also. This argument can only be used with the r and c functions. l The l option allows the user to specify the label to be placed on the tape. The next argument in the keyargs list is taken as the tape label, which will be space padded or truncated to six characters. This option is meaningless unless c is also specified. v Normally ansitape works relatively silently. The v (verbose) option causes it to type information about each file as it processes it. b The b option allows the user to select the blocksize to be used for the tape. By default, ansitape uses the maximum block size permitted by the ANSI standard, 2048. Some systems will permit a much large block size, and if large files are being put on the tape it may be advantageous to do so. Ansitape will take the next argument of the keyargs list as the blocksize for the tape. Values below 18 or above 32k will be limited to that range. The standard scale factors b=512 and k=1024 are accepted. Ansitape will not copy directories, character or block special files, symbolic links, sockets, or binary executables. Attempts to put these on tape will result in warnings, and they will be skipped completely. FILES
/dev/rmt12 DIAGNOSTICS
A warning message will be generated when a record exceeds the maximum record length and the affected file will be truncated. BUGS
Ansitape quietly truncates names longer than 17 characters. ANSI 'f' format files can be read but not written. Multivolume tapes can not be handled. 4/10/85 UCB Local ANSITAPE(LOCAL)
All times are GMT -4. The time now is 08:06 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy