<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tech Wisdom &#187; linux</title>
	<atom:link href="http://blog.ujjwalkumar.com/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ujjwalkumar.com</link>
	<description>Its all about Zeroes or Ones</description>
	<lastBuildDate>Sun, 11 Sep 2011 05:19:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Killing unresponsive programs in Debian</title>
		<link>http://blog.ujjwalkumar.com/2009/01/09/killing-unresponsive-programs-in-debian/</link>
		<comments>http://blog.ujjwalkumar.com/2009/01/09/killing-unresponsive-programs-in-debian/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 13:40:36 +0000</pubDate>
		<dc:creator>ujjwal</dc:creator>
				<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[kill program]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.ujjwalkumar.com/?p=55</guid>
		<description><![CDATA[Unresponsive process management is a common problem for windows users switching to linux, as here there is nothing like ctrl+alt+delete.. But, there are other cool things you can do in linux, which is otherwise not possible in windows. Analogous to windows’ “end process”, in linux, we have “kill process”.. To Kill a process, u can [...]]]></description>
			<content:encoded><![CDATA[<p>Unresponsive process management is a common problem for windows users switching to linux, as here there is nothing like ctrl+alt+delete..</p>
<p>But, there are other cool things you can do in linux, which is otherwise not possible in windows. Analogous to windows’ “end process”, in linux, we have “kill process”..</p>
<p>To Kill a process, u can simply open console, and type</p>
<p>kill &lt;pid&gt;</p>
<p>where pid is the process ID.. to get the process ID list of all processes, type</p>
<p>ps ax</p>
<p>in the console..</p>
<p>This command gives u the list of all the processes, which may be very long, and fill up the whole screen.. but, if u wish to know the pid of a specific process, use a filter called grep to filter the output from “ps ax”</p>
<p>code: ps ax | grep skype</p>
<p>where skype is the process of which u want to know the procees id (pid) ..</p>
<p>once u get the pid, type</p>
<p>kill 84001</p>
<p>where 84001 is the process id of the process.. u can check by doing “ps ax | grep skype” again to check if the process is killed.. in some cases, if the program is unresponsive, and doesn’t get killed.. in such a case, u can use a parameter called -9 to terminate the program..</p>
<p>code: kill -9 84001</p>
<p>still, there can be a situation, when the entire o/s gets unresponsive, and u don’t get an option to even open the console.. in that case, switch to the text only console mode by pressing:</p>
<p>ctrl + alt +F2</p>
<p>There kill the unresponsive programs using kill &lt;pid&gt; or kill -9 &lt;pid&gt; and then switch back to the desktop environment by pressing:</p>
<p>ctrl + alt + F7</p>
<p>there can be one more situation, in which, u don’t know which process has got unresponsive, and the whole o/s gets unstable.. in that case, save ur work and force logout by pressing:</p>
<p>ctrl + alt + backspace</p>
<p>note that, in case of forcing logout, u may loose ur work.. so, save all ur important data and sessions..</p>
<p>Thats All!!!</p>
<p>*This procedure is tested on debian based ubuntu hardy, gutsy and intrepid&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ujjwalkumar.com/2009/01/09/killing-unresponsive-programs-in-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

