Dive into the archives.
- 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 use the find command to make some actions with the found elements.
find . -exec rm {} \;
If you don´t [...]
- Could not connect to database for SQL SessionHandler
When you try to login in Horde you see this error:
A fatal error has occurred
Could not connect to database for SQL SessionHandler.
Details have been logged for the administrator.
There are some different reasons that causes this error. This is a checklist to solve the problem.
- Obtener información de un certificado SSL
Para obtener la información de un certificado SSL desde la consola podemos utilizar openssl.
En determinadas ocasiones si no se tiene acceso a un navegador web puede resultar complicado comprobar los datos de un certificado SSL. Esta operacion que es trivial con cualquier navegador, puede resultar algo mas compleja desde la consola.
