How to find the largest top files and directories on Linux
If you want to find the largest top files and directories on Linux you can use this command du -a / | sort -n -r | head -n 10 First we use du. It shows the disk usage of your Read More …
If you want to find the largest top files and directories on Linux you can use this command du -a / | sort -n -r | head -n 10 First we use du. It shows the disk usage of your Read More …
Sometimes you need to connect your Java application to a SSL server and you can get this error What you’re application is telling you is that it doesn’t trust in the other server. The solution is very simple, you just Read More …
Hoy tenemos un pequeño snippet para borrar duplicados en MongoDB segun uno de los campos Antes de la version 3 de MongoDB era bastante sencillo. Solo habia que crear un indice unico por el campo que queriamos que no tuviera Read More …
Hoy os traigo un pequeño snippet muy util para encontrar ficheros que contengan un determinado texto en Linux o Mac: Este comando buscara todos los archivos que contengan search en el directorio path. Si queremos filtrar por tipo de archivo Read More …