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.…