https://gist.github.com/eSkiSo/781269c79b4dd740e90fcc059c1985ae
traduccion
https://www.cjorellana.net/2020/12/como-instalar-oci8-en-ubuntu-2004-y-php.html
para solucionar el problema de cuando se quiere instalar php7.4-dev
https://askubuntu.com/questions/1288573/issue-when-installing-php-dev-in-ubuntu-20-04
cuando sale permiso denegado al hacer echo, ingresar como root
sudo su -
y luego ctrl+d
si al momento de instalar alguna libreria sale algo como
DbDriver "config": /var/cache/debconf/config.dat is locked by another process: Resource temporarily unavailable
buscar el proceso que mantiene el bloqueo asi:
sudo fuser -v /var/cache/debconf/config.dat
USER PID ACCESS COMMAND
/var/cache/debconf/config.dat:
root 18210 F.... dpkg-preconfigu
Entonces simplemente necesita anotar el PID y matarlo así:
sudo kill PID
sudo kill -9 PID # if the first doesn't work
No hay comentarios:
Publicar un comentario