Forum Moderators: bakedjake

Message Too Old, No Replies

I dont find the file on the server

file on the server

         

aff_dan

1:35 pm on Dec 29, 2004 (gmt 0)

10+ Year Member



Hello,

I have downloaded a file tar.gz using wget in the root access. I don't know where the file is saved... How to find it quickly?

mcavic

4:38 pm on Dec 29, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



find / -name file.tar.gz -print

aff_dan

5:28 pm on Dec 29, 2004 (gmt 0)

10+ Year Member



Many thanks!

I found it but when I make mc I don't see it in /root/ where has told me that it is.

It is invisible? How to unpack tar.gz?

mcavic

6:15 pm on Dec 29, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You should be able to see it by doing
ls -al /root/file.tar.gz

To unpack it:

gunzip file.tar.gz
tar xvf file.tar

But you might want to move it to an empty directory first.