Sin categoría

Configure Mysql

Source RedHat Linuxservice mysql start What will work on nearly all Linux servers is: /etc/init.d/mysql start Subsitute the desired service for mysql for other services. You should engrave this on the back of your hand if you do server admin…
Leer más

Pensive Mood

Roger Cohen wonders if we managed alright, before this presingularity times? His answer is yes, we managed. Even though we are the same age, I do feel excited to get into the Technological Singularity. Tighten your seat belts. There is…
Leer más

Servidor streaming de audio y películas

GNUMP3d es un servidor streaming tanto para archivos en formato de audio MP3s y OGG vorbis, como para películas y otros formatos de medios. Es probable que el software sea poco publicitado en la internet, pero su existencia online data desde 2007. Fue desarrollado por un…
Leer más

Software Portable

Una aplicación portátil, más conocido como «portable», es una aplicación informática que puede ser utilizada en cualquier ordenador que posea el sistema operativo para el que fue programada sin instalación previa; esto significa que no es necesaria la instalación de…
Leer más

Software gratuito de control remoto

La entrada de hoy está dedicada a los administradores/helpdesk. Necesitan tener control remoto sobre equipos cliente (o servidores) y evitar así los paseos kilométricos para dar soporte a los usuarios en las grandes organizaciones. Hoy os hablo de TightVNC, que…
Leer más

Deleting Glassfish old logs

#!/bin/bashDAYS_TO_KEEP=$((7 * 86400))     # In secondsLOG_DIR=/var/lib/glassfishv2/domains/domain1/logsTODAY=$(date +%s)for FileName in $(ls ${LOG_DIR}/server.log_*)do        FileDate=$(stat –printf=%Y ${FileName})        DateDiff=$((TODAY – FileDate))        if [ $DateDiff -gt ${DAYS_TO_KEEP} ]        then              …
Leer más

sumar matrices en java

Clase para sumar arreglos en Java, simple pero muy funcional. public class Arreglos { public static void main(String[] args) { //Creamos 2 arreglos de largo 10, pueden ser cuantos desees. int[] a = {2,3,4,5,6,7,8,9,10,11}; int[] b = {10,11,13,14,17,19,2,4,6,7}; int largo…
Leer más