Comandos útiles de red
https://geekflare.com/es/linux-networking-commands/
https://geekflare.com/es/linux-networking-commands/
Primero debemos saber si utilizamos systemd o no, lo podemos averiguar con el siguiente comando: readlink -v /sbin/init o con el siguiente: ps -p1 | grep "init|upstart|systemd" Configurar proxy para…
$ sudo usermod -aG docker ${USER} Si recibimos error que grupo docker no existe lo creamos: $ sudo groupadd docker Si no queremos cerrar la sesión para que aplique los…
Vemos modos actuales y disponibles: $ xrandr Seteamos: $ xrandr --output Virtual1 --mode 1600x900
Habilitar: $ sudo modprobe psmouse Deshabilitar: $ sudo modprobe -r psmouse
Si no funciona el touchpad editamos el grub: $ sudo nano /etc/default/grub y en GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" agregamos para que quede así: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash i8042.nomux=1" Opcional: Podrias probar a definir también…
tenés que modificar /etc/default/grub así: GRUB_CMDLINE_LINUX_DEFAULT="video=SVIDEO-1:d quiet splash" y luego $ sudo update-grub && sudo reboot
https://ubunlog.com/como-comprobar-los-puertos-en-uso-en-linux/
$ php -r "echo ini_get('upload_max_filesize').\"\n\";" o lo mismo: $ php -i | grep "post_max_size"