Get the most out of your Centmin Mod LEMP stack
Become a Member

Sysadmin What is the best way to zip an entire directory?

Discussion in 'System Administration' started by Itworx4me, Apr 1, 2019.

  1. Itworx4me

    Itworx4me Premium Member Premium Member

    339
    35
    28
    Mar 14, 2017
    Ratings:
    +65
    Local Time:
    4:51 PM
    Nginx 1.27.4
    MariaDB 10.6.21
    What is the best way to zip an entire directory from command line?

    Thanks,
    Itworx4me

     
  2. Itworx4me

    Itworx4me Premium Member Premium Member

    339
    35
    28
    Mar 14, 2017
    Ratings:
    +65
    Local Time:
    4:51 PM
    Nginx 1.27.4
    MariaDB 10.6.21
    Maybe tar is a better way?
     
  3. Jimmy

    Jimmy Well-Known Member

    1,799
    391
    83
    Oct 24, 2015
    East Coast USA
    Ratings:
    +999
    Local Time:
    7:51 PM
    Google search... Itdoesn'tworx4u?
     
  4. eva2000

    eva2000 Administrator Staff Member

    58,893
    12,490
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +19,122
    Local Time:
    9:51 AM
    Nginx 1.31.x
    MariaDB 10.x/11.4+/12.3+
    yup tar command best as you can tell tar to preserve permissions
     
  5. eva2000

    eva2000 Administrator Staff Member

    58,893
    12,490
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +19,122
    Local Time:
    9:51 AM
    Nginx 1.31.x
    MariaDB 10.x/11.4+/12.3+
    yup tar command best as you can tell tar to preserve permissions
     
  6. Itworx4me

    Itworx4me Premium Member Premium Member

    339
    35
    28
    Mar 14, 2017
    Ratings:
    +65
    Local Time:
    4:51 PM
    Nginx 1.27.4
    MariaDB 10.6.21
    Code (Text):
    tar -czf files_$(date +%d.%m.%y).tar.gz /path/to/copy

    Is -czf sufficient or would you add more to it?
     
  7. eva2000

    eva2000 Administrator Staff Member

    58,893
    12,490
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +19,122
    Local Time:
    9:51 AM
    Nginx 1.31.x
    MariaDB 10.x/11.4+/12.3+