Menu

Post image 1
Post image 2
Post image 3
1 / 3
0

Cloud Engineer Journey — Mini Linux Practice Task Explained

DEV Community·Joyal B Biju·21 days ago
#hR02cPk5
#linux#beginners#cli#tutorial#file#inside
Reading 0:00
15s threshold

In the previous post, I shared a small Linux practice task for beginners who are starting their Cloud or DevOps journey. The goal of this task was not to build a large project. It was simply to help beginners become comfortable using the Linux terminal step by step. For many people, Linux feels confusing at first because everything happens through commands instead of buttons and menus. But once you start practicing simple tasks daily, Linux becomes much easier to understand. 🛠️ The Task The mini task was: Create a folder called cloudjourney Create a file inside it Add some text using nano View the content using cat Check the current directory ☁️ Step-by-Step Explanation Create a Folder mkdir cloudjourney 👉 mkdir means “make directory.” This creates a new folder named cloudjourney. Move Into the Folder cd cloudjourney 👉 cd means “change directory.” This command moves us inside the folder we created. Create a File touch text.txt 👉 touch creates an empty file. Now we have a file called text.txt.…

Continue reading — create a free account

Join HashtagPLUS to read full articles, follow hashtags, vote, and join the conversation.

Read More