[opensuse] iso9660 mount question
Hello: I have an old program CD from wich I would like to copy files. When I mount the CD all the filenames appear in lowercase but I would like them in uppercase. I've read the mount manual but could not find out how to mount the CD so that the file names would be shown in uppercase. Could you help with this, please? Thanks in advance, Istvan -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
Am Samstag, 30. Januar 2010 23:01:55 schrieb Istvan Gabor:
Hello:
I have an old program CD from wich I would like to copy files. When I mount the CD all the filenames appear in lowercase but I would like them in uppercase. I've read the mount manual but could not find out how to mount the CD so that the file names would be shown in uppercase.
Could you help with this, please?
Thanks in advance,
Istvan
I do not think that's an option to "mount" ls -la |tr [a-z] [A-Z] show the files in uppercase. If you want to copy them and convert them to uppercase, here's an example: for i in /mnt/*; do e=$(echo $i| tr [a-z] [A-Z]); cp $i ~/copy/${e##*/} ;done This snippet works only for plain files, not directories. However, a short google search for "covert uppercase files linux" should help you also. Cheers, Martin -- I would rather be exposed to the inconveniences attending too much liberty, than those attending too small a degree of it. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
Hello, On Sat, 30 Jan 2010, Istvan Gabor wrote:
I have an old program CD from wich I would like to copy files. When I mount the CD all the filenames appear in lowercase but I would like them in uppercase. I've read the mount manual but could not find out how to mount the CD so that the file names would be shown in uppercase.
==== mount(8) ==== Mount options for iso9660 [..] 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. ==== HTH, -dnh -- hm. I've lost a machine.. literally _lost_. it responds to ping, it works completely, I just can't figure out where in my apartment it is. -- bash.org/?top -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
2010. február 1. 1:27 napon David Haller <dnh@opensuse.org> írta:
Hello,
On Sat, 30 Jan 2010, Istvan Gabor wrote:
I have an old program CD from wich I would like to copy files. When I mount the CD all the filenames appear in lowercase but I would like them in uppercase. I've read the mount manual but could not find out how to mount the CD so that the file names would be shown in uppercase.
==== mount(8) ==== Mount options for iso9660 [..] 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.
Thank you, I tried different combinations of map=n/o/, nojoliet, norock, and even check=r/s options. Apparently it is not possible to mount the CD to show filenames in capital letters without the ';1' postfix. It's a pity, I don't understand why there is no option for this. Thanks again, Istvan -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
participants (3)
-
David Haller
-
Istvan Gabor
-
Martin Jedamzik