Zip

Zip

Zip

 
 

 



Using Tar:

Tell tar to c (create) an archive from the files in directory (tar is recursive by default), compress it using the z (gzip) algorithm, store
the output as a f (file) named archive.tar.gz, and v (verbosely) list all the files it adds to the archive.
tar -zcvf archive.tar.gz directory/
same as above, but do not include the parent folder itself in the tar archive.
cd dir/ && tar -zcvf ../dir.tgz . && cd .. 

To decompress and unpack the archive into the current directory you would use the following.
tar -zxvf archive.tar.gz
    • Related Articles

    • Cartika VPN

      For some reason on Windows based PC's the newer OpenVPN client will cause disconnects quite frequently. I experienced this after updating the OpenVPN client and I know others have this problem. If you experience please take the following steps: 1) ...
    • How to Install Wordpress via HSphere Control Panel

      Within Hsphere there is a file manager named Webshell4. It's very fast and easy to install WordPress within the end users hosting control panel following these simple steps. 1. Login to end user control panel and add the domain if not already added ...
    • How to Install Wordpress via HSphere Control Panel

      Within Hsphere there is a file manager named Webshell4. It's very fast and easy to install WordPress within the end users hosting control panel following these simple steps. 1. Login to end user control panel and add the domain if not already added ...
    • Full Steps to Replicate

      Problem Steps Recorder The easiest way to provide exact steps to replicate the issue you are facing is using the PSR.EXE tool packaged with Windows. To record and save steps on your computer To open Steps Recorder, select the Start  button, and then ...
    • Sending Mail using HTML Form

      You can use the mail-form script located attached to this KB article. To use, please do the following: 1) Unzip mail-form.zip 2) Download phpMailer class from http://phpmailer.worxware.com/ or ...