Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
When I mount an ISO 9660 image on windows, I get all the file names in both upper and lower case. When I mount this under linux, they are all lower case. This makes it difficult to install a game when the linux_installer script calls for case sensitive filenames. In the past I've had to install an ISO 9660 image of a game under windows first, and copy the files over.
Is there an option somewhere I missed to make them show the proper case?
it seems that map=off makes everything uppercase, and check=relaxed does nothing to the case. Also, map=on doesn't seem to work with that file type. I looked in the man page, but didn't see check or map under the -o.
For example:
On Linux:
Code:
$ mount ~/ISO/mygame.iso /mnt/iso -o loop
$ cd /mnt/iso
$ ls
autorun.inf* cd2/ cd4/ cd6/ setup.exe*
cd1/ cd3/ cd5/ linux-installer.sh*
$ umount /mnt/iso
---------------------------------------------------------------
$ mount ~/ISO/mygame.iso /mnt/iso -o loop,map=off,check=relaxed
$ cd /mnt/iso
$ ls
AUTORUN.INF* CD2/ CD4/ CD6/ SETUP.EXE*
CD1/ CD3/ CD5/ LINUX-INSTALLER.SH*
Turns out I didn't have joliet extensions enabled in my kernel. I've tried the same command again, but getting ;1 at the end of each file name. However, the case is correct.
Quote:
map=n[ormal] / map=o[ff] / map=a[corn]
For non-Rock Ridge volumes, normal name translation maps upper to lower case ASCII, drops a trailing `;1', and converts `;' to `.'. With map=off no name translation is done.
What I need is it to drop the ;1 but don't do any other translation Any ideas?
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.