A host sent me a site backup in tar format. ..tried winzip etc but get nothing or garble
How the fuck do I view/extract a tar file?
Collapse
X
-
Get winrar I think you can find it at rarlabs.com if not search for it. Just make sure when you install it, and open it, it associates with .tar files (it should by default).Latest MMA news. http://www.mmawrapup.com -
winrarOriginally posted by AcidMaxGet winrar I think you can find it at rarlabs.com if not search for it. Just make sure when you install it, and open it, it associates with .tar files (it should by default).
I've been using the trial edition for about a year now★★★
Comment
-
If you want to just untar it to another server (unix/linux) use:
tar -xvf filename
if it has a gzip extension use
gzip -d filename.tar.gz;tar -xvf filename.tar
BMFComment
-
-
You can do it with winrar from here:Originally posted by OzManA host sent me a site backup in tar format. ..tried winzip etc but get nothing or garble
http://dwhsdownload.com/Like the desert needs the rain
We do fully manged WordPress, VPS, and Servers. Adult Host Pro https://adulthostpro.com/ Since 2001Comment
-
tar -xvf filename.tar
if it's .tar.gz, just run this first:
gunzip filename.tar.gzComment

Comment