Created
May 25, 2016 11:28
-
-
Save eliezerfot123/600ad9ec47bb945cd8a1eea27fb38a7b to your computer and use it in GitHub Desktop.
Instalar Tomb mediante un Script
This file contains hidden or 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 | |
# -*- ENCODING: UTF-8 -*- | |
echo -e "<° Linux es lo mejor - Instalaremos Tomb - una herramienta de seguridad ;) \n" | |
echo -e "Prepararemos su sistema para intalar tomb - No olvide ingresar su contraseña al final :D \n" | |
sudo apt-get install zsh gnupg cryptsetup pinentry-curses | |
sudo -e "Listo comenzaremos con la instalación de tomb \n" | |
echo -e "Descargando tomb v2.2 \n" | |
wget https://files.dyne.org/tomb/tomb-2.2.tar.gz | |
echo -e "Se ha descargado tomb correctamente \n" | |
echo -e "Descomprimiendo tomb \n" | |
tar xvfz tomb-2.2.tar.gz | |
cd tomb-2.2/ | |
echo -e "Instalando tomb ingrese su contraseña \n" | |
sudo make install | |
echo "by:eliezerfot123" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment