limpe as linhas indicadas do tomcat6 em /etc/init.d/tomcat
para resolver sua pergunta.
depois de limpo, o arquivo pode gostar disso:
TOMCATPATH=/usr/share/apache-tomcat-7.0.27
case $1 in
start)
echo “starting tomcat7 from $TOMCATPATH”
sh $TOMCATPATH/bin/startup.sh
;;
stop)
echo “stopping tomcat7 from $TOMCATPATH”
sh $TOMCATPATH/bin/shutdown.sh
;;
restart)
$0 stop
$0 start
;;
*)
echo $”usage: $0 {start|stop|restart}”
;;
esac
exsit 0
sugestão para desinstalar um software:
sudo apt-get purge xxxx-software
purge
também remove os arquivos de configuração.