blog.webwesen.com Rotating Header Image

Posts under ‘programming’

What packaging tool to choose for AIX deployments?

rpm vs. installp It seems it was  impossible for a long time to find an installp-experienced engineer outside IBM. rpm on the other hand has been freely available for years. For scripty type stuff there should be no special considerations for AIX so the large body of experience, knowledge and example code available for rpm [...]

Windows PowerShell Execution policy

The first time you try to execute a script from PowerShell you will most likely have to change the execution policy for PowerShell. It is recommended to set it to RemoteSigned. This would mean that all remote scripts must be signed or PowerShell will refuse to execute them. To change the execution policy: Set-ExecutionPolicy RemoteSigned [...]

Install and configure PMD on CentOS 5.3

cd /opt mkdir static_analysis cd static_analysis/ wget http://downloads.sourceforge.net/pmd/pmd-bin-4.2.5.zip unzip pmd-bin-4.2.5.zip ln -s pmd-4.2.5/ pmd to be continued…