Postagens

Mostrando postagens de setembro, 2010

Splitting and merging large files in Linux

In some cases you won't be able to transfer very large files using storage devices. So the best way is to use split a given file in to arbitrary no of volumes at the source and them merge at the destination. This will simply do that for you. Splitting Say you have a directory/file called 'foo'. First you need to create a '.tar.gz'. tar -cvzf foo.tar.gz foo Then you can split it using split command and as a parameter you can give the size of a each volume. (here its 25MB) split -d -b25m foo.tar.gz foo.tar.gz. Merge Simply you can merger using the cat command. cat foo.tar.gz.0* >foo.tar.gz Now you can untar this and use the original file/directory.

Retrospective - WSO2 Con 2010

Imagem
The first ever WSO2Con 2010 was successfully concluded on 15th of September 2010. It was a giant step in the Sri Lankan Software Industry where a Sri Lankan based company was able to held a world class conference that touches the cutting edge technologies in the Enterprise Middle-ware world. Being a member of the WSO2Con samples team, I was involved in the development of the sample scenario on the perspective of WSO2 ESB. It was an exciting couple of days that all of us worked with tremendous determination of making it a success. So, finally it paid off.. everything went very smoothly and the demo was a near perfection. Both Carbon and Stratos demos of the shopping cart app was a real success and we were able to use most of the WSO2 Products in that demo. Azeez's presentation of the demo on top of Cloud went really well. Panel Discussion I developed the ESB related configurations and integrated the all the components through the WSO2 ESB. I would like to explain the complete scen...