<?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: Jagannath Ghantenavar</title>
    <description>The latest articles on DEV Community by Jagannath Ghantenavar (@jagannath_ghantenavar_3e9).</description>
    <link>https://dev.to/jagannath_ghantenavar_3e9</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%2F1621296%2F1d6ed102-e2a1-43b2-9d8b-41b1bfbe8e78.png</url>
      <title>DEV Community: Jagannath Ghantenavar</title>
      <link>https://dev.to/jagannath_ghantenavar_3e9</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jagannath_ghantenavar_3e9"/>
    <language>en</language>
    <item>
      <title>Controlling File and Directory Permissions in Linux | Day 3</title>
      <dc:creator>Jagannath Ghantenavar</dc:creator>
      <pubDate>Wed, 07 Aug 2024 15:13:27 +0000</pubDate>
      <link>https://dev.to/jagannath_ghantenavar_3e9/controlling-file-and-directory-permissions-in-linux-day-3-3a09</link>
      <guid>https://dev.to/jagannath_ghantenavar_3e9/controlling-file-and-directory-permissions-in-linux-day-3-3a09</guid>
      <description>&lt;p&gt;Linux permissions are categorized into three types: &lt;br&gt;
&lt;strong&gt;read (r), &lt;br&gt;
write (w), &lt;br&gt;
execute (x).&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;Each file or directory has three levels of permissions: user, group, and everyone, which define who can do what with the file. ( -rw-rw-r-- this indicates -user-group-everyone-- what access dose the particular level has for that file or Dir.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;To modify these permissions, the chmod command is used. For example, to grant execute permissions to a file or directory, the command &lt;strong&gt;chmod +x filename&lt;/strong&gt; is used.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Similarly, to remove permissions, the chmod command can be used with a - sign. For instance, &lt;strong&gt;chmod -w filename&lt;/strong&gt; would remove write permissions from a file, preventing it from being altered.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>linux</category>
      <category>basic</category>
      <category>learning</category>
    </item>
    <item>
      <title>A Quick Dive into the Basics | Linix | DAY 2</title>
      <dc:creator>Jagannath Ghantenavar</dc:creator>
      <pubDate>Mon, 05 Aug 2024 06:19:53 +0000</pubDate>
      <link>https://dev.to/jagannath_ghantenavar_3e9/a-quick-dive-into-the-basics-linix-day-2-j9</link>
      <guid>https://dev.to/jagannath_ghantenavar_3e9/a-quick-dive-into-the-basics-linix-day-2-j9</guid>
      <description>&lt;p&gt;This weekend, I decided to spend some time sharpening my Linux command-line skills. There's something satisfying about getting comfortable with the basics, and it helps build a strong foundation for more advanced tasks. Here’s a quick recap of what I practiced:&lt;/p&gt;

&lt;p&gt;Displaying the Date and Time&lt;br&gt;
The first command I explored was the date command. It’s straightforward but essential for checking the current date and time.&lt;/p&gt;

&lt;p&gt;To simply display the current date and time:&lt;br&gt;
$ date&lt;br&gt;
If you need the time in GMT/UTC:&lt;br&gt;
$ date -u&lt;/p&gt;

&lt;p&gt;This command is particularly handy when working with servers across different time zones.&lt;/p&gt;

&lt;p&gt;Echoing Text with Quotes&lt;br&gt;
Next up was the echo command, which is used to print text to the terminal. It’s often used in scripts to display messages or output variables.&lt;/p&gt;

&lt;p&gt;Using double quotes to print a simple message:&lt;br&gt;
$ echo "Hello World"&lt;/p&gt;

&lt;p&gt;It’s a simple command, but understanding how to use quotes can be important, especially when working with strings that contain spaces or special characters.&lt;/p&gt;

&lt;p&gt;Listing Directory Contents with ls&lt;br&gt;
The ls command is one of the most frequently used in Linux. It lists the contents of a directory and comes with several useful options.&lt;/p&gt;

&lt;p&gt;To list files and directories in the current directory:&lt;br&gt;
$ ls&lt;br&gt;
For a more detailed list, showing file permissions, ownership, and size:&lt;br&gt;
$ ls -l&lt;br&gt;
To list files with sizes in a human-readable format (like KB, MB):&lt;br&gt;
$ ls -lh&lt;/p&gt;

&lt;p&gt;Practicing these commands reinforced my understanding of basic file and system management in Linux. It was a productive weekend, and these small exercises reminded me of the power and simplicity of the command line. I’m looking forward to diving deeper into more complex commands and scripting in the coming weeks!&lt;/p&gt;

</description>
      <category>linux</category>
      <category>basic</category>
      <category>beginners</category>
      <category>learning</category>
    </item>
    <item>
      <title>To Reverse a string with out using for loop in python. | DAY 1</title>
      <dc:creator>Jagannath Ghantenavar</dc:creator>
      <pubDate>Tue, 30 Jul 2024 17:38:14 +0000</pubDate>
      <link>https://dev.to/jagannath_ghantenavar_3e9/to-reverse-a-string-with-out-using-for-loop-in-python-day-1-519a</link>
      <guid>https://dev.to/jagannath_ghantenavar_3e9/to-reverse-a-string-with-out-using-for-loop-in-python-day-1-519a</guid>
      <description>&lt;p&gt;&lt;strong&gt;a = 'Dev.to'&lt;br&gt;
a[::-1]&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Explanation : &lt;/p&gt;

&lt;p&gt;[start index : end index : step parameter ] &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The first colon : indicates the start index (default is the beginning of the sequence).&lt;/li&gt;
&lt;li&gt;The second colon : indicates the end index (default is the end of the sequence).&lt;/li&gt;
&lt;li&gt;The third colon : indicates the step parameter, which means the sequence should be traversed in steps of -1 (i.e., in reverse)..&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>python</category>
      <category>learning</category>
    </item>
  </channel>
</rss>
