#linux
Read more stories on Hashnode
Articles with this tag
Learning points: 🔹 What is Containerization? – How containers differ from virtual machines and why they are beneficial.🔹 Docker Terminology – Image...
Learning points: 🔹 Cloud Automation with Boto3 – Managing AWS services (EC2, S3, IAM, Lambda, RDS) using Python scripts.🔹 Automating Cloud...
Learning points: 🔹 Git Rebase – Deep Dive🔹 Git Cherry-pick – Applying specific commits from one branch to another.🔹 Resolving Merge Conflicts –...
Initial Tasks: ✅ Install Git on your system: Git Installation✅ Configure your Git username and email: git config --global user.name "Your Name" git...
Initial Tasks: ✅ Install a Package: Install Git (sudo apt install git or sudo yum install git).✅ Check Network Connectivity: Use ping google.com to...
Challenge 1: List all files (including hidden ones) in your home directory and sort them by modification time. 🎯 Goal: Understand how to list files...