compression - SSH command gets terminated while compressing a directory -


i compressing big directory 50gb containing files , folder using putty ssh command line.i using command:

tar czspf file.tar.gz directory/ 

it starts work fine, after time gets terminated single word message "terminated" , compression stopped near 16gb of tar archive.

is there way escape terminated error or how deal problem, or other method make tar of directory avoiding terminate error.thanks

probably conflict kind of file size limit. not file system supports big files. in case pipe output of tar split command this: tar czsp directory/|split -b4g fileprefix-


Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -