<?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>LAMP Tips! &#187; Linux</title>
	<atom:link href="http://lamptips.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://lamptips.com</link>
	<description>Tips for Linux, Apache (and Nginx!), MySQL and PHP!</description>
	<lastBuildDate>Sat, 03 Mar 2012 07:53:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Linux/General &#8211; Add an existing user to an existing group</title>
		<link>http://lamptips.com/2012/03/linuxgeneral-add-an-existing-user-to-an-existing-group/</link>
		<comments>http://lamptips.com/2012/03/linuxgeneral-add-an-existing-user-to-an-existing-group/#comments</comments>
		<pubDate>Sat, 03 Mar 2012 07:53:25 +0000</pubDate>
		<dc:creator>LampTips</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://lamptips.com/?p=46</guid>
		<description><![CDATA[<a href="http://lamptips.com/2012/03/linuxgeneral-add-an-existing-user-to-an-existing-group/" title="Linux/General - Add an existing user to an existing group"></a>Sometimes, you may need to add a user to an existing group. You can do so with the following command: usermod -a -G [GROUP] [USER]]]></description>
			<content:encoded><![CDATA[<a href="http://lamptips.com/2012/03/linuxgeneral-add-an-existing-user-to-an-existing-group/" title="Linux/General - Add an existing user to an existing group"></a><p>Sometimes, you may need to add a user to an existing group.</p>
<p><span id="more-46"></span>You can do so with the following command:</p>
<pre>usermod -a -G [GROUP] [USER]</pre>
]]></content:encoded>
			<wfw:commentRss>http://lamptips.com/2012/03/linuxgeneral-add-an-existing-user-to-an-existing-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux/General &#8211; tar &#8211; Too many arguments</title>
		<link>http://lamptips.com/2012/01/linuxgeneral-tar-too-many-arguments/</link>
		<comments>http://lamptips.com/2012/01/linuxgeneral-tar-too-many-arguments/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 06:40:57 +0000</pubDate>
		<dc:creator>LampTips</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[arg_max]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tar]]></category>
		<category><![CDATA[too many argument]]></category>

		<guid isPermaLink="false">http://lamptips.com/?p=24</guid>
		<description><![CDATA[<a href="http://lamptips.com/2012/01/linuxgeneral-tar-too-many-arguments/" title="Linux/General - tar - Too many arguments"></a>Occasionally, when working in directories with large numbers of files and/or directories contained within them, you will get an error stating: Too many arguments. This is not an error from the application. Rather, it is an error from the shell &#8230;<p class="read-more"><a href="http://lamptips.com/2012/01/linuxgeneral-tar-too-many-arguments/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://lamptips.com/2012/01/linuxgeneral-tar-too-many-arguments/" title="Linux/General - tar - Too many arguments"></a><p>Occasionally, when working in directories with large numbers of files and/or directories contained within them, you will get an error stating: Too many arguments.</p>
<p>This is not an error from the application. Rather, it is an error from the shell erroring on ARG_MAX limit reached.<br />
<span id="more-24"></span> There are a few ways to get around this, none of them are particularly elegant:</p>
<p>Using tar inside of a directory with too many files.</p>
<pre>find . -print | tar -cvzf archive.tar.gz --files-from -</pre>
<p>Using cp to move files, but too many files to work with:</p>
<pre>for x in $( ls ); do cp $x /new/location; done</pre>
<p>These are just some examples of ways to get around that problem. As a rule of thumb, try to keep the number of files in any given directory to &lt; 1024.</p>
]]></content:encoded>
			<wfw:commentRss>http://lamptips.com/2012/01/linuxgeneral-tar-too-many-arguments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

