<?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: Lucas Vaz</title>
    <description>The latest articles on DEV Community by Lucas Vaz (@lvazmecheng).</description>
    <link>https://dev.to/lvazmecheng</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3846949%2Fbb9b38ff-b274-423c-a23b-48e1dd2cb9c2.png</url>
      <title>DEV Community: Lucas Vaz</title>
      <link>https://dev.to/lvazmecheng</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lvazmecheng"/>
    <language>en</language>
    <item>
      <title>📙 Journal Log no. 1 Linux Unhatched ; My DevSecOps Journey</title>
      <dc:creator>Lucas Vaz</dc:creator>
      <pubDate>Sat, 04 Apr 2026 19:45:19 +0000</pubDate>
      <link>https://dev.to/lvazmecheng/journal-log-no-1-linux-unhatched-my-devsecops-journey-a91</link>
      <guid>https://dev.to/lvazmecheng/journal-log-no-1-linux-unhatched-my-devsecops-journey-a91</guid>
      <description>&lt;p&gt;I graduated with a B.Eng in Mechanical Engineering in 2018, but my career path has always been driven by the logic of systems. After earning my Google IT Automation with Python Professional Certificate, I realized that the most powerful engines today are built in the cloud.&lt;/p&gt;

&lt;p&gt;I am now officially on my journey toward DevSecOps. This log marks the first step to my goal.&lt;/p&gt;

&lt;h1&gt;
  
  
  📙 Journal Log: 2026-04-05
&lt;/h1&gt;

&lt;h2&gt;
  
  
  🎯 Today's Mission
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;Mastering the Fundamentals: Bridging the gap between physical systems thinking and terminal based automation&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🛠️ Environment &amp;amp; Setup
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Machine/OS:&lt;/strong&gt; NDG Virtual Machine (Ubuntu-based)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Current Directory:&lt;/strong&gt; &lt;code&gt;~/home/sysadmin&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  ⌨️ Commands &amp;amp; Flags Learned
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;strong&gt;Command&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Flag/Context&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;What it does&lt;/strong&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;ls&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;-l&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Lists files in long format (essential for checking permissions).&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;chmod&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;+x&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Changes file access levels—the Digital Locksmith.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;chown&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;user:group&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Changes file ownership; critical for system security.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;sudo&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;(Prefix)&lt;/td&gt;
&lt;td&gt;Executes commands with administrative Root privileges.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;grep&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;-i&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Filters output (Case-insensitive search for patterns).&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;ifconfig&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;(No flag)&lt;/td&gt;
&lt;td&gt;Displays network interface configuration and IP addresses.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  📂 System Changes / Configurations
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Practiced user management and security configuration &lt;/span&gt;
&lt;span class="nb"&gt;sudo &lt;/span&gt;passwd &lt;span class="o"&gt;[&lt;/span&gt;username] &lt;span class="c"&gt;# Updated user credentials to secure the environment. &lt;/span&gt;
&lt;span class="nb"&gt;sudo chmod &lt;/span&gt;700 secret_file &lt;span class="c"&gt;# Restricted a file so only the owner can access it.&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  🛑 The "Terminal Wall" (Errors &amp;amp; Fixes)
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;The Error:&lt;/strong&gt; &lt;code&gt;bash: ./script.sh: Permission denied&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Solution:&lt;/strong&gt; In the physical world, you need a key for a control panel. In Linux, you need execution rights. I ran &lt;code&gt;chmod +x script.sh&lt;/code&gt; and the Permission denied error vanished.&lt;/p&gt;




&lt;h2&gt;
  
  
  💡 Linux "Aha!" Moment
&lt;/h2&gt;

&lt;p&gt;I realized that &lt;code&gt;chmod&lt;/code&gt; and &lt;code&gt;chown&lt;/code&gt; are the digital versions of &lt;strong&gt;Safety Protocols&lt;/strong&gt; in Mechanical Engineering. In a factory, only authorized personnel have the key to the machine; in Linux, permissions ensure only the right process or user can touch the engine of the OS.&lt;/p&gt;




&lt;h2&gt;
  
  
  🔗 Related Notes
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Next Milestone:&lt;/strong&gt; Transitioning from &lt;em&gt;Linux Unhatched&lt;/em&gt; to &lt;strong&gt;Cisco Linux Essentials&lt;/strong&gt; to earn my formal completion certificate.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Python Integration:&lt;/strong&gt; Exploring how the &lt;code&gt;subprocess&lt;/code&gt; module can automate the &lt;code&gt;grep&lt;/code&gt; and &lt;code&gt;chmod&lt;/code&gt; tasks I practiced today.&lt;/p&gt;

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