package
tar -cf packagedName.tar.gz needPackageFile
frequent question
gzip: stdin: not in gzip format
it means this package don't compress with gzip style,
so it don't need to be added "z" argument when you unpackage.
tar -xf **.tar.gz
tar -cf packagedName.tar.gz needPackageFile
it means this package don't compress with gzip style,
so it don't need to be added "z" argument when you unpackage.
tar -xf **.tar.gz