<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Arpit Mungone </title>
    <description>The latest articles on DEV Community by Arpit Mungone  (@arpit_mungone_0107).</description>
    <link>https://dev.to/arpit_mungone_0107</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3995276%2Ff00ee49b-11d3-461e-bf36-c357a43a00fd.jpg</url>
      <title>DEV Community: Arpit Mungone </title>
      <link>https://dev.to/arpit_mungone_0107</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/arpit_mungone_0107"/>
    <language>en</language>
    <item>
      <title>Learning Linux from Scratch: My First Week in DevOps</title>
      <dc:creator>Arpit Mungone </dc:creator>
      <pubDate>Mon, 22 Jun 2026 11:17:20 +0000</pubDate>
      <link>https://dev.to/arpit_mungone_0107/learning-linux-from-scratch-my-first-week-in-devops-2of2</link>
      <guid>https://dev.to/arpit_mungone_0107/learning-linux-from-scratch-my-first-week-in-devops-2of2</guid>
      <description>&lt;h1&gt;
  
  
  🚀 Week 1 of My DevOps Journey: Learning Linux Fundamentals and Essential Commands
&lt;/h1&gt;

&lt;p&gt;Hello everyone! 👋&lt;/p&gt;

&lt;p&gt;Welcome to Week 1 of my DevOps learning journey.&lt;/p&gt;

&lt;p&gt;As a final-year BCA student specializing in Cloud Computing, I have decided to document my journey toward becoming a DevOps Engineer. This blog series will cover everything I learn, from Linux fundamentals to cloud computing, containers, CI/CD, Kubernetes, and monitoring tools.&lt;/p&gt;

&lt;p&gt;Since Linux is the backbone of most DevOps environments, I decided to start my journey by learning Linux fundamentals and essential commands.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Linux Matters in DevOps
&lt;/h2&gt;

&lt;p&gt;Most servers in cloud environments run Linux. Whether you're working with AWS EC2 instances, Docker containers, Kubernetes clusters, or CI/CD pipelines, Linux knowledge is essential.&lt;/p&gt;

&lt;p&gt;As a DevOps Engineer, you'll frequently:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Manage Linux servers&lt;/li&gt;
&lt;li&gt;Deploy applications&lt;/li&gt;
&lt;li&gt;Troubleshoot issues&lt;/li&gt;
&lt;li&gt;Monitor system performance&lt;/li&gt;
&lt;li&gt;Automate tasks using shell scripts&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's why Linux is often considered the first skill every DevOps engineer should master.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Learned This Week
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Understanding the Linux File System
&lt;/h3&gt;

&lt;p&gt;One of the first things I learned was how Linux organizes files and directories.&lt;/p&gt;

&lt;p&gt;Some important directories include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;/&lt;/code&gt; – Root directory&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;/home&lt;/code&gt; – User home directories&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;/etc&lt;/code&gt; – Configuration files&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;/var&lt;/code&gt; – Logs and variable data&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;/tmp&lt;/code&gt; – Temporary files&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;/usr&lt;/code&gt; – User programs and utilities&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Understanding the file system structure helps navigate servers more effectively.&lt;/p&gt;

&lt;h3&gt;
  
  
  Basic Navigation Commands
&lt;/h3&gt;

&lt;p&gt;I practiced several commands used daily by Linux administrators.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Check Current Directory&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;pwd&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;List Files and Directories&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;ls
ls&lt;/span&gt; &lt;span class="nt"&gt;-l&lt;/span&gt;
&lt;span class="nb"&gt;ls&lt;/span&gt; &lt;span class="nt"&gt;-la&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Change Directory&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cd&lt;/span&gt; /home
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Create Directory&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;mkdir &lt;/span&gt;project
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Remove Directory&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;rmdir &lt;/span&gt;project
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  File Management Commands
&lt;/h3&gt;

&lt;p&gt;Working with files is a common task in Linux.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Create a File&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;touch &lt;/span&gt;file.txt
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Copy Files&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cp &lt;/span&gt;file.txt backup.txt
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Move Files&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;mv &lt;/span&gt;file.txt documents/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Delete Files&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;rm &lt;/span&gt;file.txt
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;View File Content&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cat &lt;/span&gt;file.txt
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Viewing System Information
&lt;/h3&gt;

&lt;p&gt;I also learned how to check system details.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Check CPU Information&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;lscpu
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Check Memory Usage&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;free &lt;span class="nt"&gt;-h&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Check Disk Usage&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;df&lt;/span&gt; &lt;span class="nt"&gt;-h&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Check Running Processes&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;ps &lt;span class="nt"&gt;-ef&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Monitor Processes in Real Time&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;top
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Understanding Permissions
&lt;/h3&gt;

&lt;p&gt;Linux uses permissions to control access to files and directories.&lt;/p&gt;

