On Sun, Jun 08, 2008 at 10:11:04PM +0300, Evren Yurtesen wrote: > I have created an bzip2 archive with split and it is in 2 files. However I > couldnt open the archive using winrar or 7zip. It looks like they are not > continuing from the 2nd file. How can I open an archive which is split on > windows?
Simply put them back together. Split only does a binary split of a file. You could either use some tool like Total Commander or similar or simply the command prompt: copy /b part1 + part2 wholefile.bz2 might work, I'm not sure though. Tino. PS: You couldn't "open" the parts on linux either, you'd need to concatenate them, e.g. cat part1 part2 | bunzip2 > uncompressedfile -- "What we nourish flourishes." - "Was wir nähren erblüht." www.craniosacralzentrum.de www.forteego.de ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourceforge.net/services/buy/index.php _______________________________________________ BackupPC-users mailing list [email protected] List: https://lists.sourceforge.net/lists/listinfo/backuppc-users Wiki: http://backuppc.wiki.sourceforge.net Project: http://backuppc.sourceforge.net/
