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 …
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 …
Cuando se desarrollan sitos o aplicaciones web lamentablemente hay que hacer pruebas en muchos y distintos navegadores. Uno de los mayores problemas que tengo es al probar en Internet Explorer ya que suelo trabajar con un ordenador Linux. Gracias al Read More …