<?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>Open source blog, linux, php, python, security &#187; argument</title>
	<atom:link href="http://www.alonon.net/tag/argument/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.alonon.net</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 07:23:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>

   <image>
    <title>Open source blog, linux, php, python, security</title>
    <url>http://0.gravatar.com/avatar/5152c5736f5f8dd9570ffb2f9068e8ab.png?s=48</url>
    <link>http://www.alonon.net</link>
   </image>
		<item>
		<title>Rm &#8211; Argument list too long solution</title>
		<link>http://www.alonon.net/rm-argument-list-too-long-solution/</link>
		<comments>http://www.alonon.net/rm-argument-list-too-long-solution/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 20:05:22 +0000</pubDate>
		<dc:creator>ALonon</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[argument]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[rm]]></category>
		<category><![CDATA[session]]></category>

		<guid isPermaLink="false">http://www.alonon.net/?p=308</guid>
		<description><![CDATA[Today my all web sites that working with session was giving that error: Warning: session_start() [function.session-start]: open(/var/lib/php5/sess_1812dbcc1b2e606c5f44f7c4d277c22e, O_RDWR) failed: No space left on device (28) in /**/theme/default/header.php on line 5 After a little searching i found that i didn&#8217;t have any free space. My applications could not delete session in  /var/lib/php5 folder. So i tried &#8230; <a href="http://www.alonon.net/rm-argument-list-too-long-solution/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today my all web sites that working with session was giving that error:</p>
<blockquote><p>Warning: session_start() [function.session-start]:  open(/var/lib/php5/sess_1812dbcc1b2e606c5f44f7c4d277c22e, O_RDWR)  failed: No space left on device (28) in  /**/theme/default/header.php  on line 5</p></blockquote>
<p>After a little searching i found that i didn&#8217;t have any free space. My applications could not delete session in  /var/lib/php5 folder. So i tried to delete manualy with this command.</p>
<blockquote><p>rm -rf *</p></blockquote>
<p>But because of there were lots of session files. I took</p>
<blockquote><p>Argument list too long</p></blockquote>
<p>To solve this problem i write.</p>
<blockquote><p>find . -name &#8220;*&#8221; -print | xargs rm -v</p></blockquote>
<p>But i don&#8217;t have any idea about what this command do !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alonon.net/rm-argument-list-too-long-solution/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

