With command npm list -g –depth=0 -g filters global modules instead local ones. depth=0 avoids list dependencies of installed modules
Archivos de la categoría: Genérico
Debian: Pidgin Hangouts
sudo apt-get install -y libpurple-dev libjson-glib-dev libglib2.0-dev libprotobuf-c-dev protobuf-c-compiler mercurial make; hg clone https://bitbucket.org/EionRobb/purple-hangouts/ && cd purple-hangouts; make && sudo make install Via EionRobb/purple-hangouts And add proper emojis from unicode-emoji
Download site with Wget
wget -mkEpnp http://example.org
ProtonVPN + Debian Buster/Bullseye
Mate/Gnome: sudo apt-get install openvpn resolvconf network-manager-openvpn-gnome KDE: sudo apt-get install openvpn resolvconf network-manager-openvpn After that, create new network with «import vpn» option in network manager and import config file provided by ProtonVPN.
RHEL: Add exfat support
For RHEL 7, add EPEL repo: And install exfat packages: For RHEL 8 EPEL repo is not completed yet. Repo can be added: But it will lack exfat packages, will need to compile from source (easy): From: https://access.redhat.com/solutions/70050
Instalar LAMP y Phpmyadmin en Debian 10 Buster
Interesantes artículos para instalar Apache/PHP/MariaDB en Debian 10. Especialmente útil el de instalación de PHPMyAdmin, ya que el paquete de Debian ha sido eliminado por falta de un debido mantenimiento. How to Install LAMP Stack on Debian 10 Buster Server/Desktop Install phpMyAdmin with Apache (LAMP) on Debian 10 Buster
Fusionar video y audio con ffmpeg
Debian, set max number of inotify watches
Add temporarily: Run sudo sysctl fs.inotify.max_user_watches=524288 (with preferred value at the end). Add permanently (more info): put fs.inotify.max_user_watches=524288 into your sysctl settings: /etc/sysctl.conf
Linux: crear fichero swap al instante
Tan sencillo como crear el fichero: sudo fallocate -l 2G /swapfile Hacerlo accesible sólo a root: sudo chmod 600 /swapfile Convertirlo a swap: sudo mkswap /swapfile Y activarlo: sudo swapon /swapfile Para que al reiniciar siga activo, añadir lo siguiente a /etc/fstab: /swapfile none swap sw 0 0