<?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: tShan</title>
    <description>The latest articles on DEV Community by tShan (@mrthaas).</description>
    <link>https://dev.to/mrthaas</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%2F1003153%2Fc86b925b-87f5-40cc-b86e-f39c346f21a9.png</url>
      <title>DEV Community: tShan</title>
      <link>https://dev.to/mrthaas</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mrthaas"/>
    <language>en</language>
    <item>
      <title>Docker installation on Linux and practice</title>
      <dc:creator>tShan</dc:creator>
      <pubDate>Wed, 15 Feb 2023 17:52:06 +0000</pubDate>
      <link>https://dev.to/mrthaas/docker-installation-on-linux-and-practice-3b2j</link>
      <guid>https://dev.to/mrthaas/docker-installation-on-linux-and-practice-3b2j</guid>
      <description>&lt;p&gt;$ sudo apt-get update&lt;/p&gt;

&lt;p&gt;$ sudo apt install docker.io&lt;/p&gt;

&lt;p&gt;(asking you to choose between y/n - choose y)&lt;/p&gt;

&lt;p&gt;$ docker --version&lt;br&gt;
to check the verstion&lt;/p&gt;

&lt;p&gt;Pull an image from the Docker hub using the following command:&lt;br&gt;
$ sudo docker run hello-world&lt;/p&gt;

&lt;p&gt;$ docker images&lt;br&gt;
to see a list of all images on your system.&lt;/p&gt;

&lt;p&gt;$ docker run busybox&lt;br&gt;
run a Docker container based on this image docker&lt;/p&gt;

&lt;p&gt;$ docker run busybox echo "hello from busybox"&lt;br&gt;
Docker client dutifully ran the echo command in our busybox container and then exited it&lt;/p&gt;

&lt;p&gt;$ docker ps&lt;br&gt;
The docker ps command shows you all containers that are currently running.&lt;/p&gt;

&lt;p&gt;$ docker ps -a&lt;br&gt;
list of all containers that we ran&lt;/p&gt;

&lt;p&gt;$ docker rm 305297d7a235 ff0a5c3750b9&lt;br&gt;
clean up containers once I'm done with them&lt;/p&gt;

&lt;p&gt;$ docker rm $(docker ps -a -q -f status=exited)&lt;br&gt;
This command deletes all containers that have a status of exited&lt;/p&gt;

&lt;p&gt;$ docker container prune&lt;br&gt;
This will remove all stopped containers&lt;/p&gt;

</description>
      <category>watercooler</category>
    </item>
    <item>
      <title>Here's a list of some commonly used Linux commands:</title>
      <dc:creator>tShan</dc:creator>
      <pubDate>Mon, 13 Feb 2023 02:58:10 +0000</pubDate>
      <link>https://dev.to/mrthaas/heres-a-list-of-some-commonly-used-linux-commands-34gc</link>
      <guid>https://dev.to/mrthaas/heres-a-list-of-some-commonly-used-linux-commands-34gc</guid>
      <description>&lt;p&gt;Here's a list of some commonly used Linux commands:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ls - list the contents of a directory
cd - change the current working directory
pwd - print the current working directory
mkdir - create a new directory
rmdir - remove an empty directory
touch - create a new empty file
cat - concatenate and print the contents of files
echo - display a message or the contents of a variable
cp - copy files or directories
mv - move or rename files or directories
rm - remove files or directories
chmod - change the permissions of files or directories
chown - change the owner of a file or directory
man - display the manual page for a command
df - display disk usage information
du - estimate the disk space used by a file or directory
top - display information about the running processes
ps - display information about the currently running processes
kill - terminate a process
sudo - run a command with superuser privileges
apt-get - package manager for Debian-based systems
yum - package manager for Red Hat-based systems
pacman - package manager for Arch-based systems
ln - create a symbolic link
find - search for files that match specified criteria
grep - search for patterns in text files
sort - sort the contents of a file
uniq - remove duplicate lines from a file
wc - count the number of lines, words, or characters in a file
tar - create or extract compressed archive files
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;This is by no means an exhaustive list, but it should give you a good starting point for exploring the world of Linux commands.&lt;/p&gt;

</description>
      <category>welcome</category>
      <category>watercooler</category>
      <category>community</category>
    </item>
    <item>
      <title>Installing Apache Web Server</title>
      <dc:creator>tShan</dc:creator>
      <pubDate>Thu, 12 Jan 2023 02:33:10 +0000</pubDate>
      <link>https://dev.to/mrthaas/installing-apache-web-server-4glb</link>
      <guid>https://dev.to/mrthaas/installing-apache-web-server-4glb</guid>
      <description>&lt;p&gt;Installing Apache Web Server on Linux Mint&lt;/p&gt;

&lt;p&gt;to check the update&lt;br&gt;
$ sudo apt-get update&lt;/p&gt;

&lt;p&gt;this command to install Apache.&lt;br&gt;
$ sudo apt-get install apache2 apache2-utils&lt;/p&gt;

&lt;p&gt;The following commands will cause Apache to start when the server starts-up and start the service for the first time:&lt;br&gt;
$ sudo systemctl enable apache2&lt;br&gt;
$ sudo systemctl start apache2&lt;/p&gt;

&lt;p&gt;Verify Apache Service Status on your Linux&lt;/p&gt;

&lt;p&gt;$ hostname -i  (give you the ip address)&lt;/p&gt;

&lt;p&gt;enter the ip address in the web browser&lt;/p&gt;

