Use the command of tar to multi-part archive method.

We usually meet the package too large to upload internat space when upload have a limited .So we need to split the package into several pieces

,then you can upload those after the split packages to your the specified space .

the command is following :

#tar czvf arcsight_dump_system_tables.sql.gz  arcsight_dump_system_tables.sql

#split -b 50M arcsight_dump_system_tables.sql.gz

#xaa xab

#cat xa* > arcsight_dump_system_tables.sql.gz 

if you have any doubt ,you can check man manual .It will help you what to do use the command of tar .

Note:The method can resolve the package too large to upload internat space , Just example when I meet .

原文地址:https://www.cnblogs.com/rick52o/p/4818513.html