Infraestructura TI Opensource
Kolab para email y calendario
Para email, calendaring y funcionalidad groupware (solicitud de citas). Kolab tiene una excelente interface web para la funcionalidad base, pero tambien funciona con casi todos los clientes de correo electronico.
Owncloud o Nextcloud para file sharing
Los dos sistemas son muy similares, OwnCloud contiene algunos modulos cerrados para organizaciones grandes, NextCloud ha hecho un compromiso de tener el 100% open.
Encontrar API KEY para Firebase Cloud Messaging
PASO 1: Ir a la Consola de Firebase Console
PASO 2: Seleccionar el proyecto
Continuar leyendo «Encontrar API KEY para Firebase Cloud Messaging»
Como ejecutar comandos remotos en ssh y mostrarlos localmente
1 |
ssh USER@HOST 'command' |
USER –> Usuario.
HOST –> Servidor.
Command –> Es el comando a ejecutar.
Ejemplo:
1 2 3 4 5 6 7 8 9 10 |
ssh lradmin@172.31.7.221 df Filesystem 1K-blocks Used Available Use% Mounted on /dev/xvda2 10473452 1599732 8873720 16% / devtmpfs 489456 0 489456 0% /dev tmpfs 507736 0 507736 0% /dev/shm tmpfs 507736 13000 494736 3% /run tmpfs 507736 0 507736 0% /sys/fs/cgroup tmpfs 101548 0 101548 0% /run/user/1000 tmpfs 101548 0 101548 0% /run/user/0 [root@rhel1 ~]# |
1 2 3 |
[root@rhel1 ~]# ssh lradmin@172.31.7.221 uptime 00:31:26 up 52 min, 2 users, load average: 0.00, 0.01, 0.04 [root@rhel1 ~]# |
Continuar leyendo «Como ejecutar comandos remotos en ssh y mostrarlos localmente»
Samba 4 Domain Controller Installation on CentOS 7
Automate your tweets with Python code running on a Raspberry Pi | Opensource.com
Make your own Twitter bot with Python and Raspberry Pi Automate your tweets with some simple Python code running on a Raspberry Pi.
Origen: Automate your tweets with Python code running on a Raspberry Pi | Opensource.com
How to Create a Fully Featured Mail Server using Postal
Actualizar FREEPBX de 2.11 a 13
Ir a Admin/Module Admin
Dar clic en el boton Check Online
Bajar el paquerte PBX Upgrader
Ir a Admin/Migrate 2.11 to 12
Seguir los pasos de actualizacion
Despues para migrar de 12 a 13 repetir los pasos anteriores
Convertir imagenes de QEMU QCOW2 a LVM
Crear na maquina virtual KVM/QEMU y seleccionar el formato raw, qcow, o qcow2. There are administrative benefits to using file images instead of devices, such as backing up or saving image files on another server, as is the case with migrating over shared storage.
Comprimir discos de maquina virtuales muy grandes
Si tenemos un archivo mas pesado y queremos comprimirlo debemos hacerlo de la siguiente manera.
Ejecutamos el siguiente comando:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
$ time bsdtar cvfz sparse.tar.gz 1tb a 1tb real 0m0.362s user 0m0.336s sys 0m0.020s $ ls -l total 8 -rw-rw-r-- 1 autouser autouser 1099511627777 Nov 7 01:43 1tb -rw-rw-r-- 1 autouser autouser 257 Nov 7 01:43 sparse.tar.gz $ |
Revisar que la maquina tiene el tamaño para almacenar el archivo:
1 2 3 4 5 6 7 8 9 10 11 |
$ rm 1tb $ time tar -xvSf sparse.tar.gz 1tb real 0m0.031s user 0m0.016s sys 0m0.016s $ ls -l total 8 -rw-rw-r-- 1 autouser autouser 1099511627777 Nov 7 01:43 1tb -rw-rw-r-- 1 autouser autouser 257 Nov 7 01:43 sparse.tar.gz |