{"id":1537,"date":"2018-05-15T22:13:12","date_gmt":"2018-05-15T16:43:12","guid":{"rendered":"https:\/\/www.booleanworld.com\/?p=1537"},"modified":"2018-05-15T22:13:12","modified_gmt":"2018-05-15T16:43:12","slug":"kill-process-linux","status":"publish","type":"post","link":"https:\/\/www.booleanworld.com\/kill-process-linux\/","title":{"rendered":"How to Kill a Process in Linux"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-1568\" src=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/linux-kill-cover-image.jpg\" alt=\"linux kill cover image\" width=\"650\" height=\"433\" srcset=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/linux-kill-cover-image.jpg 1920w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/linux-kill-cover-image-300x200.jpg 300w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/linux-kill-cover-image-1024x682.jpg 1024w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/linux-kill-cover-image-300x200@2x.jpg 600w\" sizes=\"auto, (max-width: 650px) 100vw, 650px\" \/><\/p>\n<p>In an operating system, there are many programs, which may be either run by an user or by the OS itself (such as system services). Such programs which are running on the system are called &#8220;processes&#8221;. Usually, a process terminates on its own when they&#8217;re done with their task, or when you ask them to quit by pressing a keyboard shortcut or clicking on the &#8220;Close&#8221; button.<\/p>\n<p>However, sometimes a process can hang up or consume a lot of CPU or RAM. In this situation, you would want to manually &#8220;kill&#8221; the process. In this article, we will look at various tools you can use to kill processes on a Linux system.<\/p>\n<h2>Locating the process to kill<\/h2>\n<p>In order to kill a process, you should first locate the details of the process. You can do this through three commands \u2014 <code>top<\/code>, <code>ps<\/code>,\u00a0<code>pidof<\/code>\u00a0and <code>pgrep<\/code>. Depending upon the situation, you can use one of these commands for this purpose.<\/p>\n<p>As we will see later in this article, you can kill a process by its name or its process ID (PID). The PID is a number that uniquely identifies a process. Killing by the process ID is useful when you want to kill only a specific process. On the other hand, killing by the process name is useful when you want to kill all running instances of a particular program.<\/p>\n<h3>Locating the process with the top command<\/h3>\n<p>We will first look at the <code>top<\/code>\u00a0command. Fire up the top command by typing:<\/p>\n<p><span style=\"color: #0000ff;\"><span style=\"font-family: Consolas, Monaco, monospace;\"><span style=\"white-space: pre;\">top<\/span><\/span><\/span><\/p>\n<p>You will get an interactive interface, as shown below. You can browse through this list to find the name or the PID of the process you want to kill.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-1575 size-full\" src=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/top_command.png\" alt=\"The top command showing a list of processes.\" width=\"722\" height=\"501\" srcset=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/top_command.png 722w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/top_command-300x208.png 300w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/top_command-300x208@2x.png 600w\" sizes=\"auto, (max-width: 722px) 100vw, 722px\" \/><\/p>\n<p>To browse through this list, you can use the up\/down keys. Additionally, the\u00a0top command also has ways to filter processes by CPU usage, user and process names, which you can read about in <a href=\"https:\/\/www.booleanworld.com\/guide-linux-top-command\/\">this guide<\/a>.<\/p>\n<p>The leftmost column contains the PID of the process, and the right side contains the program name. As an example, in the above screenshot we have the <code>vnstatd<\/code>\u00a0process running with a process ID of 263.<\/p>\n<h3>Locating the process with ps and grep commands<\/h3>\n<p>Another way to get a list of process is by running:<\/p>\n<pre><span style=\"color: #0000ff;\">ps<\/span> aux<\/pre>\n<p>In the above command, we have used the flags <code>aux<\/code>\u00a0which have the following meanings:<\/p>\n<ul>\n<li><code>a<\/code>: Show processes for all users<\/li>\n<li><code>u<\/code>: Display the user who is using the process<\/li>\n<li><code>x<\/code>: Show all processes. (Without this, <code>ps<\/code>\u00a0won&#8217;t show processes running in a GUI environment.)<\/li>\n<\/ul>\n<p>The output of the command is similar to that of <code>top<\/code>. The PID is available in second column from the left, and the process name is available on the rightmost column.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-1576 size-full\" src=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/ps_aux_command.png\" alt=\"The results of the &quot;ps aux&quot; command.\" width=\"836\" height=\"505\" srcset=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/ps_aux_command.png 836w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/ps_aux_command-300x181.png 300w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/ps_aux_command-300x181@2x.png 600w\" sizes=\"auto, (max-width: 836px) 100vw, 836px\" \/><\/p>\n<p>The advantage of using <code>ps<\/code>\u00a0is that you can easily filter this list with the <code>grep<\/code>\u00a0command. For example, to find a process associated with the term &#8220;vnstat&#8221;, you can use:<\/p>\n<pre><span style=\"color: #0000ff;\">ps<\/span> aux | <span style=\"color: #0000ff;\">grep<\/span> -i vnstat<\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-1577 size-full\" src=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/ps_aux_grep.png\" alt=\"Filtering processes with ps and grep, with a positive result.\" width=\"779\" height=\"60\" srcset=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/ps_aux_grep.png 779w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/ps_aux_grep-300x23.png 300w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/ps_aux_grep-300x23@2x.png 600w\" sizes=\"auto, (max-width: 779px) 100vw, 779px\" \/><\/p>\n<p>Here, we got two results \u2014 the <code>vnstatd<\/code>\u00a0process, as well as the <code>grep<\/code>\u00a0process. Since we were searching for all instances of the term &#8220;vnstat&#8221;, and we were also running <code>grep<\/code>\u00a0with &#8220;vnstat&#8221; as its argument, we got <code>grep<\/code>\u00a0 as well in the results.<\/p>\n<p>Thus, even when there are no &#8220;vnstat&#8221; related processes running, we would get one entry showing the <code>grep<\/code> process:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-1578 size-full\" src=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/ps_aux_single.png\" alt=\"Filtering processes with ps and grep.\" width=\"726\" height=\"39\" srcset=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/ps_aux_single.png 726w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/ps_aux_single-300x16.png 300w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/ps_aux_single-300x16@2x.png 600w\" sizes=\"auto, (max-width: 726px) 100vw, 726px\" \/><\/p>\n<p>So, even though we got a result, there are no processes that are of interest to us.<\/p>\n<h3>Finding the PID with pidof and pgrep<\/h3>\n<p>The\u00a0<code>top<\/code>\u00a0and <code>ps<\/code>\/<code>grep<\/code>\u00a0combination allows us to search for processes. On the other hand, if you know the exact name of a process, you can use <code>pidof<\/code>\u00a0to find its PID.<\/p>\n<p>Using <code>pidof<\/code>\u00a0is pretty straightforward. To get the PIDs of a process with the exact name of &#8220;nginx&#8221;, use:<\/p>\n<pre><span style=\"color: #0000ff;\">pidof<\/span> nginx<\/pre>\n<p>If there are processes with the exact name of &#8220;nginx&#8221;, you will get a list of PIDs, as shown below. If there are none, you will get nothing as the output.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-1579 size-full\" src=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/pidof-1.png\" alt=\"The pidof command\" width=\"267\" height=\"39\" \/><\/p>\n<p>If you don&#8217;t know the full name, you can use <code>pgrep<\/code>\u00a0instead of <code>pidof<\/code>. As an example, to search for all processes that contain &#8220;ngin&#8221; somewhere in their name, run:<\/p>\n<pre><span style=\"color: #0000ff;\">pgrep<\/span> ngin<\/pre>\n<p>This will match processes with the exact name of &#8220;nginx&#8221;, as well as any other process that matches the same criteria. For our system, notice that we get all the PIDs that belonged to &#8220;nginx&#8221; in the above screenshot.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-1580 size-full\" src=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/pgrep.png\" alt=\"The pgrep command.\" width=\"245\" height=\"98\" \/><\/p>\n<p>The <code>pidof<\/code>\u00a0and<code>pkill<\/code>\u00a0commands give you far less information. As we shall see in the next section, there are some circumstances in which you can&#8217;t kill a process. The output of <code>top<\/code>\u00a0and <code>ps<\/code>\u00a0contain additional information that help you determine if you can really kill a process.<\/p>\n<h2>What processes can you kill?<\/h2>\n<p>Now that we have located the process, it is time to kill it.\u00a0However, before we learn how to do so, there are a few things you need to know.<\/p>\n<p>If you are a normal user, you can kill your own processes, but not those that belong to other users. Both\u00a0<code>top<\/code>\u00a0and <code>ps<\/code>\u00a0 show the user under which a process is running. In the case of <code>top<\/code>, the second column contains the username. With <code>ps aux<\/code>, the first column contains the username.<\/p>\n<p>However, a root user can kill all processes. You can either add <code>sudo<\/code>\u00a0before any command to run it as root, or obtain a root shell by typing <code>su<\/code>, and then execute the command.<\/p>\n<p>In Linux, when a process is killed, a &#8220;terminating signal&#8221; is delivered to the process. Although there are many different types of signals, we mostly deal with the &#8220;SIGTERM&#8221; and &#8220;SIGKILL&#8221; signals. They have a numeric value of 15 and 9 respectively. By default, all the process killing commands use &#8220;SIGTERM&#8221;, which allows the program to run some code before it exits, thus allowing it to terminate &#8220;gracefully&#8221;. If you want to terminate the process forcibly, you can use &#8220;SIGKILL&#8221; instead.<\/p>\n<p>The Linux kernel maintains some information related to the state of a process. When a process terminates, the kernel must keep the information around, so that the parent process can find out if the child process was able to complete its tasks and whether it terminated on its own, or it was killed. Until the parent has done so, these &#8220;zombie&#8221; processes will appear in the list of processes. You can&#8217;t kill such a process because it&#8217;s just an entry in the list of all processes, and it doesn&#8217;t have an actual process associated with it.<\/p>\n<p>When a process performs input\/output operations (such as reading from or writing to disks), it is said to be in a state of &#8220;uninterruptible sleep&#8221;. You can&#8217;t kill a process while it is in this state.<\/p>\n<p>You can tell if a process is in the &#8220;zombie&#8221;(Z) or &#8220;uninterruptible sleep&#8221;(D) state by looking at the 8th column of the <code>top<\/code>\/<code>ps<\/code>\u00a0output.<\/p>\n<h2>Killing a process<\/h2>\n<p>There are various commands you can use to kill a process \u2014 <code>kill<\/code>, <code>killall<\/code>, <code>pkill<\/code>\u00a0and <code>top<\/code>. We will begin from the simplest one: the <code>killall<\/code>\u00a0command.<\/p>\n<h3>Killing processes with the killall command<\/h3>\n<p>The <code>killall<\/code> command is one of the easiest ways to kill a process. If you know the exact name of a process, and you know that it&#8217;s not running as another user and it is not in the Z or D states, then you can use this command directly; there&#8217;s no need to manually locate the process as we described above.<\/p>\n<p>By default,\u00a0 For example, to kill a process named &#8220;firefox&#8221;, run:<\/p>\n<pre><span style=\"color: #0000ff;\">killall<\/span> firefox<\/pre>\n<p>To forcibly kill the process with SIGKILL, run:<\/p>\n<pre><span style=\"color: #0000ff;\">killall<\/span> -9 firefox<\/pre>\n<p>You can also use <code>-SIGKILL<\/code>\u00a0instead of <code>-9<\/code>.<\/p>\n<p>If you want to kill processes interactively, you can use <code>-i<\/code>\u00a0like so:<\/p>\n<pre><span style=\"color: #0000ff;\">killall<\/span> -i firefox<\/pre>\n<p>If you want to kill a process running as a different user, you can use <code>sudo<\/code>:<\/p>\n<pre><span style=\"color: #0000ff;\">sudo<\/span> killall firefox<\/pre>\n<p>You can also kill a process that has been running for a certain period of time with the <code>-o<\/code>\u00a0and <code>-y<\/code> flags.\u00a0So, if you want to kill a process that has been running for more than 30 minutes, use:<\/p>\n<pre><span style=\"color: #0000ff;\">killall<\/span> -o 30m &lt;process-name&gt;<\/pre>\n<p>If you want to kill a process that has been running for less than 30 minutes, use:<\/p>\n<pre><span style=\"color: #0000ff;\">killall<\/span> -y 30m &lt;process-name&gt;<\/pre>\n<p>Similarly, use the following abbreviations for the respective units of time:<\/p>\n<table style=\"height: 211px;\" width=\"166\">\n<tbody>\n<tr>\n<td>s<\/td>\n<td>seconds<\/td>\n<\/tr>\n<tr>\n<td>m<\/td>\n<td>minutes<\/td>\n<\/tr>\n<tr>\n<td>h<\/td>\n<td>hours<\/td>\n<\/tr>\n<tr>\n<td>d<\/td>\n<td>days<\/td>\n<\/tr>\n<tr>\n<td>w<\/td>\n<td>weeks<\/td>\n<\/tr>\n<tr>\n<td>M<\/td>\n<td>months<\/td>\n<\/tr>\n<tr>\n<td>y<\/td>\n<td>years<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>Killing processes with the pkill command<\/h3>\n<p>Sometimes, you only know part of a program&#8217;s name. Just like <code>pgrep<\/code>, <code>pkill<\/code>\u00a0allows you to kill processes based on partial matches. For example, if you want to kill all processes containing the name <code>apache<\/code>\u00a0in the name, run:<\/p>\n<pre><span style=\"color: #0000ff;\">pkill<\/span> apache<\/pre>\n<p>If you want to use a SIGKILL instead of a SIGTERM, use:<\/p>\n<pre><span style=\"color: #0000ff;\">pkill<\/span> -9 apache<\/pre>\n<p>Again, you can also use <code>-SIGKILL<\/code>\u00a0instead of <code>-9<\/code>.<\/p>\n<h3>Killing processes with the kill command<\/h3>\n<p>Using the kill command is straightforward. Once you have found out the PID of the process that you want to kill, you can terminate it using the <code>kill<\/code>\u00a0command.\u00a0For example, if you want to kill a process having a PID of 1234, then use the following command:<\/p>\n<pre><span style=\"color: #0000ff;\">kill<\/span> 1234<\/pre>\n<p>As we mentioned previously, the default is to use a SIGTERM. To use a SIGKILL, use <code>-9<\/code>\u00a0or <code>-SIGKILL<\/code>\u00a0as we have seen before:<\/p>\n<pre><span style=\"color: #0000ff;\">kill<\/span> -9 1234<\/pre>\n<h3>Killing processes with the top command<\/h3>\n<p>It is very easy to kill processes using the <code>top<\/code>\u00a0command. First, search for the process that you want to kill and note the PID. Then, press <code>k<\/code>\u00a0while top is running (this is case sensitive). It will prompt you to enter the PID of the process that you want to kill.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-1583\" src=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/top_command_kill.png\" alt=\"\" width=\"772\" height=\"493\" srcset=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/top_command_kill.png 772w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/top_command_kill-300x192.png 300w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/top_command_kill-300x192@2x.png 600w\" sizes=\"auto, (max-width: 772px) 100vw, 772px\" \/><\/p>\n<p>After you enter the PID, press enter. Now it will ask which signal you want to use to kill the process. If you want to use SIGTERM(15), then simply press enter as it is the default signal. If you want to use SIGKILL(9), then type 9 and press enter.<\/p>\n<p>If you leave the process ID blank and hit enter directly, it will terminate the topmost process in the list. You can scroll using the arrow keys, and change the process you want to kill in this way.<\/p>\n<h2>Conclusion<\/h2>\n<p>In this post, we saw the various ways to kill processes in Linux. Learning these commands is essential for proper system administration and management. If you want to explore more of those commands, have a look at their respective man pages.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In an operating system, there are many programs, which may be either run by an user or by the OS itself (such as system services). Such programs which are running on the system are&#46;&#46;&#46;<\/p>\n","protected":false},"author":3,"featured_media":1568,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[11,10],"class_list":["post-1537","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-command-line","tag-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Kill a Process in Linux - Boolean World<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.booleanworld.com\/kill-process-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Kill a Process in Linux - Boolean World\" \/>\n<meta property=\"og:description\" content=\"In an operating system, there are many programs, which may be either run by an user or by the OS itself (such as system services). Such programs which are running on the system are&#046;&#046;&#046;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.booleanworld.com\/kill-process-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"Boolean World\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/booleanworld\" \/>\n<meta property=\"article:published_time\" content=\"2018-05-15T16:43:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/linux-kill-cover-image.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1278\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Anirban Das\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@booleanworld\" \/>\n<meta name=\"twitter:site\" content=\"@booleanworld\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Anirban Das\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Kill a Process in Linux - Boolean World","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.booleanworld.com\/kill-process-linux\/","og_locale":"en_US","og_type":"article","og_title":"How to Kill a Process in Linux - Boolean World","og_description":"In an operating system, there are many programs, which may be either run by an user or by the OS itself (such as system services). Such programs which are running on the system are&#46;&#46;&#46;","og_url":"https:\/\/www.booleanworld.com\/kill-process-linux\/","og_site_name":"Boolean World","article_publisher":"https:\/\/www.facebook.com\/booleanworld","article_published_time":"2018-05-15T16:43:12+00:00","og_image":[{"width":1920,"height":1278,"url":"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/linux-kill-cover-image.jpg","type":"image\/jpeg"}],"author":"Anirban Das","twitter_card":"summary_large_image","twitter_creator":"@booleanworld","twitter_site":"@booleanworld","twitter_misc":{"Written by":"Anirban Das","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.booleanworld.com\/kill-process-linux\/#article","isPartOf":{"@id":"https:\/\/www.booleanworld.com\/kill-process-linux\/"},"author":{"name":"Anirban Das","@id":"https:\/\/www.booleanworld.com\/#\/schema\/person\/a9047e674fa7510a9166b357ac61ef51"},"headline":"How to Kill a Process in Linux","datePublished":"2018-05-15T16:43:12+00:00","mainEntityOfPage":{"@id":"https:\/\/www.booleanworld.com\/kill-process-linux\/"},"wordCount":1645,"commentCount":21,"publisher":{"@id":"https:\/\/www.booleanworld.com\/#organization"},"image":{"@id":"https:\/\/www.booleanworld.com\/kill-process-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/linux-kill-cover-image.jpg","keywords":["command line","linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.booleanworld.com\/kill-process-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.booleanworld.com\/kill-process-linux\/","url":"https:\/\/www.booleanworld.com\/kill-process-linux\/","name":"How to Kill a Process in Linux - Boolean World","isPartOf":{"@id":"https:\/\/www.booleanworld.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.booleanworld.com\/kill-process-linux\/#primaryimage"},"image":{"@id":"https:\/\/www.booleanworld.com\/kill-process-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/linux-kill-cover-image.jpg","datePublished":"2018-05-15T16:43:12+00:00","breadcrumb":{"@id":"https:\/\/www.booleanworld.com\/kill-process-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.booleanworld.com\/kill-process-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.booleanworld.com\/kill-process-linux\/#primaryimage","url":"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/linux-kill-cover-image.jpg","contentUrl":"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2018\/05\/linux-kill-cover-image.jpg","width":1920,"height":1278,"caption":"linux kill cover image"},{"@type":"BreadcrumbList","@id":"https:\/\/www.booleanworld.com\/kill-process-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.booleanworld.com\/"},{"@type":"ListItem","position":2,"name":"How to Kill a Process in Linux"}]},{"@type":"WebSite","@id":"https:\/\/www.booleanworld.com\/#website","url":"https:\/\/www.booleanworld.com\/","name":"Boolean World","description":"","publisher":{"@id":"https:\/\/www.booleanworld.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.booleanworld.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.booleanworld.com\/#organization","name":"Boolean World","url":"https:\/\/www.booleanworld.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.booleanworld.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/01\/booleanworld_white_logo.png","contentUrl":"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/01\/booleanworld_white_logo.png","width":517,"height":516,"caption":"Boolean World"},"image":{"@id":"https:\/\/www.booleanworld.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/booleanworld","https:\/\/x.com\/booleanworld"]},{"@type":"Person","@id":"https:\/\/www.booleanworld.com\/#\/schema\/person\/a9047e674fa7510a9166b357ac61ef51","name":"Anirban Das","url":"https:\/\/www.booleanworld.com\/author\/aniirban101\/"}]}},"_links":{"self":[{"href":"https:\/\/www.booleanworld.com\/wp-json\/wp\/v2\/posts\/1537","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.booleanworld.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.booleanworld.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.booleanworld.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.booleanworld.com\/wp-json\/wp\/v2\/comments?post=1537"}],"version-history":[{"count":0,"href":"https:\/\/www.booleanworld.com\/wp-json\/wp\/v2\/posts\/1537\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.booleanworld.com\/wp-json\/wp\/v2\/media\/1568"}],"wp:attachment":[{"href":"https:\/\/www.booleanworld.com\/wp-json\/wp\/v2\/media?parent=1537"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.booleanworld.com\/wp-json\/wp\/v2\/categories?post=1537"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.booleanworld.com\/wp-json\/wp\/v2\/tags?post=1537"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}