Contenido del Curso
Introducción a la Computación en la Nube
Introducción a la Computación en la Nube
Conceptos básicos de trabajar con instancias EC2
Let's start working with the instance. As you may have understood from the previous chapter, all the work with the instance will happen in the Linux system, and we will manage it through the console. We'll manage the instance using the bash language, which you can also use to control your computer.
Let's take a look at the list of basic navigation commands in bash to understand what we'll be doing next:
Installation of Updates and Programs
First, we need to make sure that all the necessary updates are installed on the system. We'll do this using the following command:
Instalación de Actualizaciones y Programas
Primero, necesitamos asegurarnos de que todas las actualizaciones necesarias estén instaladas en el sistema. Haremos esto usando el siguiente comando:
After executing this command, the system will start automatically updating and installing the necessary components:
As you can see, in my case, there was nothing to download, and everything was already installed. However, it's strongly recommended to run this command during the initial setup of the instance to avoid future errors.
Como puedes ver, en mi caso, no había nada para descargar, y todo ya estaba instalado. Sin embargo, se recomienda encarecidamente que este comando se utilice durante la configuración inicial de la instancia para evitar errores futuros.
To switch to superuser mode, use the command:`
Now, we can try running some commands on our instance.
For example, let's create a directory called test_folder
. Inside this directory, we'll create a file called README.txt
and write "This is an EC2 instance!" in it.
Our commands will look like this:
Para cambiar al modo superusuario, utiliza el comando sudo su
.
Ahora, podemos probar algunos comandos en nuestra instancia.
Por ejemplo, vamos a crear una carpeta llamada test_folder
. Dentro de esta carpeta, crearemos un archivo llamado README.txt
y escribiremos "This is an EC2 instance!" en él.
Nuestros comandos se verán así:
mkdir test_folder
- Crear una carpeta con el nombre deseado;cd test_folder/
- Navegar a la carpeta que acabamos de crear;touch README.txt
- Crear un archivo con el nombre y extensión deseados;echo "This is an EC2 instance!" > README.txt
- Escribir el texto deseado en el archivo correspondiente;cat README.txt
- Mostrar el contenido del archivo de texto que creamos.
Como resultado, se imprimirá lo siguiente en la consola:
1. What command do you use to change the current directory to a specified path?
2. ¿Qué comando usas para cambiar el directorio actual a una ruta especificada?
¡Gracias por tus comentarios!