Conteúdo do Curso
Introdução à Computação em Nuvem
Introdução à Computação em Nuvem
Noções básicas de trabalho com instância 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:
Instalação de Atualizações e Programas
Primeiro, precisamos garantir que todas as atualizações necessárias estão instaladas no sistema. Faremos isso usando o seguinte 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 você pode ver, no meu caso, não havia nada para baixar, e tudo já estava instalado. No entanto, é altamente recomendável que este comando seja usado durante a configuração inicial da instância para evitar erros 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 mudar para o modo superusuário, use o comando sudo su
.
Agora, podemos testar alguns comandos em nossa instância.
Por exemplo, vamos criar uma pasta chamada test_folder
. Dentro desta pasta, criaremos um arquivo chamado README.txt
e escreveremos "This is an EC2 instance!" nele.
Nossos comandos serão assim:
mkdir test_folder
- Crie uma pasta com o nome desejado;cd test_folder/
- Navegue até a pasta que acabamos de criar;touch README.txt
- Crie um arquivo com o nome e extensão desejados;echo "This is an EC2 instance!" > README.txt
- Escreva o texto desejado no arquivo correspondente;cat README.txt
- Exiba o conteúdo do arquivo de texto que criamos.
Como resultado, o seguinte será impresso no console:
1. What command do you use to change the current directory to a specified path?
2. Qual comando você usa para mudar o diretório atual para um caminho especificado?
Obrigado pelo seu feedback!