This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
check_running_screen() { | |
local command="screen -ls | grep $1" | |
if [ -n "$(eval $command)" ]; then | |
echo 1 | |
else | |
echo 0 | |
fi | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** Este tuto asume que estamos usando dos placas decklink, una para captura (la primera, o index=0) y otra para salida (la segunda, o index=1) | |
* Instalar debian stable, formateando con /home separado y con las opciones ssh y file server | |
* Actualizar apt: | |
-> su | |
-> sudo gedit /etc/apt/sources.list | |
-> agregar contrib y non-free a los repos | |
-> grabar y salir | |
-> apt-get update | |
-> apt-get upgrade | |
* Instalar sudo y screen: |