<?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>Free Tutorials, Screencasts, Demos &#8211; Usage.cc</title>
	<atom:link href="https://usage.cc/feed" rel="self" type="application/rss+xml" />
	<link>https://usage.cc/</link>
	<description>free online tutorials, screencasts, short examples, snippets</description>
	<lastBuildDate>Mon, 15 Apr 2019 15:51:30 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.2</generator>
	<item>
		<title>lftp</title>
		<link>https://usage.cc/lftp</link>
		
		<dc:creator><![CDATA[usage]]></dc:creator>
		<pubDate>Wed, 24 Aug 2016 14:31:56 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://usage.cc/?page_id=264</guid>

					<description><![CDATA[<p>lftp this is an amazing program that allows you to download or upload a site. How to download a site supporting SFTP account using lftp.</p>
<p>The post <a rel="nofollow" href="https://usage.cc/lftp">lftp</a> appeared first on <a rel="nofollow" href="https://usage.cc">Free Tutorials, Screencasts, Demos - Usage.cc</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>lftp this is an amazing program that allows you to download or upload a site.</p>
<p>How to download a site supporting SFTP account using <strong>lftp</strong>.</p>
<pre class="brush: plain; title: ; notranslate">
lftp -u 'some_user' --password='some_pass' sftp://some_host:2222 -e 'set ssl:verify-certificate no; set sftp:auto-confirm yes;set ftp:list-options -a; set ftp:ssl-allow no; mirror -vvv /remote_dir/ local_target_dir/; bye'
</pre>
<p>The post <a rel="nofollow" href="https://usage.cc/lftp">lftp</a> appeared first on <a rel="nofollow" href="https://usage.cc">Free Tutorials, Screencasts, Demos - Usage.cc</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to Create Swap Partition in Linux</title>
		<link>https://usage.cc/swap</link>
					<comments>https://usage.cc/swap#respond</comments>
		
		<dc:creator><![CDATA[usage]]></dc:creator>
		<pubDate>Tue, 05 Apr 2016 09:10:30 +0000</pubDate>
				<category><![CDATA[Linux/Unix]]></category>
		<guid isPermaLink="false">https://usage.cc/?p=260</guid>

					<description><![CDATA[<p>How to Create Swap Partition in Linux # dd if=/dev/zero of=/swap.dat bs=1024 count=512K # mkswap /swap.dat # swapon /swap.dat Result 524288+0 records in524288+0 records out 536870912 bytes (537 MB) copied, 3.17728 s, 169 MB/s Edit the /etc/fstab, and the following entry. /swap.dat      none    swap    sw      0       0 &#160; Source: http://www.webtrafficexchange.com/solved-mysql-crash-fatal-error-cannot-allocate-memory-buffer-pool count= was supposed to be [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://usage.cc/swap">How to Create Swap Partition in Linux</a> appeared first on <a rel="nofollow" href="https://usage.cc">Free Tutorials, Screencasts, Demos - Usage.cc</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>How to Create Swap Partition in Linux</p>
<pre class="brush: plain; title: ; notranslate">
# dd if=/dev/zero of=/swap.dat bs=1024 count=512K
# mkswap /swap.dat
# swapon /swap.dat
</pre>
<pre>Result

<pre class="brush: plain; title: ; notranslate">
524288+0 records in524288+0 records out
536870912 bytes (537 MB) copied, 3.17728 s, 169 MB/s
</pre>
<p>Edit the /etc/fstab, and the following entry.</p>
<pre class="brush: plain; title: ; notranslate">
/swap.dat      none    swap    sw      0       0
</pre>
<p>&nbsp;</p>
<p>Source:</p>
<p>http://www.webtrafficexchange.com/solved-mysql-crash-fatal-error-cannot-allocate-memory-buffer-pool<br />
count= was supposed to be K, but in the article it's in MB</p>
<p>The post <a rel="nofollow" href="https://usage.cc/swap">How to Create Swap Partition in Linux</a> appeared first on <a rel="nofollow" href="https://usage.cc">Free Tutorials, Screencasts, Demos - Usage.cc</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://usage.cc/swap/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>df</title>
		<link>https://usage.cc/df</link>
					<comments>https://usage.cc/df#respond</comments>
		
		<dc:creator><![CDATA[usage]]></dc:creator>
		<pubDate>Sun, 27 Mar 2016 20:24:48 +0000</pubDate>
				<category><![CDATA[Linux/Unix]]></category>
		<guid isPermaLink="false">https://usage.cc/?p=218</guid>

					<description><![CDATA[<p>Show free disk space df -h Show how many inodes are available df -i &#160;</p>
<p>The post <a rel="nofollow" href="https://usage.cc/df">df</a> appeared first on <a rel="nofollow" href="https://usage.cc">Free Tutorials, Screencasts, Demos - Usage.cc</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Show free disk space</p>
<pre class="brush: plain; title: ; notranslate">
df -h
</pre>
<p>Show how many inodes are available</p>
<pre class="brush: plain; title: ; notranslate">
df -i
</pre>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://usage.cc/df">df</a> appeared first on <a rel="nofollow" href="https://usage.cc">Free Tutorials, Screencasts, Demos - Usage.cc</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://usage.cc/df/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>md5deep &#8211; How to Calculate MD5 checksum of a Directory</title>
		<link>https://usage.cc/md5deep</link>
					<comments>https://usage.cc/md5deep#respond</comments>
		
		<dc:creator><![CDATA[usage]]></dc:creator>
		<pubDate>Wed, 17 Dec 2014 23:07:00 +0000</pubDate>
				<category><![CDATA[Linux/Unix]]></category>
		<guid isPermaLink="false">https://usage.cc/?p=207</guid>

					<description><![CDATA[<p>md5deep -rl /folder &#62; /another/path/md5-list.txt &#160; Related http://www.linuxquestions.org/questions/linux-software-2/how-to-create-md5sum-for-a-directory-689242/</p>
<p>The post <a rel="nofollow" href="https://usage.cc/md5deep">md5deep &#8211; How to Calculate MD5 checksum of a Directory</a> appeared first on <a rel="nofollow" href="https://usage.cc">Free Tutorials, Screencasts, Demos - Usage.cc</a>.</p>
]]></description>
										<content:encoded><![CDATA[<pre class="brush: plain; title: ; notranslate">
md5deep -rl /folder &gt; /another/path/md5-list.txt
</pre>
<p>&nbsp;</p>
<p>Related</p>
<p>http://www.linuxquestions.org/questions/linux-software-2/how-to-create-md5sum-for-a-directory-689242/</p>
<p>The post <a rel="nofollow" href="https://usage.cc/md5deep">md5deep &#8211; How to Calculate MD5 checksum of a Directory</a> appeared first on <a rel="nofollow" href="https://usage.cc">Free Tutorials, Screencasts, Demos - Usage.cc</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://usage.cc/md5deep/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>mytop</title>
		<link>https://usage.cc/mytop</link>
					<comments>https://usage.cc/mytop#respond</comments>
		
		<dc:creator><![CDATA[usage]]></dc:creator>
		<pubDate>Sun, 05 Oct 2014 21:41:20 +0000</pubDate>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[MySQL]]></category>
		<guid isPermaLink="false">https://usage.cc/?p=202</guid>

					<description><![CDATA[<p>Mytop is one of my classic open source and free console-based (non-gui) monitoring tool for MySQL database was written by Jereme Zawodny using Per. mytop -u root --prompt -dyour db You&#8217;ll be asked to enter a password &#160; related: http://www.tecmint.com/mytop-mysql-database-monitoring-in-rhel-centos-fedora/</p>
<p>The post <a rel="nofollow" href="https://usage.cc/mytop">mytop</a> appeared first on <a rel="nofollow" href="https://usage.cc">Free Tutorials, Screencasts, Demos - Usage.cc</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>Mytop</strong> is one of my classic open source and free console-based (non-gui) monitoring tool for <strong>MySQL</strong> database was written by <strong>Jereme Zawodny</strong> using <strong>Per.</strong></p>
<pre class="brush: bash; title: ; notranslate">
mytop -u root --prompt -dyour db
</pre>
<p>You&#8217;ll be asked to enter a password</p>
<p>&nbsp;</p>
<p>related: http://www.tecmint.com/mytop-mysql-database-monitoring-in-rhel-centos-fedora/</p>
<p>The post <a rel="nofollow" href="https://usage.cc/mytop">mytop</a> appeared first on <a rel="nofollow" href="https://usage.cc">Free Tutorials, Screencasts, Demos - Usage.cc</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://usage.cc/mytop/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>truncate</title>
		<link>https://usage.cc/truncate</link>
					<comments>https://usage.cc/truncate#respond</comments>
		
		<dc:creator><![CDATA[usage]]></dc:creator>
		<pubDate>Thu, 07 Aug 2014 15:18:21 +0000</pubDate>
				<category><![CDATA[Linux/Unix]]></category>
		<guid isPermaLink="false">https://usage.cc/?p=198</guid>

					<description><![CDATA[<p>How to reduce file size by truncating it truncate -s 0 {filename.txt} src: http://www.cyberciti.biz/faq/truncate-large-text-file-in-unix-linux/</p>
<p>The post <a rel="nofollow" href="https://usage.cc/truncate">truncate</a> appeared first on <a rel="nofollow" href="https://usage.cc">Free Tutorials, Screencasts, Demos - Usage.cc</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>How to reduce file size by truncating it</p>
<pre class="bash" style="padding: 0.667em 0.917em; margin: 0px 0px 1.833em; border: 1px solid #dddddd; overflow: auto; clear: both; font-family: Consolas, 'Andale Mono', Monaco, Courier, 'Courier New', Verdana, sans-serif; font-size: 0.857em; line-height: 1.5em; color: #111111; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; background: #eeeeee;">truncate -s <span style="padding: 0px; margin: 0px; color: #000000;">0</span> <span style="padding: 0px; margin: 0px; color: #7a0874; font-weight: bold;">{</span>filename.txt<span style="padding: 0px; margin: 0px; color: #7a0874; font-weight: bold;">}</span></pre>
<p>src: http://www.cyberciti.biz/faq/truncate-large-text-file-in-unix-linux/</p>
<p>The post <a rel="nofollow" href="https://usage.cc/truncate">truncate</a> appeared first on <a rel="nofollow" href="https://usage.cc">Free Tutorials, Screencasts, Demos - Usage.cc</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://usage.cc/truncate/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>find</title>
		<link>https://usage.cc/find</link>
					<comments>https://usage.cc/find#respond</comments>
		
		<dc:creator><![CDATA[usage]]></dc:creator>
		<pubDate>Sun, 26 Jan 2014 03:25:26 +0000</pubDate>
				<category><![CDATA[Linux/Unix]]></category>
		<guid isPermaLink="false">https://usage.cc/?p=193</guid>

					<description><![CDATA[<p>How to find files larger than 25MB in linux find / -type f -size +25000k -exec ls -lh {} \; &#124; awk &#8216;{ print $9 &#8220;: &#8221; $5 }&#8217; Credit: http://www.cyberciti.biz/faq/find-large-files-linux/ http://www.cyberciti.biz/faq/how-do-i-find-the-largest-filesdirectories-on-a-linuxunixbsd-filesystem/ &#160;</p>
<p>The post <a rel="nofollow" href="https://usage.cc/find">find</a> appeared first on <a rel="nofollow" href="https://usage.cc">Free Tutorials, Screencasts, Demos - Usage.cc</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>How to find files larger than 25MB in linux</p>
<p>find / -type f -size +25000k -exec ls -lh {} \; | awk &#8216;{ print $9 &#8220;: &#8221; $5 }&#8217;</p>
<p>Credit:<br />
http://www.cyberciti.biz/faq/find-large-files-linux/<br />
http://www.cyberciti.biz/faq/how-do-i-find-the-largest-filesdirectories-on-a-linuxunixbsd-filesystem/</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://usage.cc/find">find</a> appeared first on <a rel="nofollow" href="https://usage.cc">Free Tutorials, Screencasts, Demos - Usage.cc</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://usage.cc/find/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>zip</title>
		<link>https://usage.cc/zip</link>
					<comments>https://usage.cc/zip#respond</comments>
		
		<dc:creator><![CDATA[usage]]></dc:creator>
		<pubDate>Mon, 20 Jan 2014 03:57:51 +0000</pubDate>
				<category><![CDATA[Linux/Unix]]></category>
		<guid isPermaLink="false">https://usage.cc/?p=190</guid>

					<description><![CDATA[<p>How to create a zip archive zip -r9 content.zip folder_to_zip/ -r is for recursive -9 is for maximum compression</p>
<p>The post <a rel="nofollow" href="https://usage.cc/zip">zip</a> appeared first on <a rel="nofollow" href="https://usage.cc">Free Tutorials, Screencasts, Demos - Usage.cc</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>How to create a zip archive</p>
<p>zip -r9 content.zip folder_to_zip/</p>
<p>-r is for recursive<br />
-9 is for maximum compression</p>
<p>The post <a rel="nofollow" href="https://usage.cc/zip">zip</a> appeared first on <a rel="nofollow" href="https://usage.cc">Free Tutorials, Screencasts, Demos - Usage.cc</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://usage.cc/zip/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>gzip</title>
		<link>https://usage.cc/gzip</link>
					<comments>https://usage.cc/gzip#respond</comments>
		
		<dc:creator><![CDATA[usage]]></dc:creator>
		<pubDate>Mon, 20 Jan 2014 03:56:06 +0000</pubDate>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<guid isPermaLink="false">https://usage.cc/?p=188</guid>

					<description><![CDATA[<p>How to gz compress a file without deleting the original. gzip &#60; file &#62; file.gz credit: http://unix.stackexchange.com/questions/46786/how-to-tell-gzip-to-keep-original-file</p>
<p>The post <a rel="nofollow" href="https://usage.cc/gzip">gzip</a> appeared first on <a rel="nofollow" href="https://usage.cc">Free Tutorials, Screencasts, Demos - Usage.cc</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>How to gz compress a file without deleting the original.</p>
<pre><code>gzip &lt; file &gt; file.gz</code>



credit: http://unix.stackexchange.com/questions/46786/how-to-tell-gzip-to-keep-original-file</pre>
<p>The post <a rel="nofollow" href="https://usage.cc/gzip">gzip</a> appeared first on <a rel="nofollow" href="https://usage.cc">Free Tutorials, Screencasts, Demos - Usage.cc</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://usage.cc/gzip/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>process memory usage</title>
		<link>https://usage.cc/process-memory-usage</link>
					<comments>https://usage.cc/process-memory-usage#respond</comments>
		
		<dc:creator><![CDATA[usage]]></dc:creator>
		<pubDate>Mon, 18 Mar 2013 05:50:42 +0000</pubDate>
				<category><![CDATA[Linux/Unix]]></category>
		<guid isPermaLink="false">https://usage.cc/?p=181</guid>

					<description><![CDATA[<p>ps -e -o pid,vsz,comm= &#124; sort -n -k 2 http://superuser.com/questions/398862/linux-find-out-what-process-is-using-all-the-ram</p>
<p>The post <a rel="nofollow" href="https://usage.cc/process-memory-usage">process memory usage</a> appeared first on <a rel="nofollow" href="https://usage.cc">Free Tutorials, Screencasts, Demos - Usage.cc</a>.</p>
]]></description>
										<content:encoded><![CDATA[<pre><code>ps -e -o pid,vsz,comm= | sort -n -k 2

http://superuser.com/questions/398862/linux-find-out-what-process-is-using-all-the-ram
</code></pre>
<p>The post <a rel="nofollow" href="https://usage.cc/process-memory-usage">process memory usage</a> appeared first on <a rel="nofollow" href="https://usage.cc">Free Tutorials, Screencasts, Demos - Usage.cc</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://usage.cc/process-memory-usage/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
