File types help needed


 
Thread Tools Search this Thread
Operating Systems Linux File types help needed
# 1  
Old 09-06-2003
Question File types help needed

Hi all, quick question...
Im trying to configure Redhat 9 to dial out to my ISP AOL. I have found some software to do this but at present I can't get net access under Linux for the reason stated. I can however acces the net using my laptop running windows.

The question is:
I have downloaded the file using IE in windows, the file has an extension xxx.tar.gz which is the Linux compressed file type as I understand. Is it possible to put the file on a floppy and transfer it to the Linux machine? Will the Linux machine recognise it after downloading in Windows?

It may sound like a silly question but Windows automatically gives the file the extension .tar instead of the full .tar.gz

Thanks in advance.

Brady
# 2  
Old 09-06-2003
Re: File types help needed

No, the file is not given the extension .tar. It just appears so. Windows hides extensions in a silly way. The extension .gz is hidden but leave .tar there so giving you the wrong impression that it has been renamed (probably because Windows does not expect multiple extensions like .tar.gz).

You may put the file on the floppy, which is presumably formatted with the FAT filesystem. Linux can read FAT filesystems, so can read the floppy. But make sure you can mount the floppy drive on Linux.

You may even write the file to your Windows partition and linux can read it.
# 3  
Old 09-07-2003
Thanks for the response! WINDOWS! Huh!Smilie

Anyway, I think I will have to use a floppy as the Windows partition is NTFS and if I'm correct I think this means that Linux will not be able to access my Windows filestore...?

This shouldn't be a problem though, just as long as I now know that windows isn't 'modifying' the filetype. Smilie

Cheers

Brady
# 4  
Old 09-07-2003
Linux can have read-only access to NTFS. There are existing posts on this forum concerning mounting NTFS partitions from Linux. You can find some info on google search too.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

List file types

Hello everyone - I have a task of listing files from a directory together with their type. I tried using ls -l | file -b or different versions of that but that did not work. I will need this to be in a C shell script that will list the file name, size and type from a directory. I can do... (12 Replies)
Discussion started by: adrianvas12
12 Replies

2. Shell Programming and Scripting

Cp -r except certain file types

the following excludes certain directories successfully cp -r probe/!(dir) /destination I want to exclude certain file types and tried unsuccessfully cp -r probe/!(*.avi) /destination (2 Replies)
Discussion started by: tmf
2 Replies

3. UNIX for Dummies Questions & Answers

How does linux recognize file types?

Hey , I was wondering how does Linux recognize file types if he doesn't use extensions to determine the file type ? It's just a question not for a script or something else. thnx:o (3 Replies)
Discussion started by: Eclecticaa
3 Replies

4. Red Hat

Copy certain file types recursively while maintaining file structure on destination?

Hi guys, I have just been bothered by a fairly small issue for some time now. I am trying to search (using find -name) for some .jpg files recursively. This is a Redhat environment with bash. I get this job done though I need to copy ALL of them and put them in a separate folder BUT I also... (1 Reply)
Discussion started by: rockf1bull
1 Replies

5. UNIX for Dummies Questions & Answers

Types of File in a directory

Hello, I have several thousand files with different extensions in a directory. Is there a single command to get what the various extensions are with a single command. Thanks for your help! Best, Guss (2 Replies)
Discussion started by: Gussifinknottle
2 Replies

6. Shell Programming and Scripting

Search two file types within a for loop

I need to search for a csv and a dat file within a for loop then output them to a log table. I can do it individually but I want them together. See below code: check csv count=0 for file in $(ls *.csv) ; do count=`expr $count + 1` ... (4 Replies)
Discussion started by: Pablo_beezo
4 Replies

7. Shell Programming and Scripting

flexible sed command needed to handle multiple input types

Hello, I need a smart sed command that can take any of the following two as an input and give below mentioned output. As you can see, I am trying to convert some C code INPUT: struct abc_sample1 { char myString; UINT16 myValue1; ... (2 Replies)
Discussion started by: SiftinDotCom
2 Replies

8. Shell Programming and Scripting

Parsing a file that contains 2 types of delimeters

Now that I have a file that looks something like this; 20050926 Unknown 20050926 MUREXFO 20050926 MUREXFO 20050926 MUREXFO 20050926 Unknown 20050926 KADDUSS 20050926 KADDUSS 20050926 KADDUSS 20050926 MUREXFO Is there a way in vi that I can search the file and remove any line... (2 Replies)
Discussion started by: morgadoa
2 Replies

9. Filesystems, Disks and Memory

associated file types

I have a file of type .for extension .In a guui based unix environment like solaris if I double click on that file a specific program designed by me has to run which takes this file as the parameter and exceutes the program. Can anyone help me? (8 Replies)
Discussion started by: nhk_srd
8 Replies

10. UNIX for Dummies Questions & Answers

What file types does unix support?

Hello, I've search this site many times and ave not been able to find my answer. So I'm going to post my question....(duh) Ok. I'm wanting to know what file types does unix support. if you can try and list them like this: php, .php or somthing like that. plus don't forget that I said I... (3 Replies)
Discussion started by: dgames
3 Replies
Login or Register to Ask a Question