How to create tar.gz archive of my files in Windows to upload and extract in cPanel?
How to create tar.gz archive file in Windows? [closed]
tar.gz file is just a tar file that's been gzipped. Both tar and gzip are available for windows.
If you like GUIs (Graphical user interface), 7zip can pack with both tar and gzip.
the problem is that it cannot compress to .tar.gz in one go –
Ventilation
In case it isn't clear, in 7zip you must first create the tar; it won't even show the option for Gzip if multiple files (or a folder) are selected. Reference: random-host.com/blog/creating-targz-file-7-zip –
Thankyou
Can you please show how to do this on the command line? –
Pytlik
@ChristopherPisz I would be useful if I could answer and explain that but question is locked, plz vote for reopen –
Enalda
© 2022 - 2024 — McMap. All rights reserved.
cd /mnt/c/[path to folder to archive]
and thentar -pczf archive.tar.gz *
– Grazing