<?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>RedHat &#8211; My Web Development</title>
	<atom:link href="https://mywebdevelopment.org/tag/redhat/feed/" rel="self" type="application/rss+xml" />
	<link>https://mywebdevelopment.org</link>
	<description>Always learning something new..</description>
	<lastBuildDate>Tue, 19 Nov 2013 04:48:58 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>My Unix Commands for CentOS &#038; RedHat</title>
		<link>https://mywebdevelopment.org/myunix-commands-for-centos-redhat/</link>
				<pubDate>Wed, 14 Nov 2012 14:15:24 +0000</pubDate>
		<dc:creator><![CDATA[Elias]]></dc:creator>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[RedHat]]></category>

		<guid isPermaLink="false">http://mywebdevelopment.org/?p=105</guid>
				<description><![CDATA[<p>The listed Linux commands are most common with my web development. Other commands get into greater detail in bellow Resource section. # cat /etc/redhat-release To find out the CentOS distro version. # cat /etc/issue To find out the Ubuntu distro version. # cd change directory # du -sch * Breakdown of disk usage. (-a, -d,… <span class="read-more"><a href="https://mywebdevelopment.org/myunix-commands-for-centos-redhat/">Read More &#187;</a></span></p>
<p>The post <a rel="nofollow" href="https://mywebdevelopment.org/myunix-commands-for-centos-redhat/">My Unix Commands for CentOS &#038; RedHat</a> appeared first on <a rel="nofollow" href="https://mywebdevelopment.org">My Web Development</a>.</p>
]]></description>
								<content:encoded><![CDATA[<p>The listed Linux commands are most common with my web development. Other commands get into greater detail in bellow Resource section.</p>
<p># cat /etc/redhat-release<br />
To find out the CentOS distro version.</p>
<p># cat /etc/issue<br />
To find out the Ubuntu distro version.</p>
<p># cd<br />
change directory</p>
<p># du -sch *<br />
Breakdown of disk usage. (-a, -d, -H, k, L, s, x)</p>
<p># kill -9 PID<br />
To kill a process.</p>
<p># ls<br />
This will list what is inside current directory.</p>
<p># ln<br />
Link files together.</p>
<p># ln -s<br />
Creates soft link for files.</p>
<p># mkdir<br />
Make Directory</p>
<p># mkdir blabla<br />
This makes the directory /blabla/</p>
<p># mv<br />
Move files</p>
<p># mv * ..<br />
Moves all files to root</p>
<p># netstat -p<br />
Monitoring ports.</p>
<p># ps aux | grep java<br />
To look for a specific process. This example returns the owner and the PID, along with other information, such as the percentage of CPU and memory usage, size of the command, time the command was launched, and the name of the command.</p>
<p># pwd<br />
This will display your current directory.</p>
<p># rmdir<br />
This removes directory.</p>
<p># rm -fr<br />
Removes all the files from directory.</p>
<p># rm -r<br />
Removes the entire directory.</p>
<p># su root<br />
Switch to super user mode or root.</p>
<p># vmstat 5 10<br />
The preceding command runs vmstat every 5 seconds for 10 iterations.</p>
<p># watch free<br />
You will see the output of the free command updated every 2 seconds. This is similar to &#8220;Ctrl-Alt-Del&#8221; in Windows, it shows your RAM availability.</p>
<p># df -h<br />
That&#8217;s going to tell you how much disk usage you&#8217;re actually using on your server.</p>
<p><strong>Definitions:</strong></p>
<p>ps = process<br />
ps -A = lists all process runing<br />
ps -a = local &amp; all other shell users<br />
ps = local<br />
who = who is logged on</p>
<p><strong>Resources:</strong></p>
<p>CentOS is a free operating system, derived entirely from Red Hat Enterprise Linux: <a title="About CentOS and it's Structure" href="http://en.wikipedia.org/wiki/CentOS" target="_blank">http://en.wikipedia.org/wiki/CentOS</a><br />
Helpful Linux Commands: <a title="Additional Helpful Linux Commands" href="http://www.linuxforums.org/forum/misc/93765-putty-commands.html" target="_blank">http://www.linuxforums.org/forum/misc/93765-putty-commands.html</a><br />
Linux and Unix rm Commands: <a title="Linux and Unix rm Commands" href="http://www.computerhope.com/unix/urm.htm" target="_blank">http://www.computerhope.com/unix/urm.htm</a><br />
Manipulating Files &amp; Folders: <a title="Manipulating Files and Folders with Unix commands" href="http://www.westwind.com/reference/os-x/commandline/files-folders.html" target="_blank">http://www.westwind.com/reference/os-x/commandline/files-folders.html</a><br />
du (Unix) Usage: <a title="du (Unix) about command usage" href="http://en.wikipedia.org/wiki/Du_(Unix)">http://en.wikipedia.org/wiki/Du_(Unix)</a><br />
Linux Consulting: <a title="Linux Consulting.. ln -s example" href="http://frankmash.blogspot.com/2007/11/ln-s-examples.html">http://frankmash.blogspot.com/2007/11/ln-s-examples.html</a></p>
 <script type="text/javascript"><!--
google_ad_client = "ca-pub-9218567626174444";
/* My Web Dev Resources */
google_ad_slot = "3283801538";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<p>The post <a rel="nofollow" href="https://mywebdevelopment.org/myunix-commands-for-centos-redhat/">My Unix Commands for CentOS &#038; RedHat</a> appeared first on <a rel="nofollow" href="https://mywebdevelopment.org">My Web Development</a>.</p>
]]></content:encoded>
										</item>
	</channel>
</rss>
