After extract from tar, commands cannot see file?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers After extract from tar, commands cannot see file?
# 1  
Old 12-22-2011
After extract from tar, commands cannot see file?

Hi,

Hi recently downloaded the source code from Advanced Programming in the Unix Envrionment 2e and extracted the source from its tar file. The extracted files have these characteristics:
1) They can can be seen in a directory listing and brought up for viewing in emacs;
2) They cannot be seen by commands such as gcc and stat.

As a sanity check, I copied the contents of one file as I saw it in emacs to a new file that I crated in my home directory, and I am able to stat and gcc the new file. I demonstrate this problem in the listing at the end of this post.

I've tried modifying the permissions on the file that I extracted, but chmod does not see the file either.

What can I do to make these usable?

Many thanks.

--Phil



Code:
mrphil@ubuntu:~/source$ ls -l 
total 4
-rwxrwxrwx 1 mrphil mrphil 340 2005-05-24 04:59 ls1.c

mrphil@ubuntu:~/source$ stat lsl.c
stat: cannot stat `lsl.c': No such file or directory


mrphil@ubuntu:~/source$ ls -l ../my.c
-rw-r--r-- 1 mrphil mrphil 340 2011-12-22 06:15 ../my.c
mrphil@ubuntu:~/source$ stat ../my.c
  File: `../my.c'
  Size: 340       	Blocks: 8          IO Block: 4096   regular file
Device: 801h/2049d	Inode: 272315      Links: 1
Access: (0644/-rw-r--r--)  Uid: ( 1000/  mrphil)   Gid: ( 1000/  mrphil)
Access: 2011-12-22 06:15:49.346022901 -0800
Modify: 2011-12-22 06:15:37.890034844 -0800
Change: 2011-12-22 06:15:37.890034844 -0800
mrphil@ubuntu:~/source$


Last edited by zxmaus; 12-22-2011 at 10:53 AM..
# 2  
Old 12-22-2011
seems to me like your file is called ls1.c (with a one) and you try to stat lsl.c (with an L) which isn't there ?

Regards
zxmaus
# 3  
Old 12-22-2011
Oh dear God.

Take plank of wood in hand, and summarily whack over head three times with spirit!

Could this be another variation on the "off by one" theme . . . ?

Many thanks.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Tar extract Z file

I was looking at this tutorial for tar extract Z file. Is there a reason why this did not work? I checked my man pages and it had a -Z option. tar -xZvf /opt/Nimsoft/nimldr.tar.Z tar (child): compress: Cannot exec: No such file or directory tar (child): Error is not recoverable: exiting now... (2 Replies)
Discussion started by: cokedude
2 Replies

2. Shell Programming and Scripting

Want to extract particular file from tar.lzo

Hi Guys, Could you please help to get specific files from /di/data/prd/serial/lookup/abetlp11_lookup_20180206.tar.lzo without extracting whole compressed file tar.lzo as its size is huge file name - xyz.lkp Thanks (1 Reply)
Discussion started by: himanshupant
1 Replies

3. UNIX for Dummies Questions & Answers

Extract .zip file without using unzip,tar

Hi, Need to extract a file containing multiple .txt files without using tar/unzip as they are not available (1 Reply)
Discussion started by: santoshdrkr
1 Replies

4. UNIX for Dummies Questions & Answers

Do I need to extract the entire tar file to confirm the tar folder is fine?

I would like to confirm my file.tar is been tar-ed correctly before I remove them. But I have very limited disc space to untar it. Can I just do the listing instead of actual extract it? Can I say confirm folder integrity if the listing is sucessful without problem? tar tvf file1.tar ... (1 Reply)
Discussion started by: vivien_chu
1 Replies

5. Shell Programming and Scripting

Extract root basedir name from a *.tar.gz file

I am working on a script to install a software distribution which ships as a *.tar.gz file. The company doesn't name the dist consistently, but the resulting directory out of the *.tar.gz file (ie: XXX_X_X_X) is consistent and shows the software version. I'm writing this with BASH-3.25.x... (4 Replies)
Discussion started by: forrie
4 Replies

6. UNIX for Advanced & Expert Users

How to extract a particular file in tar.Z format

Hi , I need to extarct only a particulay files from the tar.Z. ie i need to extract one.txt from test.tar.Z. The test.tar.Z may contain lot of file and folders. Please help me to extract particular file to some location. Regards, Kalai. (1 Reply)
Discussion started by: kalpeer
1 Replies

7. UNIX for Dummies Questions & Answers

tar command help -- extract single file

Hi, I want to view/display the contents of one file in tar file. For example if the tar file is sam.tar.gz and one of the file inside is E1.txt, how do i view the contents of this E1.txt file. Olso if I want to extract the E1.txt file only from sam.tar.gz how can i do that. Thanks in... (7 Replies)
Discussion started by: icefish
7 Replies

8. Shell Programming and Scripting

extract one file form .tar.gz without uncompressing .tar.gz file

hi all, kindly help me how to extract one file form .tar.gz without uncompressing .tar.gz file. thanks in advance bali (2 Replies)
Discussion started by: balireddy_77
2 Replies

9. UNIX for Dummies Questions & Answers

cant extract files from a tar file

hi everyone i have a tar file which was in AIX box. its 300mb. i cant untar in windowsxp home. I just get an empty folder with no files when i extract. i dont get any bad header or any such error. i am using IZARC which is a freeware. Not sure if i should try winzip or winrar. any help (2 Replies)
Discussion started by: bryan
2 Replies

10. UNIX for Advanced & Expert Users

extract a sub directory form a tar file

anyone know if it is possable to extract a subdirectory in a tar file. IE tarfile contains parent dir -sub dir A -sub dir B I want to extract sub dir B. (2 Replies)
Discussion started by: Optimus_P
2 Replies
Login or Register to Ask a Question