Hi,
I want to slice large files using Linux commands (tar etc.) or GUI software in Linux.
Could you assist me?
Thanks
Printable View
Hi,
I want to slice large files using Linux commands (tar etc.) or GUI software in Linux.
Could you assist me?
Thanks
Have a look at split
To put the pieces together again, use e.g. cat and the shell append operator.Code:man split
Hi All!
Thanks for all of your help!
For a person who wants to do file slicing in a hurry I will state the steps below
To Slice files : the command is
this will split the file to 4GB slicesCode:split -b 4000000k <filename>
To restore the file
ThanksCode:cat xaa xab xac > myfilename