Help with mkisofs


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Help with mkisofs
# 1  
Old 06-20-2008
Help with mkisofs

Hello,

I am attempting to recreate an iso from a set of files. At this point I seem to be stuck on the creation process. I have reviewed man mkisofs, which returns genisofs. Below is the actual command, and what each piece of information seems to provide


mike@presario:~$ sudo mkisofs
-V "LAMPPIX" -r -J -b isolinux/isolinux.bin -c /home/mike/master/isolinux/boot.cat -boot-load-size 4 -boot-info-table -o /home/mike/lamppix-mini-own.iso

I: -input-charset not specified, using utf-8 (detected in locale settings)
genisoimage: Missing pathspec.
Usage: genisoimage [options] -o file directory ...



sudo mkisofs -V "LAMPPIX" Sets the Volume Name
-r Generate Rock Ridge Directory information
-J Specifies to use the Joliet directory info
-b isolinux/isolinux.bin Set El Torito boot image name
-c /home/mike/master/isolinux/boot.cat This is the only file that is named boot.cat in a original iso files
-boot-load-size 4 Likely a cmd for making it bootable ?
-boot-info-table Likely a cmd for making it bootable ?
-o /home/mike/lamppix-mini-own.iso Set a full path to where to create the final iso

All four of the original folders are contained in /home/mike/master. Some other postingstate the -o option as relative ( relative to what I'm not clear, others state when in doubt use the full path). Also the working directory is set to /home/mike when this command is run.

Can anyone explain my error with the -o option, or point me to docs that have worked for them.

Thank you,

mg92865
# 2  
Old 06-20-2008
What is the input directory?
# 3  
Old 06-20-2008
Input Directory

In one of the many version I have attempted, I actually had the command as

-o /home/mike/lamppix-mini-own.iso /home/mike/master

inside of the master folder are the four folders that actually appear in the original iso (which works). However, when I add this line, the error with the
-o line disappears, and the program complains it cannot locate the catalog which I assume is supplied by the -c option.

-c /home/mike/master/isolinux/boot.cat

If I offer this up, then it complains it is the wrong type of file. Any suggestions are appreciated so I can learn this command

mg92865
 
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

mkisofs to create iso

Hi all, I got the following problem. I run this command. mkisofs -o mynew.iso -l -b isolinux.bin -c boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table base images isolinux pc_doc and I get all files from base, images, isolinux and pc_doc in the root dir of the iso. I want a... (2 Replies)
Discussion started by: stinkefisch
2 Replies

2. Solaris

How use the cdrw and mkisofs command...

Hi Guys. I am trying to tranfer the explorer output to a CD .... But I have serious doubt about use the cdrw and mkisofs command.. with the proupose of to make and tranfer the contents. Thank in Advance. AGADEA (5 Replies)
Discussion started by: aggadtech08
5 Replies

3. Shell Programming and Scripting

Mp3 backup using find, mkisofs

Hi. I want to create a Linux script to find all local mp3 files, create an ISO image. Later I will attempt to use growisofs Something like this: find ~ -name "*.mp3" | xargs mkisofs -o musicbackup tried variations on this but no luck. (4 Replies)
Discussion started by: lancest
4 Replies

4. UNIX for Dummies Questions & Answers

What happened to mkisofs ?

I've been using a mkisofs line like this for years without problem # mkisofs -J -R -V 'Vol Label' -o /output/path/FILE.ISO /input/path/ Now, however, it gives a UTR-8 character message at the start INFO: UTF-8 character encoding detected by locale settings. Assuming UTF-8... (0 Replies)
Discussion started by: Bobby
0 Replies

5. Solaris

mkisofs and long file names

Well im using mkisofs to create iso images in Solaris 10 and then i use cdrw -i to burn the images to the cd the problem which i noticed recent ( im new to mkisofs) i noticed its break the long file names making them shorter i searched in its help and i find two parameters one -l and one... (2 Replies)
Discussion started by: XP_2600
2 Replies

6. UNIX for Advanced & Expert Users

ISO creation problem :-: mkisofs

Hi, I am trying to burn a directory containing some install scripts/executables etc onto a cd. I am using redhat v7.0. I have tried using mkisofs, but so far have not been able to get the case of the filenames to be correct. one file is called: startInstaller but it always comes out as... (1 Reply)
Discussion started by: ghoti
1 Replies
Login or Register to Ask a Question