ISO creation problem :-: mkisofs


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users ISO creation problem :-: mkisofs
# 1  
Old 10-03-2001
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 either STARTINSTALLER or startinstaller.

I have tried using both -R and -r but some names still get truncated and even using the -l option to get long names, the case is still messed up.

Is there a trick to getting the case preserved for Linux filenames, as I need to have them all exact if possible.

Thanks in advance,
Smilie
# 2  
Old 10-03-2001
I managed to get it myself.

the syntax I used is:
Code:
mkisofs -rlJ -relaxed-filename  -o <outputfile>.iso <inputdir>

and I ended up with a cdrom ISO that I could burn under windows, and is readable in correct case from both Unix/Linux and Win2K.

Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

File creation problem

I am creating a file to store data, but the file does not get created at all. #include <unistd.h> #define DEFAULT_ID 0 int main() { int d, n=0; int sz, data=0; char fn; char *bv; snprintf(fn, 256, "bv", DEFAULT_ID); bv=fn; printf("%s\n", bv); if ((d =... (4 Replies)
Discussion started by: powyama
4 Replies

2. 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

3. Linux

Creating .iso from DVD problem ( looking for alternatives / suggestions )

I want to be able to copy DVD disks directly to an ISO file from the command line (via bash script). I have such a script that I have refined over time that works quite well about 80% of the time. About two DVD's out of ten will not burn to an iso file, and the script hangs on one of the... (4 Replies)
Discussion started by: jvsrvcs
4 Replies

4. BSD

Mount ISO Image on FreeBSD problem!

I'm try to mount an iso on FreeBSD 8.2, but i recive an error; I use the following commands: # mdconfig -a -t vnode -f /path/to/myimage.iso -u 1 # mount -t cd9660 /dev/md1 /media and receive the next message: mount_cd9660: /dev/md1: Invalid argument I also use mdconfig -d -u * (*- is the... (5 Replies)
Discussion started by: AnbuBlack
5 Replies

5. 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

6. Shell Programming and Scripting

File Creation Problem

I recently got a problem with a program. It said that Create a file using shell script and insert details in it and take a String from the user and see whether it matches with any of the details of the String. I know how to create a file, insert details, but hw to check whether the String matches... (2 Replies)
Discussion started by: ramj
2 Replies

7. 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

8. UNIX for Dummies Questions & Answers

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... (2 Replies)
Discussion started by: mg92865
2 Replies

9. 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

10. UNIX for Dummies Questions & Answers

Open Darwin iso problem.

Very new to OD and unix. I need to know how to create a bootable CD from the ISO. thanks :confused: (3 Replies)
Discussion started by: Front
3 Replies
Login or Register to Ask a Question