<?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: krishna Sahu</title>
    <description>The latest articles on DEV Community by krishna Sahu (@krishna_sahu_1b509398b99f).</description>
    <link>https://dev.to/krishna_sahu_1b509398b99f</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%2F3594099%2F97986cf1-06d9-4cb2-9821-d2078de385bb.png</url>
      <title>DEV Community: krishna Sahu</title>
      <link>https://dev.to/krishna_sahu_1b509398b99f</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/krishna_sahu_1b509398b99f"/>
    <language>en</language>
    <item>
      <title>LINUX OPERATING SYSTEM</title>
      <dc:creator>krishna Sahu</dc:creator>
      <pubDate>Mon, 03 Nov 2025 13:29:53 +0000</pubDate>
      <link>https://dev.to/krishna_sahu_1b509398b99f/linux-operating-system-3i74</link>
      <guid>https://dev.to/krishna_sahu_1b509398b99f/linux-operating-system-3i74</guid>
      <description>&lt;p&gt;🧠** Basic Linux Practicals**&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Install Linux OS (Ubuntu / RedHat / Kali / CentOS)&lt;/li&gt;
&lt;li&gt;Explore Linux desktop and terminal&lt;/li&gt;
&lt;li&gt;Check OS details using &lt;code&gt;uname&lt;/code&gt;, &lt;code&gt;cat /etc/os-release&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;View current user, hostname, and working directory (&lt;code&gt;whoami&lt;/code&gt;, &lt;code&gt;hostname&lt;/code&gt;, &lt;code&gt;pwd&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Create, rename, copy, move, and delete files using &lt;code&gt;cp&lt;/code&gt;, &lt;code&gt;mv&lt;/code&gt;, &lt;code&gt;rm&lt;/code&gt;, &lt;code&gt;touch&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Manage directories using &lt;code&gt;mkdir&lt;/code&gt;, &lt;code&gt;rmdir&lt;/code&gt;, &lt;code&gt;ls -l&lt;/code&gt;, &lt;code&gt;tree&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Display file content using &lt;code&gt;cat&lt;/code&gt;, &lt;code&gt;less&lt;/code&gt;, &lt;code&gt;head&lt;/code&gt;, &lt;code&gt;tail&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Use &lt;code&gt;man&lt;/code&gt; and &lt;code&gt;help&lt;/code&gt; for command documentation&lt;/li&gt;
&lt;li&gt;Use wildcard characters (&lt;code&gt;*&lt;/code&gt;, &lt;code&gt;?&lt;/code&gt;, &lt;code&gt;[]&lt;/code&gt;) in commands&lt;/li&gt;
&lt;li&gt;Use text editors like &lt;code&gt;nano&lt;/code&gt;, &lt;code&gt;vi&lt;/code&gt;, or &lt;code&gt;vim&lt;/code&gt;
&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  ⚙️ &lt;strong&gt;User and Permission Management Practicals&lt;/strong&gt;
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Create, delete, and modify users using &lt;code&gt;useradd&lt;/code&gt;, &lt;code&gt;userdel&lt;/code&gt;, &lt;code&gt;usermod&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Set and change passwords using &lt;code&gt;passwd&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Manage groups with &lt;code&gt;groupadd&lt;/code&gt;, &lt;code&gt;groupdel&lt;/code&gt;, &lt;code&gt;gpasswd&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Check user details in &lt;code&gt;/etc/passwd&lt;/code&gt; and &lt;code&gt;/etc/group&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Manage file permissions using &lt;code&gt;chmod&lt;/code&gt;, &lt;code&gt;chown&lt;/code&gt;, &lt;code&gt;chgrp&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Understand permission bits (rwx, 777, 755, 644, etc.)&lt;/li&gt;
&lt;li&gt;Set special permissions — SUID, SGID, Sticky Bit&lt;/li&gt;
&lt;li&gt;Practice ownership and access control examples&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  🌐 &lt;strong&gt;Networking Practicals&lt;/strong&gt;
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Check and configure IP addresses using &lt;code&gt;ifconfig&lt;/code&gt;, &lt;code&gt;ip addr&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Test connectivity using &lt;code&gt;ping&lt;/code&gt;, &lt;code&gt;traceroute&lt;/code&gt;, &lt;code&gt;nslookup&lt;/code&gt;, &lt;code&gt;dig&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Edit network configuration files (&lt;code&gt;/etc/network/interfaces&lt;/code&gt;, &lt;code&gt;nmcli&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Configure hostname and DNS&lt;/li&gt;
&lt;li&gt;View open ports using &lt;code&gt;netstat&lt;/code&gt;, &lt;code&gt;ss&lt;/code&gt;, or &lt;code&gt;lsof -i&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Transfer files using &lt;code&gt;scp&lt;/code&gt;, &lt;code&gt;rsync&lt;/code&gt;, and &lt;code&gt;sftp&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Setup and test SSH server (&lt;code&gt;sshd_config&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Configure static and dynamic IP addressing&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  💾 &lt;strong&gt;File System &amp;amp; Process Management&lt;/strong&gt;
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Mount and unmount drives using &lt;code&gt;mount&lt;/code&gt;, &lt;code&gt;umount&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Check disk usage using &lt;code&gt;df&lt;/code&gt;, &lt;code&gt;du&lt;/code&gt;, &lt;code&gt;lsblk&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Manage partitions using &lt;code&gt;fdisk&lt;/code&gt;, &lt;code&gt;parted&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;View running processes using &lt;code&gt;ps&lt;/code&gt;, &lt;code&gt;top&lt;/code&gt;, &lt;code&gt;htop&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Kill or manage processes using &lt;code&gt;kill&lt;/code&gt;, &lt;code&gt;pkill&lt;/code&gt;, &lt;code&gt;nice&lt;/code&gt;, &lt;code&gt;renice&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Schedule tasks using &lt;code&gt;cron&lt;/code&gt; and &lt;code&gt;at&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;View system logs from &lt;code&gt;/var/log&lt;/code&gt; directory&lt;/li&gt;
&lt;li&gt;Backup and compress files using &lt;code&gt;tar&lt;/code&gt;, &lt;code&gt;gzip&lt;/code&gt;, &lt;code&gt;zip&lt;/code&gt;
&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  🔐 &lt;strong&gt;Security &amp;amp; Administration&lt;/strong&gt;
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Configure sudo privileges (&lt;code&gt;/etc/sudoers&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Monitor system performance using &lt;code&gt;vmstat&lt;/code&gt;, &lt;code&gt;free&lt;/code&gt;, &lt;code&gt;uptime&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Check system boot logs using &lt;code&gt;dmesg&lt;/code&gt;, &lt;code&gt;journalctl&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Configure and manage firewall using &lt;code&gt;ufw&lt;/code&gt; or &lt;code&gt;firewalld&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Configure SELinux or AppArmor (RedHat-based)&lt;/li&gt;
&lt;li&gt;Manage system services with &lt;code&gt;systemctl&lt;/code&gt; and &lt;code&gt;service&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Enable/disable automatic updates&lt;/li&gt;
&lt;li&gt;Lock/unlock user accounts&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  🧩 &lt;strong&gt;Server &amp;amp; Advanced Practicals&lt;/strong&gt;
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Configure Apache/Nginx web server&lt;/li&gt;
&lt;li&gt;Setup and secure SSH, FTP, and Samba servers&lt;/li&gt;
&lt;li&gt;Install and manage MySQL/MariaDB databases&lt;/li&gt;
&lt;li&gt;Setup DNS (BIND9) or DHCP server&lt;/li&gt;
&lt;li&gt;Manage user quotas and shared directories&lt;/li&gt;
&lt;li&gt;Configure NFS or SAMBA file sharing&lt;/li&gt;
&lt;li&gt;Monitor system with &lt;code&gt;top&lt;/code&gt;, &lt;code&gt;iotop&lt;/code&gt;, &lt;code&gt;netstat&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Create and restore system backups using &lt;code&gt;rsync&lt;/code&gt; or &lt;code&gt;tar&lt;/code&gt;
&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>linux</category>
      <category>ios</category>
      <category>kernel</category>
      <category>ubuntu</category>
    </item>
    <item>
      <title>jetking practicles lists</title>
      <dc:creator>krishna Sahu</dc:creator>
      <pubDate>Mon, 03 Nov 2025 13:03:16 +0000</pubDate>
      <link>https://dev.to/krishna_sahu_1b509398b99f/jetking-practicles-lists-e47</link>
      <guid>https://dev.to/krishna_sahu_1b509398b99f/jetking-practicles-lists-e47</guid>
      <description>&lt;p&gt;Windows practicals lists&lt;/p&gt;




&lt;h2&gt;
  
  
  🧠 &lt;strong&gt;Basic Windows Practicals&lt;/strong&gt;
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Install Windows OS (Windows 10 / 11 / Server)&lt;/li&gt;
&lt;li&gt;Explore Windows Desktop, Taskbar, and Start Menu&lt;/li&gt;
&lt;li&gt;Manage files and folders using &lt;strong&gt;File Explorer&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Create, rename, copy, move, and delete files/folders&lt;/li&gt;
&lt;li&gt;Use &lt;strong&gt;Control Panel&lt;/strong&gt; and &lt;strong&gt;Settings&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Check &lt;strong&gt;system information&lt;/strong&gt; (CPU, RAM, OS version)&lt;/li&gt;
&lt;li&gt;Change &lt;strong&gt;date, time, and region&lt;/strong&gt; settings&lt;/li&gt;
&lt;li&gt;Manage &lt;strong&gt;user accounts&lt;/strong&gt; (create, delete, rename users)&lt;/li&gt;
&lt;li&gt;Change &lt;strong&gt;passwords&lt;/strong&gt; and set &lt;strong&gt;password policies&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Configure &lt;strong&gt;desktop personalization&lt;/strong&gt; (wallpaper, themes, screensaver)&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  ⚙️ &lt;strong&gt;Command Line (CMD &amp;amp; PowerShell) Practicals&lt;/strong&gt;
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Basic CMD commands: &lt;code&gt;dir&lt;/code&gt;, &lt;code&gt;cd&lt;/code&gt;, &lt;code&gt;copy&lt;/code&gt;, &lt;code&gt;move&lt;/code&gt;, &lt;code&gt;del&lt;/code&gt;, &lt;code&gt;mkdir&lt;/code&gt;, &lt;code&gt;rmdir&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;System commands: &lt;code&gt;hostname&lt;/code&gt;, &lt;code&gt;ipconfig&lt;/code&gt;, &lt;code&gt;ping&lt;/code&gt;, &lt;code&gt;systeminfo&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Manage users: &lt;code&gt;net user&lt;/code&gt;, &lt;code&gt;net localgroup&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Check and kill tasks: &lt;code&gt;tasklist&lt;/code&gt;, &lt;code&gt;taskkill&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;View and manage services: &lt;code&gt;services.msc&lt;/code&gt; or &lt;code&gt;Get-Service&lt;/code&gt; in PowerShell&lt;/li&gt;
&lt;li&gt;Execute &lt;strong&gt;PowerShell scripts&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Configure environment variables&lt;/li&gt;
&lt;li&gt;Check system performance using &lt;code&gt;perfmon&lt;/code&gt; and &lt;code&gt;resmon&lt;/code&gt;
&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  🌐 &lt;strong&gt;Networking Practicals&lt;/strong&gt;
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Configure &lt;strong&gt;IP address manually&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Test &lt;strong&gt;network connectivity&lt;/strong&gt; using &lt;code&gt;ping&lt;/code&gt;, &lt;code&gt;tracert&lt;/code&gt;, &lt;code&gt;nslookup&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Share a folder and access it from another computer&lt;/li&gt;
&lt;li&gt;Map a &lt;strong&gt;network drive&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Enable and disable &lt;strong&gt;Windows Firewall&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Configure &lt;strong&gt;Remote Desktop&lt;/strong&gt; connection&lt;/li&gt;
&lt;li&gt;Use &lt;strong&gt;netstat&lt;/strong&gt; to view active connections&lt;/li&gt;
&lt;li&gt;Create and test a &lt;strong&gt;HomeGroup&lt;/strong&gt; or &lt;strong&gt;Workgroup&lt;/strong&gt;
&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  🔐 &lt;strong&gt;Security &amp;amp; Administration Practicals&lt;/strong&gt;
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Manage &lt;strong&gt;local users and groups&lt;/strong&gt; (&lt;code&gt;lusrmgr.msc&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Set &lt;strong&gt;NTFS permissions&lt;/strong&gt; (read, write, modify)&lt;/li&gt;
&lt;li&gt;Configure &lt;strong&gt;file/folder sharing permissions&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Apply &lt;strong&gt;Group Policy&lt;/strong&gt; using &lt;code&gt;gpedit.msc&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Enable/disable &lt;strong&gt;services&lt;/strong&gt; using &lt;code&gt;services.msc&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Manage &lt;strong&gt;Windows updates&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Use &lt;strong&gt;Event Viewer&lt;/strong&gt; to monitor system logs&lt;/li&gt;
&lt;li&gt;Configure &lt;strong&gt;Windows Defender&lt;/strong&gt; and perform a scan&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  🧩 &lt;strong&gt;Advanced / Server Practicals&lt;/strong&gt;
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Install &lt;strong&gt;Active Directory Domain Services&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Create and manage &lt;strong&gt;domain users and groups&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Configure &lt;strong&gt;DNS and DHCP&lt;/strong&gt; roles&lt;/li&gt;
&lt;li&gt;Join a client to a &lt;strong&gt;domain&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Set &lt;strong&gt;Group Policy Objects (GPOs)&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Configure &lt;strong&gt;File Server&lt;/strong&gt; and &lt;strong&gt;Disk Quotas&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Manage &lt;strong&gt;Windows Backup &amp;amp; Restore&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Monitor system performance with &lt;strong&gt;Performance Monitor&lt;/strong&gt;
&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>programming</category>
      <category>webdev</category>
      <category>security</category>
    </item>
  </channel>
</rss>
