capital letters GONE!


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers capital letters GONE!
# 1  
Old 12-09-2002
Question capital letters GONE!

I have an odd issue.

I am trying to copy some files/folders to my linux box via a burned CD which I created on my mac. When I browse the files on the mac (or my windows box), everything looks fine (some of the folder names start with a capital letter, which is needed for everything to work right - adding to a photo web page which was auto-created with iPhoto), but when I mount the CD on my linux box (mandrake) and browse the files/folders everything is in lower case. I'm not sure what I'm doing/not doing to have this issue, because when I initally created the photo site, and copied files (via CD) to the linux box, everything worked great.

Any help would be greatly appreciated!
# 2  
Old 12-09-2002
Are you using MacOSX?
If so, it may be the filesystem - I'm just guessing, because I don't have a CD burner in mine so I can't test it.
The default filesystem is "case preserving", but not case sensitive...
# 3  
Old 12-10-2002
Yes - I am using Mac OS X - but I'm not sure that the problem is with the burn, because when I view the files on the burned CD on my mac, and a windows box - in fact any other computer that I have, the capital letters are preserved - it is only when I browse the CD on my linux box that the capital letters have been "lower cased".

I have been putting off rebooting my linux box (I'm trying to see how long I can keep it running - so far 75 days), but will reboot if anyone thinks that might help me...
# 4  
Old 12-10-2002
I don't use linux, but I found this mount man page.

What options did you use when you mounted the cd? It looks like "norock,map" would give exactly the results that you are seeing. You need to mount that cd in rock ridge mode, which is sometimes called RRIP.
# 5  
Old 12-10-2002
Well, I mounted the cd with this command:

mount /mnt/cdrom

no options - this is the same way I have mounted in the past with no problems until just recently.

should I try this?:

mount -map=o /mnt/cdrom

I'm not at my linux box now, so I'll have to try it after work tonight - I'll post my results then - thanks for the tip!
# 6  
Old 12-10-2002
By default, mount doesn't add those options. They may have been added to /etc/fstab at some point...

Try:
mount -t iso9660 /dev/cdrom /mnt/cdrom

By default, it should see both Rock Ridge extensions, and MS Joliet extensions...
# 7  
Old 12-11-2002
ok, i tried the mount command suggested by LivinFree (thanks for the advice)- did not make any difference. I tried rebooting (sigh), and that didn't help. I even tried burning another CD - still not working. I really am running out of options... I guess that I will try burning the CD on my windows box, but I doubt that will do anything - I don't think it's a problem with the burn - seems to be isolated to the linux box... I could always try to FTP! (might have to).

The deal is that it worked fine just 2 months ago!!

A thought:

The CD that I am having trouble with has quite a deep directory structure (3 dirs deep before the caps start) - not sure if that is the issue - don't think so tho - i'll try more testing...

Ok - maybe it does have something to do with the burn - I found the CD that I made a couple of months ago - it has a different dir structure, and the caps are THERE. Could it have to do with long directory names??
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Organizing text file by Capital Names (capital word ' ' capital word)

Hi I have a file passwd_exmpl that contains: root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin daemon:x:2:2:daemon:/sbin:/sbin/nologin adm:x:3:4:adm:/var/adm:/sbin/nologin lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin sync:x:5:0:sync:/sbin:/bin/sync... (5 Replies)
Discussion started by: eladage
5 Replies

2. Solaris

Escape Sequence for Capital Letters Input at Shell Not Working

Hello, I am running Solaris 8. When issuing the command "stty lcase" all text which is output to the terminal are capitalized. Letters that are supposed to be capitals are preceded by a backslash during output. All text which is input is converted to lower case. This is the expected behaviour... (5 Replies)
Discussion started by: rstor
5 Replies

3. Shell Programming and Scripting

changing all characters of a file to capital letters

Hi guys. I have file named output.txt containing file names. one per line. I use this command to convert all characters to capital letters and write to the same file. cat output.txt | tr 'a-z' 'A-Z' > output.txtBut at the end output.txt is emtpy. Could anyone help?? (6 Replies)
Discussion started by: majid.merkava
6 Replies

4. Shell Programming and Scripting

Put parentheses around all capital letters using SED

Hello everyone I tell you that I'm trying to do a bash program that can put parentheses around each capital letter of each line using SED. I tell you probe with: sed -e '1,$s/A/(A)/g' "$file" but only add parentheses in A. then tested with: sed 'y/AB/(A)(B)/' "$archivo" but it... (3 Replies)
Discussion started by: adiegorpc
3 Replies

5. UNIX for Dummies Questions & Answers

How to search for capital letters

Hi, I just want to search a file for any words containng a capital letter and then display a list of just these words! I have been trying grep but to no has not helped.(im using the bash shell) (1 Reply)
Discussion started by: djdaniel3
1 Replies

6. Shell Programming and Scripting

change small letters to capital

hi guys, I know this might be very simple for u but not for me. I simply want to print the active users, changeing the first letter in their names to capital. i guess sed it's useful but don't know how to find the correspondign capital letter and don't know how to change just the first... (16 Replies)
Discussion started by: atticus
16 Replies

7. Shell Programming and Scripting

Change a parameter to be in capital letters

Hi, I have a korn shell script with 1 parameter. My script deletes certain files, for example.... sid=$1 rm $ORC/dbs/orapwd${sid} #orapwddb1 rm $ORC/dbs/lk${sid} #lkDB1 In the first file, the $sid must be in small letters and in the second file, the $sid must be in capital... (4 Replies)
Discussion started by: n8575
4 Replies

8. Shell Programming and Scripting

capital sed

Hi everyone. I wanted to convert capital characters to small one. So i tried to use: sed -e "y///" but this won't work. And sed -e "y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/" this worked well. Does anyone know why?? (2 Replies)
Discussion started by: Euler04
2 Replies

9. UNIX for Dummies Questions & Answers

Transformation capital letter

:confused: Hye everybody i would like to know if exist a internet site where i can founs some interesting shell script very usefull I need to transform hundreds names of files escribed in CAPITAL letter in minuscule letter do oyu know a mean o do that that thanks to a script or a shell... (1 Reply)
Discussion started by: Dark Angel
1 Replies
Login or Register to Ask a Question