I made a change in the blogger configuration to ease the later work when blogging. It is possible that older entries are not correctly formatted.

Showing posts with label server. Show all posts
Showing posts with label server. Show all posts

Sunday, 10 June 2012

packages to install on the server

## java java 6 is installed

## perl are installed
## ruby
## python

## CURL
curl
get was installed

## tomcat
tomcat6 is installed
tomcat7 should get installed
tomee should get installed

## Editor
emacs-nox got installed
vim

## Databases
mysql
postgres

## maven
maven only maven2 was there ... installed maven 3

## ant
ant installed the latest

## nagios



## git + git-daemon +gitosis

## VNC

## svn

## jenkins

## sonar

## XServer ?


##FTP
pure-ftp

Simple script to install some packages for my server

#! /bin/bash

#CMD='apt-get -y install %s';
CMD='echo %s';
REGEXP='(#.*|^\s*$)'



function installPackage(){
PERFORM_CMD=`printf "${CMD}" $1`;
echo ${PERFORM_CMD};
${PERFORM_CMD};
}


function installPackages(){
while read line
do
if [[ $line =~ $REGEXP ]]; then
continue;
fi
installPackage $line;
done <$1 } # for PACKAGE_LIST in installfiles.txt; do installPackages ${PACKAGE_LIST}; done