Ubuntu créent des archives divisées

# First zip the file without compression
zip -0 big_file.zip big_file.iso

# Then split the zip
zip -s 1000m split_file big_file.zip

# To extract files pass unzip the first of the multizipped files 
# and it automatically processes all of the children
unzip split_file.zip
seb208