Jump to content

Split Zip Archive in Linux

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
2 replies to this topic

#1
Guest_Jame_*

Guest_Jame_*
  • Guests
How do I create a split archive?

IE:

file1.rar
file2.r01
file3.r02

etc..

I need to zip a very large folder.

#2
Guest_Jordan_*

Guest_Jordan_*
  • Guests
use: zip -r location/ zipfile.zip

Once zipped you can use zipsplit to split the zip file.

#3
Guest_Jame_*

Guest_Jame_*
  • Guests
So I do

# zip -r mydir/ myarchive.zip
[/quote]

which works but when I do 

[code]
# zipsplit myarchive.zip

I get

~bash: zipsplit: command not found

Any ideas?