Archive for February, 2009

Eclipse Ganymede and WSCompile incompatibility?

I found strange problem with WSCompile-1.6 task in Ganymede release of Eclipse (Version 3.4.1). The problem lies in WSCompile-Ant-Task. Buildscript execution freezes on the wscompile task. I describe that problem more detailed on techjava.de

Please feel free to comment here or there if you know what died changed in Ganymede in ant scripts handling since Europe [...]


Extracting tar, gzip, bzip2, z

Sometimes you need to extract some files on Linux console. HereĀ  some examples how to do that.
tar
Tar archives are the most common way of distributing bundles of files under Linux or UNIX. A .tar file is simply a bundle of files packaged with GNU tar program. To extract such files use following:

tar xf somearchive.tar
tar [...]