<?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>Find Large Files &#8211; lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</title>
	<atom:link href="https://lifelinux.com/tag/find-large-files/feed/" rel="self" type="application/rss+xml" />
	<link>https://lifelinux.com</link>
	<description>All About Linux !</description>
	<lastBuildDate>Fri, 13 May 2011 16:12:10 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.5.3</generator>
	<item>
		<title>Find Large Files In Linux</title>
		<link>https://lifelinux.com/find-large-files-in-linux/</link>
					<comments>https://lifelinux.com/find-large-files-in-linux/#respond</comments>
		
		<dc:creator><![CDATA[lifeLinux]]></dc:creator>
		<pubDate>Fri, 13 May 2011 15:54:44 +0000</pubDate>
				<category><![CDATA[Bash Shell]]></category>
		<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[find command]]></category>
		<category><![CDATA[Find files larger than a certain size]]></category>
		<category><![CDATA[Find files within specified size limits]]></category>
		<category><![CDATA[Find Large Files]]></category>
		<category><![CDATA[ls command]]></category>
		<guid isPermaLink="false">http://www.lifelinux.com/?p=478</guid>

					<description><![CDATA[<p>Find files larger than a certain size This example finds all the files under /root directory which are larger than 50k [root@lifelinux ~]# find /root -size +50k Sample output /root/ioncube/ioncube_loader_lin_5.3_ts.so /root/ioncube/ioncube_loader_lin_4.1.so /root/ioncube/ioncube_loader_lin_5.1.so /root/ioncube/ioncube_loader_lin_4.2.so ... Find files within specified size limits Example, type the following command to limit the search to find only files with the [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://lifelinux.com/find-large-files-in-linux/">Find Large Files In Linux</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p><h3>Find files larger than a certain size</h3>
<p>This example finds all the files under /root directory which are larger than 50k</p>
<pre>[root@lifelinux ~]# find /root -size +50k</pre>
<p>Sample output</p>
<pre>/root/ioncube/ioncube_loader_lin_5.3_ts.so
/root/ioncube/ioncube_loader_lin_4.1.so
/root/ioncube/ioncube_loader_lin_5.1.so
/root/ioncube/ioncube_loader_lin_4.2.so
...</pre>
<p><span id="more-478"></span></p>
<h3>Find files within specified size limits</h3>
<p>Example, type the following command to limit the search to find only files with the size of 50k to 100k</p>
<pre>[root@lifelinux ~]# find /var/log -size +50k -size -100k</pre>
<p>Sample output</p>
<pre>/var/log/secure.2
/var/log/munin/munin-node.log
/var/log/munin/munin-limits.log
...</pre>
<p>If you want to list them with ls, type the following command</p>
<pre>[root@lifelinux ~]# find /var/log -size +50k -size -100k -exec ls -lha {} \;</pre>
<p>Sample output</p>
<pre>-rw------- 1 root root 59K Apr 30 22:01 /var/log/secure.2
-rw-r--r-- 1 root root 54K May 13 23:05 /var/log/munin/munin-node.log
-rw-r--r-- 1 munin munin 94K May 13 23:05 /var/log/munin/munin-limits.log</pre>
<h3>Further readings</h3>
<p><a href="http://linux.about.com/od/commands/l/blcmdl1_find.htm">Find command</a></p>
<g:plusone href="https://lifelinux.com/find-large-files-in-linux/" size="standard"  annotation="none"   ></g:plusone><p>The post <a rel="nofollow" href="https://lifelinux.com/find-large-files-in-linux/">Find Large Files In Linux</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lifelinux.com/find-large-files-in-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
