Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprende Conceptos básicos de trabajar con instancias EC2 | Descripción general de EC2
Introducción a la Computación en la Nube
course content

Contenido del Curso

Introducción a la Computación en la Nube

Introducción a la Computación en la Nube

1. Introducción a las Tecnologías en la Nube
2. Descripción general de AWS S3
3. Descripción general de EC2
4. Gestión de RDS

book
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í:

  1. mkdir test_folder - Crear una carpeta con el nombre deseado;
  2. cd test_folder/ - Navegar a la carpeta que acabamos de crear;
  3. touch README.txt - Crear un archivo con el nombre y extensión deseados;
  4. echo "This is an EC2 instance!" > README.txt - Escribir el texto deseado en el archivo correspondiente;
  5. 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?

What command do you use to change the current directory to a specified path?

What command do you use to change the current directory to a specified path?

Selecciona la respuesta correcta

¿Qué comando usas para cambiar el directorio actual a una ruta especificada?

¿Qué comando usas para cambiar el directorio actual a una ruta especificada?

Selecciona la respuesta correcta

¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 3. Capítulo 5
We're sorry to hear that something went wrong. What happened?
some-alt