&lt;p&gt;"Ubuntu Logo Apache2 Ubuntu Default Page"&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Installing LibreOffice Linux Mint</title>
      <dc:creator>tShan</dc:creator>
      <pubDate>Thu, 12 Jan 2023 01:40:01 +0000</pubDate>
      <link>https://dev.to/mrthaas/installing-libreoffice-linux-mint-30f6</link>
      <guid>https://dev.to/mrthaas/installing-libreoffice-linux-mint-30f6</guid>
      <description>&lt;p&gt;Installing LibreOffice Linux Mint &lt;/p&gt;

&lt;p&gt;$ sudo apt update&lt;br&gt;
enter the password&lt;/p&gt;

&lt;p&gt;$ sudo apt install libreoffice&lt;br&gt;
press "Y" to continue installing LibreOffice&lt;/p&gt;

&lt;p&gt;$ libreoffice --version&lt;br&gt;
to check the installed version&lt;/p&gt;

</description>
      <category>cloud</category>
      <category>cloudcomputing</category>
      <category>discuss</category>
      <category>virtualmachine</category>
    </item>
    <item>
      <title>User commands of linux</title>
      <dc:creator>tShan</dc:creator>
      <pubDate>Mon, 09 Jan 2023 13:57:34 +0000</pubDate>
      <link>https://dev.to/mrthaas/user-commands-of-linux-8kl</link>
      <guid>https://dev.to/mrthaas/user-commands-of-linux-8kl</guid>
      <description>&lt;p&gt;sudo adduser username&lt;br&gt;&lt;br&gt;
To add a new user&lt;/p&gt;

&lt;p&gt;sudo passwd -l 'username'&lt;br&gt;&lt;br&gt;
To change the password of a user&lt;/p&gt;

&lt;p&gt;sudo userdel -r 'username'&lt;br&gt;&lt;br&gt;
To remove a newly created user&lt;/p&gt;

&lt;p&gt;sudo usermod -a -G GROUPNAME USERNAME&lt;br&gt;&lt;br&gt;
To add a user to a group&lt;/p&gt;

&lt;p&gt;sudo deluser USER GROUPNAME &lt;br&gt;
To remove a user from a group&lt;/p&gt;

</description>
    </item>
    <item>
      <title>File Permission commands</title>
      <dc:creator>tShan</dc:creator>
      <pubDate>Mon, 09 Jan 2023 13:55:51 +0000</pubDate>
      <link>https://dev.to/mrthaas/file-permission-commands-369n</link>
      <guid>https://dev.to/mrthaas/file-permission-commands-369n</guid>
      <description>&lt;p&gt;ls -l   to show file type and access permission&lt;br&gt;
r   read permission&lt;br&gt;
w   write permission&lt;br&gt;
x   execute permission&lt;br&gt;
-=  no permission&lt;br&gt;
Chown user  For changing the ownership of a file/directory&lt;br&gt;
Chown user:group filename   change the user as well as group for a file or directory&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Linux Commands and description for practice</title>
      <dc:creator>tShan</dc:creator>
      <pubDate>Mon, 09 Jan 2023 13:52:28 +0000</pubDate>
      <link>https://dev.to/mrthaas/linux-commands-and-description-for-practice-3noi</link>
      <guid>https://dev.to/mrthaas/linux-commands-and-description-for-practice-3noi</guid>
      <description>&lt;p&gt;ls&lt;br&gt;
Lists all files and directories in the present working directory&lt;/p&gt;

&lt;p&gt;ls -R&lt;br&gt;&lt;br&gt;
Lists files in sub-directories as well&lt;/p&gt;

&lt;p&gt;ls -a&lt;br&gt;&lt;br&gt;
Lists hidden files as well&lt;/p&gt;

&lt;p&gt;ls -al&lt;br&gt;&lt;br&gt;
Lists files and directories with detailed information like permissions,size, owner, etc.&lt;/p&gt;

&lt;p&gt;cd  or cd ~ &lt;br&gt;
Navigate to HOME directory&lt;/p&gt;

&lt;p&gt;cd ..&lt;br&gt;&lt;br&gt;
Move one level up&lt;/p&gt;

&lt;p&gt;cd /&lt;br&gt;&lt;br&gt;
Move to the root directory&lt;/p&gt;

&lt;p&gt;cat &amp;gt; filename&lt;br&gt;&lt;br&gt;
Creates a new file&lt;/p&gt;

&lt;p&gt;cat filename&lt;br&gt;&lt;br&gt;
Displays the file content&lt;/p&gt;

&lt;p&gt;cat file1 file2 &amp;gt; file3 &lt;br&gt;
Joins two files (file1, file2) and stores the output in a new file (file3)&lt;/p&gt;

&lt;p&gt;sudo&lt;br&gt;&lt;br&gt;
Allows regular users to run programs with the security privileges of the superuser or root&lt;/p&gt;

&lt;p&gt;rm filename &lt;br&gt;
Deletes a file&lt;/p&gt;

&lt;p&gt;man &lt;br&gt;
Gives help information on a command&lt;/p&gt;

&lt;p&gt;history &lt;br&gt;
Gives a list of all past commands typed in the current terminal session&lt;/p&gt;

&lt;p&gt;clear&lt;br&gt;&lt;br&gt;
Clears the terminal&lt;/p&gt;

&lt;p&gt;mkdir directoryname &lt;br&gt;
Creates a new directory in the present working directory or a at the specified path&lt;/p&gt;

&lt;p&gt;rmdir   Deletes a directory&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Writing a Great Post Title</title>
      <dc:creator>tShan</dc:creator>
      <pubDate>Fri, 06 Jan 2023 18:14:34 +0000</pubDate>
      <link>https://dev.to/mrthaas/writing-a-great-post-title-3453</link>
      <guid>https://dev.to/mrthaas/writing-a-great-post-title-3453</guid>
      <description></description>
      <category>ai</category>
      <category>career</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