&lt;p&gt;I learned about:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Read (r)&lt;/li&gt;
&lt;li&gt;Write (w)&lt;/li&gt;
&lt;li&gt;Execute (x)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Viewing permissions:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;ls&lt;/span&gt; &lt;span class="nt"&gt;-l&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Changing permissions:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;chmod &lt;/span&gt;755 script.sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Changing ownership:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;chown &lt;/span&gt;user:user file.txt
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Permissions are critical for maintaining system security.&lt;/p&gt;

&lt;h3&gt;
  
  
  Service Management
&lt;/h3&gt;

&lt;p&gt;One interesting topic was managing services using systemctl.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Check Service Status&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;systemctl status nginx
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Start a Service&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;systemctl start nginx
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Stop a Service&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;systemctl stop nginx
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Restart a Service&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;systemctl restart nginx
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This is especially useful when managing web servers and applications.&lt;/p&gt;

&lt;h3&gt;
  
  
  Viewing Logs
&lt;/h3&gt;

&lt;p&gt;Logs help identify issues and troubleshoot systems.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;tail&lt;/span&gt; &lt;span class="nt"&gt;-f&lt;/span&gt; /var/log/messages
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;journalctl &lt;span class="nt"&gt;-xe&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Understanding logs is one of the most important skills for troubleshooting production systems.&lt;/p&gt;

&lt;h3&gt;
  
  
  My First Bash Script
&lt;/h3&gt;

&lt;p&gt;I wrote a simple script to check whether Nginx is running.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;#!/bin/bash&lt;/span&gt;

&lt;span class="k"&gt;if &lt;/span&gt;systemctl is-active &lt;span class="nt"&gt;--quiet&lt;/span&gt; nginx
&lt;span class="k"&gt;then
    &lt;/span&gt;&lt;span class="nb"&gt;echo&lt;/span&gt; &lt;span class="s2"&gt;"Nginx is running"&lt;/span&gt;
&lt;span class="k"&gt;else
    &lt;/span&gt;&lt;span class="nb"&gt;echo&lt;/span&gt; &lt;span class="s2"&gt;"Nginx is not running"&lt;/span&gt;
&lt;span class="k"&gt;fi&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This helped me understand:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;if-else conditions&lt;/li&gt;
&lt;li&gt;shell scripting basics&lt;/li&gt;
&lt;li&gt;automation concepts&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It was my first step toward infrastructure automation.&lt;/p&gt;

&lt;h2&gt;
  
  
  Challenges I Faced
&lt;/h2&gt;

&lt;p&gt;During my learning, I encountered a few challenges:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Understanding Linux permissions&lt;/li&gt;
&lt;li&gt;Navigating directories quickly&lt;/li&gt;
&lt;li&gt;Reading system logs&lt;/li&gt;
&lt;li&gt;Writing Bash scripts correctly&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;After practicing commands repeatedly and experimenting on AWS EC2 instances, these concepts became much clearer.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Takeaways
&lt;/h2&gt;

&lt;p&gt;This week taught me that Linux is much more than just a command-line operating system.&lt;/p&gt;

&lt;p&gt;I learned:&lt;/p&gt;

&lt;p&gt;✅ Linux file system structure&lt;/p&gt;

&lt;p&gt;✅ Essential Linux commands&lt;/p&gt;

&lt;p&gt;✅ File and directory management&lt;/p&gt;

&lt;p&gt;✅ System monitoring basics&lt;/p&gt;

&lt;p&gt;✅ Service management&lt;/p&gt;

&lt;p&gt;✅ Log analysis&lt;/p&gt;

&lt;p&gt;✅ Bash scripting fundamentals&lt;/p&gt;

&lt;p&gt;Most importantly, I realized that strong Linux fundamentals make learning DevOps tools much easier.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Next?
&lt;/h2&gt;

&lt;p&gt;In Week 2, I plan to learn:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Advanced Linux Commands&lt;/li&gt;
&lt;li&gt;User and Group Management&lt;/li&gt;
&lt;li&gt;Networking Basics&lt;/li&gt;
&lt;li&gt;SSH and Remote Access&lt;/li&gt;
&lt;li&gt;Package Management&lt;/li&gt;
&lt;li&gt;More Bash Scripting&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;Every DevOps Engineer starts somewhere, and Linux is the perfect place to begin.&lt;/p&gt;

&lt;p&gt;This week gave me a solid foundation and increased my confidence in working with servers and cloud environments. I'm excited to continue learning and sharing my progress through this blog series.&lt;/p&gt;

&lt;p&gt;If you're also starting your DevOps journey, feel free to connect and share your experiences.&lt;/p&gt;

&lt;p&gt;See you in Week 2! 🚀&lt;/p&gt;

&lt;h1&gt;
  
  
  linux #devops #aws #cloudcomputing #bash #opensource #learninginpublic #career
&lt;/h1&gt;

</description>
      <category>beginners</category>
      <category>devjournal</category>
      <category>devops</category>
      <category>linux</category>
    </item>
  </channel>
</rss>
