I got this error while installing a module inside a Docker container using cpanm. 1 2 3 ! Finding install on cpanmetadb failed. ! cannot open file '/root/.cpanm/sources/http%www.cpan.org/02package...
Walking /proc/net/netstat like a pro with awk
Little command to parse /proc/net/netstat and format the output: 1 2 3 4 5 6 7 $ awk '{for(i=1;i<=NF;i++)title[i] = $i; getline; print title[1]; for(i=2;i<=NF;i++)printf " %s: %s\n", title[i...
Docker image ready to use for perl-Selenium Firefox automation
Dockerfile 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 FROM ubuntu:18.04 RUN apt-get update && apt-get install -y \ wget \ xvfb ...
XDG_RUNTIME_DIR and Gentoo
On systemd/ConsoleKit systems this variable is set when the user logs in, if neither is used and you need XDG_RUNTIME_DIR for some reason (eg Flatpak), it can be easily set adding some lines to you...
There is NOT at least X GiB RAM
Recently while compiling latest Rust version I came across a problem on my very old Macbook, where emerge complained about not enough RAM to compile Rust. 1 2 3 4 5 6 7 ... pre_build_checks() { ...
Various ways to increase the size of a LVM partition
Content By adding a new disk By increasing a PV size By adding a new disk Identify the new disk 1 lsblk Initialize the disk 1 pvcreate /dev/vdh Add the PV to the existing VG 1 vgext...
Bubblewrap y Firefox
Si hay algo que está presente en todos los ordenadores personales es el navegador. Un programa normalmente gigantesco, lleno de fallos, que recibe y ejecuta código igualmente grande y no auditado. ...
Compilando las DLLs de DXVK en Gentoo
English version La forma mas sencilla de compilar DXVK en Gentoo es con una chroot de Debian, pero… Donde está la diversión en eso? La primera vez que lo intenté me topé con varios problemas y no ...
better-initramfs (Dropbear + LVM + LUKS) setup
Desde hace años que uso better-initramfs en todos los sistemas que necesiten un initramfs y es que como su nombre anuncia, es mejor que todas las alternativas IMO (mkinit, genkernel, dracut…etc). E...
Certificado de Cloudflare en nginx
Contenido Generar el certificado TLS Instalar el certificado Authenticated Origin Pulls Los certificados de Cloudflare son trusted por Cloudflare, si el servidor no está conectado a Clou...