<?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>Debug School: Nityanand kumar</title>
    <description>The latest articles on Debug School by Nityanand kumar (@nityanand32_864).</description>
    <link>https://www.debug.school/nityanand32_864</link>
    <image>
      <url>https://www.debug.school/images/6JPpGL3WJdldpQLrwRmkVg9sy063q83v5sbb0_soYo4/rs:fill:90:90/g:sm/mb:500000/ar:1/aHR0cHM6Ly93d3cu/ZGVidWcuc2Nob29s/L3VwbG9hZHMvdXNl/ci9wcm9maWxlX2lt/YWdlLzIxMi9lNzc2/Y2EyNy03NmI4LTQx/YzktYTdhMS1iZjVj/YzRhMTNiOGEucG5n</url>
      <title>Debug School: Nityanand kumar</title>
      <link>https://www.debug.school/nityanand32_864</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://www.debug.school/feed/nityanand32_864"/>
    <language>en</language>
    <item>
      <title>Write a Notes on all the git commands which we have learned and one line explaination of it.</title>
      <dc:creator>Nityanand kumar</dc:creator>
      <pubDate>Fri, 18 Nov 2022 07:28:25 +0000</pubDate>
      <link>https://www.debug.school/nityanand32_864/write-a-notes-on-all-the-git-commands-which-we-have-learned-and-one-line-explaination-of-it-3df7</link>
      <guid>https://www.debug.school/nityanand32_864/write-a-notes-on-all-the-git-commands-which-we-have-learned-and-one-line-explaination-of-it-3df7</guid>
      <description>&lt;p&gt;git init:- initializes the git in the folder&lt;br&gt;
git config :- used to config the git user name and email associated&lt;br&gt;
git add file1.txt :- Add file1.txt to &lt;br&gt;
git add . :- Adds a file to the staging area.&lt;br&gt;
git commit -m "commit message" :- Records or snapshots the file permanently in the version history.&lt;br&gt;
git push origin master :- &lt;br&gt;
git pull :- &lt;br&gt;
git branch :- lists all the local branches in the current repository.&lt;br&gt;
git checkout :- This command is used to switch from one branch to another.&lt;br&gt;
git merge :- command merges the specified branch’s history into the current branch.&lt;br&gt;
git clean :- used to remove unwanted files from your working directory&lt;br&gt;
git clone URL:- For getting a repository from an existing URL&lt;br&gt;
git log :- used to list the version history for the current branch&lt;br&gt;
git status :- lists all the files that have to be committed.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>How can we store container data in memory using docker volume</title>
      <dc:creator>Nityanand kumar</dc:creator>
      <pubDate>Wed, 16 Nov 2022 05:24:54 +0000</pubDate>
      <link>https://www.debug.school/nityanand32_864/how-can-we-store-container-data-in-memory-using-docker-volume-3kin</link>
      <guid>https://www.debug.school/nityanand32_864/how-can-we-store-container-data-in-memory-using-docker-volume-3kin</guid>
      <description>&lt;p&gt;Volumes are used to share files between the host machine and container so that we can have persist data even after the container is stopped.&lt;/p&gt;

&lt;p&gt;We can use the mount by using --mount type=tmpfs,destination=/app. To create tmpfs mounts, we don’t have to create a file structure in our host file system. We can mention only the destination file path and it will create the directory structure on its own.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What is a Docker image ?</title>
      <dc:creator>Nityanand kumar</dc:creator>
      <pubDate>Tue, 15 Nov 2022 06:45:35 +0000</pubDate>
      <link>https://www.debug.school/nityanand32_864/what-is-a-docker-image--4c6g</link>
      <guid>https://www.debug.school/nityanand32_864/what-is-a-docker-image--4c6g</guid>
      <description>&lt;p&gt;Docker image is a combination of a file system and parameters like:  RootFS + Java+ Tomcat + Apache&lt;br&gt;
--Storage driver used in Docker is overlays2 (present inside the root directory)&lt;br&gt;
Some of the command are:&lt;br&gt;
_du -sh&lt;br&gt;
du -kh&lt;br&gt;
docker images: list of Docker images on the system&lt;br&gt;
docker pull httpd&lt;br&gt;
_&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Docker Commands:</title>
      <dc:creator>Nityanand kumar</dc:creator>
      <pubDate>Tue, 15 Nov 2022 04:43:30 +0000</pubDate>
      <link>https://www.debug.school/nityanand32_864/docker-commands-fhd</link>
      <guid>https://www.debug.school/nityanand32_864/docker-commands-fhd</guid>
      <description>&lt;p&gt;&lt;strong&gt;1)&lt;/strong&gt; &lt;em&gt;What is the use of "docker update"?&lt;/em&gt; Hint - docker run --help&lt;br&gt;
Answer: It update the configuration of one or more containers. We can look for different options available.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2)&lt;/strong&gt;&lt;em&gt;What is the use of "docker wait"?&lt;/em&gt;&lt;br&gt;
Answer: "docker wait" is used to wait or block until one or more containers stop, and then it outputs their exit codes.&lt;br&gt;
Example: We start a container in the background and then use the command docker wait which should block until the container exits.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>14th November Assignment</title>
      <dc:creator>Nityanand kumar</dc:creator>
      <pubDate>Mon, 14 Nov 2022 10:10:20 +0000</pubDate>
      <link>https://www.debug.school/nityanand32_864/14th-november-assignment-5h85</link>
      <guid>https://www.debug.school/nityanand32_864/14th-november-assignment-5h85</guid>
      <description>&lt;p&gt;1) &lt;strong&gt;what is the diff between docker pause and docker unpause&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Answer: Pause suspends all processes of the selected container while unpause resumes the containers.&lt;/p&gt;

&lt;p&gt;2) &lt;strong&gt;What is the diff between docker stop and docker kill&lt;/strong&gt;&lt;br&gt;
Answer: Kill command(send SIGKILL) kills whereas stop command(send SIGTERM) is used to stopping the running container.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Summary of Docker Introduction</title>
      <dc:creator>Nityanand kumar</dc:creator>
      <pubDate>Mon, 14 Nov 2022 07:20:57 +0000</pubDate>
      <link>https://www.debug.school/nityanand32_864/summary-of-docker-introduction-4bml</link>
      <guid>https://www.debug.school/nityanand32_864/summary-of-docker-introduction-4bml</guid>
      <description>&lt;p&gt;1)What is Docker ?&lt;br&gt;
----Docker is a container management tool which can save cost, save time and improve the quality of software also.&lt;/p&gt;

&lt;p&gt;2) Basically what a Docker can do ?&lt;br&gt;
----It can create/ start/ stop/ and remove the container.&lt;/p&gt;

&lt;p&gt;3) Different components of the Docker:&lt;br&gt;
Docker Engine, Images, Containers, Registries &amp;amp; Repositories.&lt;/p&gt;

&lt;p&gt;4) What is Kernel ?&lt;br&gt;
----Kernel is the sub-part of the Operating system. Some of the functions are mentioned below: &lt;br&gt;
a)Process management&lt;br&gt;
b)File management&lt;br&gt;
c)Network management&lt;/p&gt;

&lt;p&gt;5) Different components of Linux Kernel- &lt;br&gt;
---- cgroups, namespaces, capabilities, etc.&lt;/p&gt;

&lt;p&gt;6)Learned about the distinction between Physical Machine ----Virtual Machine and Container.&lt;/p&gt;

&lt;p&gt;7) Also about the motivation of need to have a container over the personal computer- Like 3 Apache servers cannot run on single PC using the same port number.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
