Tag Archives: Bash

Reiniciar linux sin el comando reboot

Cómo realizar un reinicio forzoso en linux En ocasiones especiales, mas bien complicadas, es necesario reiniciar un equipo pero no están disponibles los binarios para tal efecto, como podría ser reboot. En ese caso tenemos una sencilla alternativa. Para realizar … Continue reading

Posted in Linux | Tagged , | Leave a comment

Argument list too long

After run rm -f * you get the error /bin/rm: Argument list too long Possible options: Use xargs. Xargs pass a list of arguments to a command. This deletes all the files listed: ls |xargs rm Use find. You can … Continue reading

Posted in Linux | Tagged , | 1 Comment