Unreadable Unix File


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Unreadable Unix File
# 1  
Old 02-07-2007
Unreadable Unix File

Hi Everyone,


I have a question for you all. I am working at a company and we are trying to recover .dat files which were created on an older linux box and we have a folder of .dat files that are unreadable. When you try to open them in a text editor you get jibberish all shapes and sizes and when you try to open the files in a file viewer it shows them as a hexadecimal/binary file. These .dat files ultimately have or should have readable data in them stating what we need. If anyone has some solutions or would like to know further details I really would appreciate it. I also checked the permissions on the files and the user it belongs to on the unix box and we were unable to open them on the unix box or on the windows box.

Thanks
# 2  
Old 02-07-2007
Comsidering the extention of the file (.dat) I doubt they are plain text files. Allthough any extention can be given to a file in Unix, it is not common to use it for plain text files.

The following command could provide you some info about that kind of files they are:

file <filename>
or just
file *

So "file" is a command here and not a reference to a file, <filename> is one of those .dat files.

To see if there is any ascii content at all in those files you can use the command:

strings <filename>

How were these files created? By some kind of application? If so, which application?
# 3  
Old 02-07-2007
The file was created in a proprietary fortran script.
# 4  
Old 02-07-2007
Also where should i apply the command you stated above?
# 5  
Old 02-07-2007
Quote:
Originally Posted by ryangfm
Also where should i apply the command you stated above?
In the directory where to .dat files are located on those .dat files
# 6  
Old 02-07-2007
nah that doesnt make sense........I guess what im trying to say is do you know a way to read these dat files so we can understand what they mean besides hex or binary because they were made in fortran and they have important info on them that my company needs and we have tried alot and before we recreate lets says 500 dat files we want to try to get them readable.
# 7  
Old 02-07-2007
sb008 is telling you to run the file command to see if it can identify what the actual file type is, without knowing how the files were written how can you expect someone to be able to tell you how to read them?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

AIX unreadable sector Logical or Physical

Hello Folks, I have got this message: When I contacted support, they said this is logical filesystem error and it has to do with the filesystem. How can I find out ? (1 Reply)
Discussion started by: filosophizer
1 Replies

2. UNIX and Linux Applications

Fillable PDF becomes unreadable after edited with Okular

Can anyone explain why a editable pdf becomes unreadable after edited with okular? (5 Replies)
Discussion started by: cokedude
5 Replies

3. UNIX for Dummies Questions & Answers

Files unreadable in unix, help needed.

Hi, I developed a java application in Windows and transferred it to a HP-UX environment(using WinSCP) for deployment. I used "chmod 777 ..." for granting rights to the files. After I did this, whenever I go into that directory(or it's immediate parent directory) and hit "ls"......it... (4 Replies)
Discussion started by: agnivaccent
4 Replies

4. Filesystems, Disks and Memory

Smartmontools and fixing Unreadable Disk Sectors

I found a document: Bad block HOWTO for smartmontools My hard drive is Maxtor: root]# fdisk -lu /dev/hda Disk /dev/hda: 81.9 GB, 81964302336 bytes 255 heads, 63 sectors/track, 9964 cylinders, total 160086528 sectors Units = sectors of 1 * 512 = 512 bytes Disk identifier: 0x3f4e3f4d ... (0 Replies)
Discussion started by: justinian
0 Replies

5. Shell Programming and Scripting

file does not exist or unreadable in an FTP script

I will appreciate any help with this... I have a file in this directory that looks like: this 07210900.SUP, I am getting the following error: Activities for Tue Jul 21 07:29:14 EDT 2009: File 07210900.SUP does not exist or unreadable End of activities The idea is to capture the file in... (1 Reply)
Discussion started by: rechever
1 Replies

6. Shell Programming and Scripting

Does not exist or unreadable error in windows ftp script

I have a file like this 07200900.SUP,in a windows directory I need to FTP this file to UNIX , the directory in unix is N:\orgs\Financial Aid\MIIS\0910\FTP I am getting this error miis_ftp.ELM_SUP.shl: =cd orgs/"Financial Aid"/"MIIS"/"0910"/"FTP" : not found IN THE LOG FILE Activities for Mon... (3 Replies)
Discussion started by: rechever
3 Replies

7. UNIX for Advanced & Expert Users

unreadable

Hi, can someone explain what does this mean and why does this happen? i had this problem last week, and Unix admin said that he has to rebuild the file system. Now i am getting this error again. aaaa% ls . unreadable :mad: (7 Replies)
Discussion started by: treneryy
7 Replies

8. Red Hat

pstree unreadable characters

hi all, i executed this command "pstree" on redhat ent 4 and i got this below with unreadable chars: init─┬─acpid â”─amqzxma0─┬─amqrrmfa │ â”─amqzdmaa │ â”─amqzfuma │ â”─5* │ â”─amqzmgr0─┬─amqpcsea │ │ ... (2 Replies)
Discussion started by: itik
2 Replies

9. UNIX for Dummies Questions & Answers

mailx saved messages are unreadable (base64)

I am trying to parse emails sent from a blackberry. I am using fetchmail to download email through IMAP from my exchange server and then forward to local Linux mail. (This part works fine.) When viewing and saving messages sent as plain text from Outlook, everything works fine. However, when... (1 Reply)
Discussion started by: Squeakygoose
1 Replies

10. Shell Programming and Scripting

Unreadable

Hi Guys, I have one query. Say I have one script named test.sh. My Question: There is any method by which I can make this script (test.sh) non-human readable( like Encrypt) format as well as it should be executable also(mean to say it (test.sh) should not change its behaviour). Thanks... (3 Replies)
Discussion started by: SanjayLinux
3 Replies
Login or Register to Ask a Question