Changed File Names From CD


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Changed File Names From CD
# 1  
Old 07-28-2006
Changed File Names From CD

Hi All:
I'm having a problem with transferring files from a CD to my AIX machine. I don't know if I am using the mount command properly. My problem is that when I take a CD that I have burned on my PC over to my AIX machine, whent the CD is mounted the file names have been changed (a more thorough explaination is below). I am using the mount command as follows: mount -v cdrfs -r /dev/cd0 /cdrom. Are my file names getting screwed up because of the mount options?

This is my problem:

I have to use Exceed to log on to a UNIX/AIX (really don't know the difference) network to grab some files. Once those files are in my UNIX folder, I get those files via FTP onto my PC. Then I burn my CD. Up to this point, all the file names remain the same. However, when I take that CD back to another UNIX/AIX machine, the file names have been changed (they are much shorter) and the extension has been reduced to 3 letters. I have several hundred files that need to be transferred in this manner and I really don't want to (even if I could) change them all individually. The changed file names and the new file names have little in common.
# 2  
Old 07-28-2006
Read about ISO 9660 and level1 standard filenames: which is what DOS 8.3 filenames
are similar to.

I'm guessing that the system reading the CDROM has level1 ISO 9660 support and is having trouble with the long filenames.

http://en.wikipedia.org/wiki/ISO_9660

You may be better off gzipping all your files into an archive, then storing that one archive file (with a level1 name) on the CDROM.
# 3  
Old 08-01-2006
Thanks for the help Jim. I looked through the info on wikipedia and you are right, my CD was burned in the ISO format. I went back to my CD burning software and was able to change the file system format. However, my only other options were Joliet and UDF. Joliet allows my long file names but my AIX system does not seem to have either (Joliet or UDF) of these formats available with the mount command. It also doesn't seem possible for me to gzip the files from the source system. Am I just SOL?
# 4  
Old 08-01-2006
No.

Gzip is available for Windows free and for AIX as well (free):
http://www.gzip.org/

The only caveat - AIX may have a problem with CD files larger than 2.4GB. And some UNIX filesystems do NOT like really long filenames like (32.32) that windows will support. YMMV.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Exclude certain file names while selectingData files coming in different names in a file name called

Data files coming in different names in a file name called process.txt. 1. shipments_yyyymmdd.gz 2 Order_yyyymmdd.gz 3. Invoice_yyyymmdd.gz 4. globalorder_yyyymmdd.gz The process needs to discard all the below files and only process two of the 4 file names available ... (1 Reply)
Discussion started by: dsravanam
1 Replies

2. Shell Programming and Scripting

Script to echo "File permissions or ownership changed from required " when accidentally changed.

Hi All, I have to work in the late nights some times for server maintenance and in a hurry to complete I am accidentally changing ownership or permission of directories :( which have similar names ( /var in root and var of some other directory ).:confused: Can some one suggest me with the... (1 Reply)
Discussion started by: shiek.kaleem
1 Replies

3. Homework & Coursework Questions

Newest file changed

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: The program should search all files in current directory and it's subdirectories and list out the newest file by... (8 Replies)
Discussion started by: petel1
8 Replies

4. Shell Programming and Scripting

File size changed

Hi I have many file initial size zero(empty) after some munipulation , one or more file will be greater than zero. I need to send those file names if they return to zero again. Ex. Initially the files are zero size Size filename 0 AAA 0 BBB 0 CCC 0 DDD... (1 Reply)
Discussion started by: Bluetoot
1 Replies

5. Shell Programming and Scripting

Searching for file names in a directory while ignoring certain file names

Sun Solaris Unix Question Haven't been able to find any solution for this situation. Let's just say the file names listed below exist in a directory. I want the find command to find all files in this directory but at the same time I want to eliminate certain file names or files with certain... (2 Replies)
Discussion started by: 2reperry
2 Replies

6. Solaris

file permissions changed to nobody4

Hi there We have had a weird problem arise recently whereby a file owned by cjo:cjogroup suddenly had it's permissions changed to nobody4:nogroup. The file is mounted off a NetApp Filer volume with the NFS permissions set to Read-Write Access (All Hosts) but no Root Access. When we tried to... (1 Reply)
Discussion started by: skewbie
1 Replies

7. Shell Programming and Scripting

Determine if file changed within last minute

Is there a simple command to find or check if a file has been modified within the last minute? The mtime parameter from find cmd only allow days. I am trying to avoid timestamp parsing and do some sort of comparison as I'm real beginner at scripts. If this is the only way, any help is greatly... (3 Replies)
Discussion started by: ystee
3 Replies

8. UNIX for Dummies Questions & Answers

Who changed a file?

How can I tell what user last updated a file? (1 Reply)
Discussion started by: kirkm76
1 Replies

9. Windows & DOS: Issues & Discussions

File names changed from windows to Solaris

we have developed few files in windows platform and we have given the file names like home_new.php, testing.gif, home_welcome.gif home_about_us.html, etc. etc. now we have copied all the windows files into unix machine. the unix has converted all the above files something like... (1 Reply)
Discussion started by: sivasun
1 Replies
Login or Register to Ask a Question