|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Get inside! Sample the range of functionality easily built with JMSL Library for Time Series Data Analysis, Heat Maps, Portfolio Optimization, Monte Carlo Simulation, Stock Price Charting and more. Download Now! |
|
#1
|
|||
|
|||
|
un-tarballing
Help! I am not familiar with un-tarballing files. I have a file that I uploaded to my httpdocs directory and am running this command:
tar -xzvf filename.tar.gz ...but I keep getting this message: tar (child): filename.tar.gz: Cannot open: No such file or directory tar (child): Error is not recoverable: exiting now tar: Child returned status 2 tar: Error exit delayed from previous errors What's going on? Why can't I open this tar file? Why is it saying that it can't find the file... it's right there in that directory? Any help is much appreciated! |
|
#2
|
|||
|
|||
|
Hello? Is there anyone out there? I know it's a simple thing that I'm doing wrong... any sort of suggestion would be helpful. Thanks.
|
|
#3
|
|||
|
|||
|
Maybe an unprintable character in the filename? Try:
ls -b |
|
#4
|
|||
|
|||
|
Thanks for replying. I get the same response: No such file or directory.
This isn't some small program that I am trying to install here... I'm trying to install phpMyAdmin. I was just following their instructions. ![]() |
|
#5
|
|||
|
|||
|
If neither tar nor ls can see the file, what is leading you into thinking it exists?
|
|
#6
|
|||
|
|||
|
Your tar file appears to be gzipped (from the .gz extension).
You need to unzip it first before you untar it: If your gzipped tar file exist in your current directory then using one of the two methods below: Code:
#-- In two steps: gzip -d filename.tar.gz tar xvf filename.tar #-- In one go gzip -dc filename.tar.gz |tar xvf - |
|
#7
|
|||
|
|||
|
The gnu version of tar supports -z which will automatically unzip the archive. And he specified -z.
|
|
#8
|
|||
|
|||
|
Thanks guys... I figured out my problem... and it's too stupid to mention here. That's what I get for working to fast and not paying attention. Thanks again for the help though...
![]() |
![]() |
| Viewing: Dev Shed Forums > Operating Systems > UNIX Help > un-tarballing |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|