Last active
April 1, 2024 20:06
-
-
Save IoTeacher/6f25bb5efb9dfff4ae8a0f3651c31a4b to your computer and use it in GitHub Desktop.
Ensamblador SCRIPT de inicialización para AWS ARM nodo para compilar en 64 bits
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
echo "# Actualizar la imagen de AWSAcademy con las herramientas para usar el ensamblador ARM64 bits:" | |
echo " build-essential - Compiladores soporte para sus trabajos con Ensamblador" | |
echo "# git nano vim gdb - debuger y editores junto con github.com, igualmente VSCode u otros" | |
echo "# wget curl htop mc tree - diversas herramientas para el desarrollador" | |
echo "Por MC. René Solis" | |
echo "Paquete de soporte para 64 bit en ARM architecture" | |
sudo apt-get update && \ | |
apt-get upgrade -y | |
sudo apt-get install -y build-essential git nano gdb curl tree cmake protobuf-compiler | |
echo "Habra mas cambios" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Alejandro Espinoza Huerta