Зміст курсу
Вступ до Хмарних Обчислень
Вступ до Хмарних Обчислень
Основи роботи з EC2 Instance
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:
Встановлення оновлень та програм
Спочатку нам потрібно переконатися, що всі необхідні оновлення встановлені на системі. Ми зробимо це за допомогою наступної команди:
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.
Як ви бачите, у моєму випадку нічого не потрібно було завантажувати, і все вже було встановлено. Однак настійно рекомендується використовувати цю команду під час початкового налаштування інстанції, щоб уникнути майбутніх помилок.
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:
Щоб переключитися в режим суперкористувача, використовуйте команду sudo su
.
Тепер ми можемо спробувати деякі команди на нашій інстанції.
Наприклад, давайте створимо папку з назвою test_folder
. Всередині цієї папки ми створимо файл з назвою README.txt
і напишемо в ньому "This is an EC2 instance!".
Наші команди виглядатимуть так:
mkdir test_folder
- Створити папку з бажаною назвою;cd test_folder/
- Перейти до папки, яку ми щойно створили;touch README.txt
- Створити файл з бажаною назвою та розширенням;echo "This is an EC2 instance!" > README.txt
- Записати бажаний текст у відповідний файл;cat README.txt
- Відобразити вміст текстового файлу, який ми створили.
В результаті, наступне буде виведено в консоль:
1. What command do you use to change the current directory to a specified path?
2. Яку команду ви використовуєте для зміни поточної директорії на вказаний шлях?
Дякуємо за ваш відгук!