Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ccd2iso(1) [debian man page]

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

MP4ART(1)							  MP4v2 Utilities							 MP4ART(1)

NAME
mp4art - manual page for mp4art - MP4v2 2.0.0 SYNOPSIS
mp4art [OPTION]... ACTION file... DESCRIPTION
For each mp4 (m4a) file specified, perform the specified ACTION. An action must be specified. Some options are not applicable for some actions. ACTIONS --list list all covr-boxes --add IMG add covr-box from IMG file --replace IMG replace covr-box with IMG file --remove remove covr-box --extract extract covr-box ACTION PARAMETERS --art-any act on all covr-boxes (default) --art-index IDX act on covr-box index IDX OPTIONS -z, --optimize optimize mp4 file after modification -y, --dryrun do not actually create or modify any files -k, --keepgoing continue batch processing even after errors -o, --overwrite overwrite existing files when creating -f, --force force overwrite even if file is read-only -q, --quiet equivalent to --verbose 0 -d, --debug NUM increase debug or long-option to set NUM -v, --verbose NUM increase verbosity or long-option to set NUM -h, --help print brief help or long-option for extended help --version print version information and exit DEBUG LEVELS (for raw mp4 file I/O) 0 supressed 1 add warnings and errors (default) 2 add table details 3 add implicits 4 everything VERBOSE LEVELS 0 warnings and errors 1 normal informative messages (default) 2 more informative messages 3 everything mp4art - MP4v2 2.0.0 June 2012 MP4ART(1)
Man Page

12 More Discussions You Might Find Interesting

1. HP-UX

New MO disc format under HP Unix

How to format new MO disc under HP Unix? (1 Reply)
Discussion started by: vlad3131
1 Replies

2. Filesystems, Disks and Memory

Sharing ISO images over NFS

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)
Discussion started by: deckard
1 Replies

3. UNIX for Dummies Questions & Answers

format disc

What is the best way to format the partition? (3 Replies)
Discussion started by: mirusnet
3 Replies

4. UNIX for Advanced & Expert Users

.DSK to .IMG ?

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)
Discussion started by: patrick99e99
0 Replies

5. Shell Programming and Scripting

Evaluate the value of a variable?

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)
Discussion started by: Ilja
3 Replies

6. UNIX for Dummies Questions & Answers

printing only the middle word between two patterns

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)
Discussion started by: tigta09
7 Replies

7. Shell Programming and Scripting

Convert first character of each word to upper case

Hi, Is there any function(Bash) out there that can convert the first character of each word to upper case?... (3 Replies)
Discussion started by: harchew
3 Replies

8. Shell Programming and Scripting

"Urgent!!"

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)
Discussion started by: nalakaatslt
1 Replies

9. UNIX for Dummies Questions & Answers

.IMG file help!!!

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)
Discussion started by: neur0n
30 Replies

10. Linux

How to sort the number of occurrences

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)
Discussion started by: lebogot
4 Replies

11. Shell Programming and Scripting

Replace with spaces

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)
Discussion started by: gowrishankar05
2 Replies

12. Shell Programming and Scripting

sed behaving oddly, repeats lines

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)
Discussion started by: pereyrax
9 Replies