If you are starting your journey into DevOps, Cloud, or Software Development, learning Unix/Linux commands is the first and most important step.
This guide explains commands in a step-by-step way, so even a complete beginner can follow along and practice.
๐งญ Step 1: Open Terminal
On Linux/Mac → Open Terminal
On Windows → Use Git Bash / WSL
๐ Section 1: File & Folder Basics (Start Here)
๐น 1. Check Current Location
pwd๐ Output:
/home/user✔️ This shows where you are currently working.
๐น 2. List Files
ls๐ Shows all files in current folder
ls -l๐ Detailed view (size, permissions)
๐น 3. Create a Folder
mkdir project๐ Now check:
ls๐น 4. Go Inside Folder
cd project๐ Verify:
pwd๐น 5. Create a File
touch app.txt๐ Check:
ls๐ Section 2: Working with Files
๐น 6. Add Content to File
echo "Hello DevOps" > app.txt๐น 7. View File Content
cat app.txt๐น 8. Edit File
vi app.txt๐ Press:
i→ insert modeEdit text
ESC→:wq→ save & exit
๐น 9. Copy File
cp app.txt backup.txt๐น 10. Rename File
mv backup.txt newbackup.txt๐น 11. Delete File
rm newbackup.txt๐ Section 3: Searching & Logs
๐น 12. Search Text in File
grep "Hello" app.txt๐น 13. Find Files
find . -name "*.txt"๐น 14. View Logs Live (Very Important)
tail -f app.txt๐ Used in real-time debugging
⚙️ Section 4: System Monitoring
๐น 15. Check Running Processes
ps aux๐น 16. Monitor System
top๐ Shows:
CPU usage
Memory usage
๐น 17. Kill Process
kill 1234๐น 18. Check Memory
free -m๐น 19. Check Disk
df -h๐ Section 5: Networking
๐น 20. Test Internet
ping google.com๐น 21. Call API
curl https://api.github.com๐น 22. Download File
wget https://example.com/file.zip๐ฆ Section 6: Compression
๐น 23. Create Archive
tar -cvf files.tar project/๐น 24. Extract Archive
tar -xvf files.tar๐ Section 7: Permissions
๐น 25. Change Permissions
chmod 755 app.txt๐น 26. Change Owner
chown user app.txt๐ Real Beginner Practice (Do This Step-by-Step)
mkdir demo
cd demo
touch test.txt
echo "Learning Unix" > test.txt
cat test.txt
cp test.txt copy.txt
ls
rm copy.txt๐ If you can do this, you’ve started your DevOps journey ๐
๐ How Beginners Benefit
Understand how servers work
Gain confidence in command line
Prepare for DevOps & Cloud roles
Improve debugging skills
๐ซ Learn with Eduarn.com
At Eduarn.com, we provide:
✅ Retail Training (individual learners)
✅ Corporate Training (teams & companies)
✅ Hands-on DevOps, Cloud, and AI programs
๐ค EduArn LMS Features
AI-based test evaluation
Practical labs
Real-time project scenarios
Beginner-friendly structured learning
๐ Final Thoughts
Start small. Practice daily.
๐ Even 30 minutes of command-line practice can transform your career path into DevOps and Cloud.
๐ก Next Step: Practice these commands daily and try them on your system.
Watch this:
%20%E2%80%93%20Start%20Your%20DevOps%20&%20Cloud%20Journey.png)
No comments:
Post a Comment