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

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -