just asking

This is a discussion about just asking in the Everything Linux category; hello. how can i extract a remote tar file using ssh? thank you. .

Everything Linux 1798 This topic was started by ,


data/avatar/default/avatar08.webp

24 Posts
Location -
Joined 2004-11-18
hello. how can i extract a remote tar file using ssh? thank you.

Participate in our website and join the conversation

You already have an account on our website? To log in, use the link provided below.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This subject has been archived. New comments and votes cannot be submitted.

Responses to this topic


data/avatar/default/avatar02.webp

12 Posts
Location -
Joined 2005-07-11
Well, on Darwin you use:
 
%: tar -xvzf filename
 
The -x flag indicates that you wish to x-tract the file(s)
The -v flag means "verbose"
The -z flag ****omit this flag if the file is not compressed****
The -f flag tells tar to extract from a file and not a tape archive
 
 
w/ secure shell I assume that you just use the above command, given that the computer you are interacting with is Unix based.

data/avatar/default/avatar02.webp

12 Posts
Location -
Joined 2005-07-11
Check your man pages for the exact flags, they tend to vary. (man tar -or- atropos tar)

data/avatar/default/avatar08.webp

24 Posts
Location -
Joined 2004-11-18
OP
how can i extract a "remote tar file using ssh"? thank you