How to use zip
1) Create multiple archives with a limited maximum size
# with bzip2 compression algorithm
zip -Z bzip2 -s 1850m archive *
# without compression
zip -Z store -s 1850m archive * # OR
zip -0 -s 1850m archive *
2) Archive entire directory structure
zip -R -Zb archive *