CCD2ISO(1) User Commands CCD2ISO(1)NAME
ccd2iso - convert IMG format to ISO format
SYNOPSIS
ccd2iso [FOO.IMG] [BAR.ISO]
DESCRIPTION
ccd2iso converts FOO.IMG to ISO format and writes the result to BAR.ISO. If fewer arguments than expected are given, ccd2iso will print
its help message and quit. If more arguments than expected are given, ccd2iso will silently ignore them and use only the first two argu-
ments.
IMG files are raw-data copies of optical media, generated primarily by the Windows application CloneCD, and are primarily used to store CDs
with odd properties, such as sectors which need to have read errors when read. Conversion to ISO format removes this information, as ISO
format does not support this.
IMG files almost always include a SUB file, which contains additional data for the disc format, and a CCD file, which is a plaintext con-
figuration file describing the disc layout. ccd2iso does not make use of these files, but the applications which generate them expect them
to have the same FOO prefix as the IMG file.
LIMITATIONS
ccd2iso currently only copies the first session of multisession discs, as well as outputting a harmless warning of Unrecognized sector
mode.
ccd2iso utterly ignores the additional data in CCD or SUB files.
SEE ALSO mdf2iso(1), nrg2iso(1)AUTHOR
This manual page was written by Rich Ercolani <rercola@acm.jhu.edu>, for the Debian GNU/Linux distribution (but it may, of course, be used
by others), because the original program lacked a manual page. It may be distributed under the same terms as ccd2iso, the GNU GPL version
2 or later, at your option.
ccd2iso 0.3 June 2006 CCD2ISO(1)
Check Out this Related Man Page
GPIV_T-AVG-IMG(1) General Commands Manual GPIV_T-AVG-IMG(1)NAME
gpiv_t-avg-img - Calculates time-averaged intensities from a series of images at each pixel.
SYNOPSIS
gpiv_t-avg-img [-c int] [-fb string] [-ff int] [-fl int] [-fx] [-help] [-p | --print] [-r int] [-s] [-v] < stdin > stdout
DESCRIPTION
gpiv_t-avg-img calculates time-averaged intensities from a series of images for each pixel. This program uses the GENPAR parameters.
Options-c NCOLS
Number of columns.
-fb FILE
File base-name (without .number.r extension) instead of stdin and stdout.
-ff N Number of first image file.
-fl N Number of last image file.
-fx Prefix numbering to file base name.
-help | --help
On-line help.
-p | --print
Prints parameters, command line options and input and output filenames to stdout.
-r NROWS
Number of rows.
-s Subtract mean from input data. -v | --version Prints version information to standard output, then exits successfully.
SEE ALSO
gpivtools
AUTHOR
Gerber Van der Graaf
19 Januari 2005 GPIV_T-AVG-IMG(1)
I've got a bunch of application CDs that I use here at home under Wine. They are Windows applications and as such, some of them want to see the volume label in order for the application to run. So... just copying the CD-ROM contents to a directory doesn't work. With that in mind, what I've done... (1 Reply)
Hi,
I have a windows emulator that I am wanting to try out, but my Windows 3.1 files are split up over 6 .DSK images, and I need to convert them to an .IMG that I can actually mount on my system (so that the emulator can see it).
Is there a way to do this?
thanks.
-patrick (0 Replies)
I have variables:
FOO="Text"
BAR="FOO"
I'd like to be able to evaluate the variable named as the value of $BAR.
echo $FOO
Text
echo $BAR
FOO
This is what I'd like to do:
echo ${$BAR} (this won't work)
Text (3 Replies)
How would I print the word "and" between the words "FOO" and BAR" using sed? My file has three words in it FOO and BAR. I only want the word "and".
Thanks every one. (7 Replies)
i need to convert ISO file to readable txt format
sample as follows
2043010101167157001190002010011120000000002144300000000000000000000 01022_ - %rE@
§U...ug 47 56 Ð d %rE@ 01022_ - $5
§fŠy 1%14 6 %
Î $5 01022_ - %g-
§jv 5&5. 6... (1 Reply)
I've been trying to create an IMG file for the past week with no success. I've tried using:
dd if=/dev/zero of=myimage.img bs=512 count=2880
mke2fs myimage.img
mkdir /media/mount_point
mount -o loop myimage.img /media/mount_point
cp -aR <file> /media/mount_point
umount /media/mount_point
... (30 Replies)
file:///C:/Users/TSHEPI%7E1.LEB/AppData/Local/Temp/moz-screenshot.pngATM@ubuntu:~$ cat numbers2 | sort -n | uniq -c
1
7 1
11 2
10 3
the 1st numbers are the counts from the command "uniq -c", which represent the number of occurrences of each in the file. The "sort -n"... (4 Replies)
Hi Guys
file:///C:/DOCUME%7E1/c104058/LOCALS%7E1/Temp/moz-screenshot.pngsed 's///g' /source/filename.txt > /destination/filename.txt
The above code deletes the characters which are not A-Z, a-z and 0-9, but I wanted to replace it with space without deleting them.
Any help is... (2 Replies)
Hi, all.
Here's the problem:
sed '/FOO/,/BAR/p'
That should print anything between FOO and BAR, right?
Well, let's say I have file.txt that contains just one line "how are you today?".
Then I run something like the above and get:
$ sed '/how/,/today/p' file.txt
how are you... (9 Replies)