<?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>LinuxCloudVPS.com Cloud Hosting Blog</title>
	<atom:link href="http://www.linuxcloudvps.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linuxcloudvps.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 02 Jan 2013 10:43:10 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Grep command examples</title>
		<link>http://www.linuxcloudvps.com/blog/83/</link>
		<comments>http://www.linuxcloudvps.com/blog/83/#comments</comments>
		<pubDate>Wed, 02 Jan 2013 10:22:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[grep]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[parsing]]></category>

		<guid isPermaLink="false">http://www.linuxcloudvps.com/blog/?p=83</guid>
		<description><![CDATA[Grep is one of the most used commands in Unix (or Linux). The name &#8220;grep&#8221; means &#8220;general regular expression parser&#8221; The grep command is used to search for text strings or regular expressions within one or more files. It can &#8230; <a href="http://www.linuxcloudvps.com/blog/83/">Continue reading <span class="meta-nav">&#8594;</span></a><p>The post <a href="http://www.linuxcloudvps.com/blog/83/">Grep command examples</a> appeared first on <a href="http://www.linuxcloudvps.com/blog">LinuxCloudVPS.com Cloud Hosting Blog</a></p>
]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.linuxcloudvps.com/blog/83/grep/" rel="attachment wp-att-84"><img class="alignleft size-full wp-image-84" alt="grep" src="http://www.linuxcloudvps.com/blog/wp-content/uploads/2013/01/grep.png" width="128" height="128" /></a>Grep is one of the most used commands in Unix (or Linux). The name &#8220;grep&#8221; means &#8220;general regular expression parser&#8221; The grep command is used to search for text strings or regular expressions within one or more files. It can be very useful in your daily administration work on your Linux <a title="Cloud Hosting" href="http://www.linuxcloudvps.com/cloud-hosting.html" target="_blank">Cloud Hosting</a> account.</p>
<p>&nbsp;</p>
<p><span id="more-83"></span></p>
<p>The basic syntax of grep is:</p>
<pre class="brush: shell; gutter: true">grep pattern target_file</pre>
<p>OK, now that we have the theory, let&#8217;s see some practical examples.</p>
<p>1. Searching for a text string in one file</p>
<pre class="brush: shell; gutter: true">grep &#039;root&#039; /etc/passwd</pre>
<p>2. Searching for a string in multiple files</p>
<pre class="brush: shell; gutter: true">grep &#039;root&#039; /etc/*</pre>
<p>The wild card matches all files in the /etc/directory</p>
<p>3. Showing matching line numbers (-n)</p>
<pre class="brush: shell; gutter: true">grep -n &#039;root&#039; /etc/passwd</pre>
<p>4. Counting the number of matches (-c)</p>
<pre class="brush: shell; gutter: true">grep -c &#039;root&#039; /etc/passwd</pre>
<p>5. Recursive search (-r or -R)</p>
<pre class="brush: shell; gutter: true">grep -r &quot;string&quot; /home/</pre>
<p>Search for the string &#8216;string&#8217; in all the files in the home directory and all its subdirectories.</p>
<p>6. Invert match (-v)</p>
<pre class="brush: shell; gutter: true">grep -v &#039;root&#039; /etc/passwd</pre>
<p>Displays the lines which does not matches the given string</p>
<p>7. Display only the file names which matches the given pattern (-l)</p>
<pre class="brush: shell; gutter: true">grep -rl &quot;string&quot; /home/</pre>
<p>8. Search for full words not partial matches within words (-w)</p>
<pre class="brush: shell; gutter: true">grep -w &quot;fullstring&quot; /home/</pre>
<p>9. Show only the matched string, not the whole line (-o)</p>
<pre class="brush: shell; gutter: true">grep -o &quot;fstring&quot; /home/</pre>
<p>10. Advanced usage of grep</p>
<p>- find out process pid</p>
<pre class="brush: shell; gutter: true">ps aux | grep someprocess</pre>
<p>- multi patterns</p>
<pre class="brush: shell; gutter: true">grep -iE &quot;(something|somethingelse)&quot; file</pre>
<p>- determine which services are enabled at boot</p>
<pre class="brush: shell; gutter: true">chkconfig --list | grep $(runlevel | awk &#039;{ print $2}&#039;):on</pre>
<p>- search for IP addresses</p>
<pre class="brush: shell; gutter: true">grep -Eo &#039;([0-9]{1,3}\.){3}[0-9]{1,3}&#039; /var/log/maillog</pre>
<p>The post <a href="http://www.linuxcloudvps.com/blog/83/">Grep command examples</a> appeared first on <a href="http://www.linuxcloudvps.com/blog">LinuxCloudVPS.com Cloud Hosting Blog</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.linuxcloudvps.com%2Fblog%2F83%2F&amp;title=Grep%20command%20examples" id="wpa2a_2"><img src="http://www.linuxcloudvps.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxcloudvps.com/blog/83/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install and configure APF (Advanced Policy Firewall) on CentOS with cPanel</title>
		<link>http://www.linuxcloudvps.com/blog/how-to-install-and-configure-apf-advanced-policy-firewall-on-centos-with-cpanel/</link>
		<comments>http://www.linuxcloudvps.com/blog/how-to-install-and-configure-apf-advanced-policy-firewall-on-centos-with-cpanel/#comments</comments>
		<pubDate>Mon, 12 Nov 2012 21:22:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[apf]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[install]]></category>

		<guid isPermaLink="false">http://www.linuxcloudvps.com/blog/?p=79</guid>
		<description><![CDATA[APF (Advanced Policy Firewall) is a policy based iptables firewall application which is pretty easy to configure and use. The process of installation and configuration on one of our Cloud VPS accounts is quite simple and takes less than 5 &#8230; <a href="http://www.linuxcloudvps.com/blog/how-to-install-and-configure-apf-advanced-policy-firewall-on-centos-with-cpanel/">Continue reading <span class="meta-nav">&#8594;</span></a><p>The post <a href="http://www.linuxcloudvps.com/blog/how-to-install-and-configure-apf-advanced-policy-firewall-on-centos-with-cpanel/">How to install and configure APF (Advanced Policy Firewall) on CentOS with cPanel</a> appeared first on <a href="http://www.linuxcloudvps.com/blog">LinuxCloudVPS.com Cloud Hosting Blog</a></p>
]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.linuxcloudvps.com/blog/wp-content/uploads/2012/11/firewall-400x288.jpg"><img class="alignleft size-medium wp-image-80" title="firewall-400x288" src="http://www.linuxcloudvps.com/blog/wp-content/uploads/2012/11/firewall-400x288-300x216.jpg" alt="" width="300" height="216" /></a>APF (Advanced Policy Firewall) is a policy based iptables firewall application which is pretty easy to configure and use.</p>
<p>The process of installation and configuration on one of our <a title="Cloud VPS Hosting" href="http://www.linuxcloudvps.com/cloud-vps.html" target="_blank">Cloud VPS</a> accounts is quite simple and takes less than 5 minutes to complete.</p>
<p><span id="more-79"></span></p>
<p>Log in to your server as root, download the software from: http://www.rfxnetworks.com/apf.php (the newest version at the time of writing this article was: 0.9.7_2) unpack it and install it by executing the following commands:</p>
<pre class="brush: bash; gutter: false">cd /root/

wget http://www.rfxnetworks.com/downloads/apf-current.tar.gz 

tar -zxvf http://www.rfxn.com/downloads/apf-current.tar.gz

cd apf-9.7-2

./install.sh</pre>
<p>Below is the general configuration of APF on servers with CentOS and cPanel. For more detailed information on every feature the firewall has, see the README file supplied with the APF sources.</p>
<p>Edit the APF configuration file:</p>
<pre class="brush: bash; gutter: false">vi /etc/apf/conf.apf</pre>
<p>press &#8216;i&#8217; to enter Input mode.</p>
<p>These are inbound TCP ports that need to be open in order to run cPanel behind a firewall: 20,21,22,25,26,37,43,53,80,110,113,143,443,465,873,993,995,2077,2078,2082, 2083,2086,2087,2095,2096 and 3306 (open port 3306 only if you want to remotely access to the MySQL database server).</p>
<p>Find the line starting with &#8216;IG_TCP_CPORTS&#8217; and modify it to:</p>
<pre class="brush: bash; gutter: false">IG_TCP_CPORTS=&quot;20,21,22,25,26,37,43,53,80,110,113,143,443,465,873,993,995,2077,2078,2082,2083,2086,2087,2095,2096,3306&quot;</pre>
<p>Find the line starting with &#8216;IG_UDP_CPORTS&#8217; (inbound UDP ports that must be open) and modify it to:</p>
<pre class="brush: bash; gutter: false">IG_UDP_CPORTS=&quot;53&quot;</pre>
<p>Also modify the following lines:</p>
<pre class="brush: bash; gutter: false">IG_ICMP_TYPES=&quot;0,3,5,8,11,30&quot;

EG_TCP_CPORTS=&quot;21,25,37,43,53,80,443,873,2089&quot; 

EG_UDP_CPORTS=&quot;20,21,53,873&quot;</pre>
<p>where &#8216;IG_ICMP_TYPES&#8217;, &#8216;EG_TCP_CPORTS&#8217; and &#8216;EG_UDP_CPORTS&#8217; are inbound ICMP ports, outbound TCP ports and outbound UDP ports that must be open to run cPanel behind a firewall.</p>
<p>Start APF using the following command:</p>
<pre class="brush: bash; gutter: false">/usr/local/sbin/apf -s</pre>
<p>Test the firewall with a port scanner like nmap or using a similar tool and if everything is OK, change DEVEL_MODE=&#8221;1&#8243; option in the &#8216;/etc/apf/conf.apf&#8217; configuration file to 0.</p>
<p>Restart APF for the changes to take effect using:</p>
<pre class="brush: bash; gutter: false">/usr/local/sbin/apf -r</pre>
<p>To autostart APF at boot time execute the following command:</p>
<pre class="brush: bash; gutter: false">chkconfig --level 2345 apf on</pre>
<p>The post <a href="http://www.linuxcloudvps.com/blog/how-to-install-and-configure-apf-advanced-policy-firewall-on-centos-with-cpanel/">How to install and configure APF (Advanced Policy Firewall) on CentOS with cPanel</a> appeared first on <a href="http://www.linuxcloudvps.com/blog">LinuxCloudVPS.com Cloud Hosting Blog</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.linuxcloudvps.com%2Fblog%2Fhow-to-install-and-configure-apf-advanced-policy-firewall-on-centos-with-cpanel%2F&amp;title=How%20to%20install%20and%20configure%20APF%20%28Advanced%20Policy%20Firewall%29%20on%20CentOS%20with%20cPanel" id="wpa2a_4"><img src="http://www.linuxcloudvps.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxcloudvps.com/blog/how-to-install-and-configure-apf-advanced-policy-firewall-on-centos-with-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bash Array:  find the first missing integer</title>
		<link>http://www.linuxcloudvps.com/blog/bash-array-find-the-first-missing-integer/</link>
		<comments>http://www.linuxcloudvps.com/blog/bash-array-find-the-first-missing-integer/#comments</comments>
		<pubDate>Mon, 22 Oct 2012 20:30:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[missing number]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://www.linuxcloudvps.com/blog/?p=74</guid>
		<description><![CDATA[The script below will find the first missing number in an array of integers. #!/bin/bash array=(100 101 102 105) for (( i = 0 ; i &#60; $((${#array[@]}-1)) ; i++ )); do if [ $((${array[$i]}+1)) -ne ${array[$(($i + 1))]} ] &#8230; <a href="http://www.linuxcloudvps.com/blog/bash-array-find-the-first-missing-integer/">Continue reading <span class="meta-nav">&#8594;</span></a><p>The post <a href="http://www.linuxcloudvps.com/blog/bash-array-find-the-first-missing-integer/">Bash Array:  find the first missing integer</a> appeared first on <a href="http://www.linuxcloudvps.com/blog">LinuxCloudVPS.com Cloud Hosting Blog</a></p>
]]></description>
				<content:encoded><![CDATA[<p>The script below will find the first missing number in an array of integers.</p>
<p><span id="more-74"></span></p>
<pre class="brush: shell; gutter: true">#!/bin/bash
array=(100 101 102 105)
for (( i = 0 ; i &lt; $((${#array[@]}-1)) ; i++ )); do
if [ $((${array[$i]}+1)) -ne ${array[$(($i + 1))]} ] ;then 
    M_NUMBER=&quot;$((${array[$i]}+1))&quot;
    break
fi
done

echo $M_NUMBER</pre>
<p>Explaining the code:</p>
<p>$((${#array[@]}-1)) &#8211; number of array elements minus one</p>
<p>$((${array[$i]}+1)) &#8211; i-element of the array plus one, starting from the first element</p>
<p>${array[$(($i + 1))]} &#8211; i+1 (next) element of the array, starting from the second element</p>
<p>If the next element is not equal to previous element plus one, the script will print the missing number &#8211; $((${array[$i]}+1))</p>
<p><span style="color: #ff0000;"><strong>PS.</strong></span> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.</p>
<p>&nbsp;</p>
<p>The post <a href="http://www.linuxcloudvps.com/blog/bash-array-find-the-first-missing-integer/">Bash Array:  find the first missing integer</a> appeared first on <a href="http://www.linuxcloudvps.com/blog">LinuxCloudVPS.com Cloud Hosting Blog</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.linuxcloudvps.com%2Fblog%2Fbash-array-find-the-first-missing-integer%2F&amp;title=Bash%20Array%3A%20%20find%20the%20first%20missing%20integer" id="wpa2a_6"><img src="http://www.linuxcloudvps.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxcloudvps.com/blog/bash-array-find-the-first-missing-integer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why cloud computing will revolutionize the way we think about computing</title>
		<link>http://www.linuxcloudvps.com/blog/why-cloud-computing-will-revolutionize-the-way-we-think-about-computing/</link>
		<comments>http://www.linuxcloudvps.com/blog/why-cloud-computing-will-revolutionize-the-way-we-think-about-computing/#comments</comments>
		<pubDate>Thu, 19 Jul 2012 17:03:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linuxcloudvps]]></category>
		<category><![CDATA[Cloud computing]]></category>
		<category><![CDATA[cloud hosting]]></category>
		<category><![CDATA[cloud vps]]></category>

		<guid isPermaLink="false">http://www.linuxcloudvps.com/blog/?p=39</guid>
		<description><![CDATA[Not everyone is convinced about the significance of the burgeoning shift towards cloud computing, but as time goes by and more and more names become associated with cloud computing, it is beginning to dawn on the computing world just how &#8230; <a href="http://www.linuxcloudvps.com/blog/why-cloud-computing-will-revolutionize-the-way-we-think-about-computing/">Continue reading <span class="meta-nav">&#8594;</span></a><p>The post <a href="http://www.linuxcloudvps.com/blog/why-cloud-computing-will-revolutionize-the-way-we-think-about-computing/">Why cloud computing will revolutionize the way we think about computing</a> appeared first on <a href="http://www.linuxcloudvps.com/blog">LinuxCloudVPS.com Cloud Hosting Blog</a></p>
]]></description>
				<content:encoded><![CDATA[<p>Not everyone is convinced about the significance of the burgeoning shift towards cloud computing, but as time goes by and more and more names become associated with cloud computing, it is beginning to dawn on the computing world just how relevant <a title="Cloud computing" href="http://www.linuxcloudvps.com/cloud-hosting.html">cloud computing</a> is going to be. At the first onset of cloud computing, only the big names like Apple, Google, and Amazon were seen to be paying it some serious attention. And it seems like the pioneers are right when they predicted that cloud computing is the future of computing and that it will revolutionize the way we think about computing.</p>
<p>But how so?<span id="more-39"></span>Well, one pretty obvious answer is the total eradication of the dependence on hardware. Sure, hardware is still necessary to interact with the cloud, but hardware becomes only a tool, a medium, a channel, and nothing more. This means that relying on your Mac or PC or any kind of hardware will be a thing of the past. You can now use any kind of hardware to access your data as long as there is Internet connection.</p>
<p>In the greater scheme of things, for webmasters and <a title="Cloud Hosting" href="http://www.linuxcloudvps.com/cloud-hosting.html">cloud hosting</a> customers, cloud computing and cloud hosting will change the way they buy hosting plans as cloud computing are no longer restricted by physical space and hardware limitations. This means that cloud users can have access to a massive data storage system and a massive amount of resources that can make performance as robust as possible. Again, these resources are not dependent on hardware and are therefore easier and less costly to put together. In other words, cloud computing can also revolutionize the way we think about computing by giving the web enough room to grow and enough space for further performance improvements.</p>
<p><a title="Cloud computing" href="http://www.linuxcloudvps.com/cloud-hosting.html">Cloud computing</a> will also further revolutionize the way we think about computing by making computing synonymous with the Internet. While in the past, computing is one thing and the Internet is just one part of it, the biggest change that cloud computing will bring is that it will drive the importance of the Internet even further. It will make the Internet much more important than it currently is. This does, however, bring some drawbacks, such as the vulnerability of the system to problems pertaining to the Internet connection. This means that if your connection is poor, you will encounter problems. But it will not, in any way, endanger your files or make them inaccessible from another location, where the Internet connection is better.</p>
<p>So it seems clear that cloud computing will revolutionize the way we think about computing. It’s not a flawless system, but it undeniably changes a lot of things we used to know about computing. First, it makes computing less dependent on hardware. Second, it gives computing space for growth. And third, it makes the Internet even more important. Based on these changes, we start to get a glimpse of where cloud computing is planning to take the world of computing or, in other words, where the future of computing is headed.</p>
<p><span style="color: #ff0000;"><strong>PS.</strong></span> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.</p>
<p>The post <a href="http://www.linuxcloudvps.com/blog/why-cloud-computing-will-revolutionize-the-way-we-think-about-computing/">Why cloud computing will revolutionize the way we think about computing</a> appeared first on <a href="http://www.linuxcloudvps.com/blog">LinuxCloudVPS.com Cloud Hosting Blog</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.linuxcloudvps.com%2Fblog%2Fwhy-cloud-computing-will-revolutionize-the-way-we-think-about-computing%2F&amp;title=Why%20cloud%20computing%20will%20revolutionize%20the%20way%20we%20think%20about%20computing" id="wpa2a_8"><img src="http://www.linuxcloudvps.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxcloudvps.com/blog/why-cloud-computing-will-revolutionize-the-way-we-think-about-computing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is it time for you to move to the cloud? (Pros and Cons)</title>
		<link>http://www.linuxcloudvps.com/blog/is-it-time-for-you-to-move-to-the-cloud-pros-and-cons/</link>
		<comments>http://www.linuxcloudvps.com/blog/is-it-time-for-you-to-move-to-the-cloud-pros-and-cons/#comments</comments>
		<pubDate>Sun, 01 Jul 2012 22:15:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linuxcloudvps]]></category>
		<category><![CDATA[cloud benefits]]></category>
		<category><![CDATA[Cloud computing]]></category>
		<category><![CDATA[cloud hosting]]></category>
		<category><![CDATA[cloud pros and cons]]></category>
		<category><![CDATA[cloud servers]]></category>
		<category><![CDATA[cloud vps]]></category>

		<guid isPermaLink="false">http://www.linuxcloudvps.com/blog/?p=25</guid>
		<description><![CDATA[For some, cloud computing is the answer to many problems posed by traditional hosting. For others, cloud hosting is still an unstable, unreliable technology that still needs work. If you used to belong to the second group, you may be &#8230; <a href="http://www.linuxcloudvps.com/blog/is-it-time-for-you-to-move-to-the-cloud-pros-and-cons/">Continue reading <span class="meta-nav">&#8594;</span></a><p>The post <a href="http://www.linuxcloudvps.com/blog/is-it-time-for-you-to-move-to-the-cloud-pros-and-cons/">Is it time for you to move to the cloud? (Pros and Cons)</a> appeared first on <a href="http://www.linuxcloudvps.com/blog">LinuxCloudVPS.com Cloud Hosting Blog</a></p>
]]></description>
				<content:encoded><![CDATA[<p>For some, cloud computing is the answer to many problems posed by traditional hosting. For others, cloud hosting is still an unstable, unreliable technology that still needs work. If you used to belong to the second group, you may be missing out by dismissing the cloud that easily.</p>
<p><span id="more-25"></span>As cannot be avoided, <strong>cloud hosting</strong> does have its drawbacks, with one of it being high initial costs for setup. But based on real-life experiences of small to medium sized businesses, cloud computing, even at its current state, has already brought various advantages, such as reduced computing costs and improved efficiency. Both are advantageous during a recession period. In fact, a number of SMEs who have taken a leap of faith and invested in cloud computing systems have testified to enjoying great benefits from it.</p>
<h1><span style="text-decoration: underline;"><strong>The Pros</strong></span></h1>
<p><strong>Savings on upfront costs.</strong> According to early users of the cloud, the new <a title="Cloud Hosting" href="http://www.linuxcloudvps.com/cloud-hosting.html">cloud hosting</a> option helped them save on their upfront costs by moving their e-mail, web hosting, and virus protection – basic hosting fare – to the cloud.</p>
<p><strong>Savings on utility bills.</strong> Due to the absence of physical hardware to run, cloud hosting also helped companies save on their power bills.</p>
<p><strong>Eliminates hardware upgrades and maintenance.</strong> Again, since there is no need to invest in hardware, there is also no need to upgrade and maintain hardware. Hardware requires a lot of maintenance, otherwise it will cease to work properly. Thankfully, cloud computing has eliminated this problem.</p>
<p><strong>Protection from server crashes.</strong> Physical servers are highly vulnerable to crashes, which translate into downtime and additional costs for data recovery, if needed. Cloud computing helps prevent such problems by keeping data in the cloud, not dependent on any physical hardware, which may eventually run into physical problems.</p>
<p><strong>Improved productivity.</strong> Due to the consistency and the resiliency of the cloud, it tends to result in an improved company productivity.</p>
<p><strong>All-around access from anywhere.</strong> The <a title="Cloud VPS" href="http://www.linuxcloudvps.com/cloud-vps.html">cloud</a> allows all team members or company employees to access data files from any location, as long as there is connection.</p>
<p><strong>Secure storage.</strong> Cloud computing is not as vulnerable as traditional hosting options, making it the more secure choice of storage.</p>
<p><strong>Easier internal collaboration.</strong> The robustness of cloud computing and its flexibility and convenience all help colleagues collaborate more easily.</p>
<h1><span style="text-decoration: underline;"><strong>The Cons</strong></span></h1>
<p><strong>Not 100% immune to security breaches.</strong> As with any kind of hosting platform, cloud computing is not 100% immune to breaches in security. Keep in mind, however, that this should not be taken solely as a point against the cloud since all forms of computing have their own vulnerability. The cloud, in fact, has managed to minimize its vulnerability.</p>
<p><strong>Level of privacy from cloud companies.</strong> The one major problem companies have with cloud computing is that they need to turn their data over to third parties.</p>
<p><strong>Dependence on Internet connection.</strong> The cloud is rendered unusable if there is no Internet connection. This is a major drawback that is keeping many interested users from taking the final plunge to cloud computing.</p>
<p><strong>Data loss due to inexperienced, low-quality <a title="Cloud Hosting" href="http://www.linuxcloudvps.com/cloud-hosting.html">cloud hosting</a> services</strong>. The quality, reliability, and security of cloud computing is currently still dependent on which cloud hosting provider one chooses. This means that if you choose a low quality provider, there is always the risk of losing data or encountering some other problem.</p>
<h1><span style="text-decoration: underline;"><strong>The Conclusion</strong></span></h1>
<p>This comparison shows that cloud computing has more advantages than disadvantages. It is therefore simply a matter of deciding whether you are willing to accept the cons in order to enjoy the pros.</p>
<p><span style="color: #ff0000;"><strong>PS.</strong></span> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.</p>
<p>The post <a href="http://www.linuxcloudvps.com/blog/is-it-time-for-you-to-move-to-the-cloud-pros-and-cons/">Is it time for you to move to the cloud? (Pros and Cons)</a> appeared first on <a href="http://www.linuxcloudvps.com/blog">LinuxCloudVPS.com Cloud Hosting Blog</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.linuxcloudvps.com%2Fblog%2Fis-it-time-for-you-to-move-to-the-cloud-pros-and-cons%2F&amp;title=Is%20it%20time%20for%20you%20to%20move%20to%20the%20cloud%3F%20%28Pros%20and%20Cons%29" id="wpa2a_10"><img src="http://www.linuxcloudvps.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxcloudvps.com/blog/is-it-time-for-you-to-move-to-the-cloud-pros-and-cons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why You Should Move From An Ordinary VPS To A Cloud VPS?</title>
		<link>http://www.linuxcloudvps.com/blog/why-you-should-move-from-an-ordinary-vps-to-a-cloud-vps/</link>
		<comments>http://www.linuxcloudvps.com/blog/why-you-should-move-from-an-ordinary-vps-to-a-cloud-vps/#comments</comments>
		<pubDate>Thu, 31 May 2012 21:30:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linuxcloudvps]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[cloud benefits]]></category>
		<category><![CDATA[cloud hosting]]></category>
		<category><![CDATA[cloud vps]]></category>
		<category><![CDATA[Linux Cloud]]></category>

		<guid isPermaLink="false">http://www.linuxcloudvps.com/blog/?p=19</guid>
		<description><![CDATA[Sometime back, the entire computing world was caught in a heated debate about which one is better for hosting websites, a dedicated server or a Virtual Private Server. The consensus back then was that a Virtual Private Server was better, &#8230; <a href="http://www.linuxcloudvps.com/blog/why-you-should-move-from-an-ordinary-vps-to-a-cloud-vps/">Continue reading <span class="meta-nav">&#8594;</span></a><p>The post <a href="http://www.linuxcloudvps.com/blog/why-you-should-move-from-an-ordinary-vps-to-a-cloud-vps/">Why You Should Move From An Ordinary VPS To A Cloud VPS?</a> appeared first on <a href="http://www.linuxcloudvps.com/blog">LinuxCloudVPS.com Cloud Hosting Blog</a></p>
]]></description>
				<content:encoded><![CDATA[<p>Sometime back, the entire computing world was caught in a heated debate about which one is better for hosting websites, a dedicated server or a Virtual Private Server. The consensus back then was that a Virtual Private Server was better, since it was cheaper to set up, cheaper to run, and allowed hardware to run at higher utilization ratings. A VPS was also dubbed as the more flexible, more widely customizable choice. But it was also true that Virtual Private Servers also posed a lot of problems, especially pertaining to maintenance and backups.</p>
<p><span id="more-19"></span>After it was decided that a VPS was better, the debate moved on to whether a VPS should be Windows-based or Linux-based. The consensus, this time, was that a <a title="Linux VPS" href="http://www.linuxcloudvps.com/cloud-vps.html">Linux VPS</a> was better as it provided greater flexibility, more reliability, and surer stability.</p>
<p>And now, the debate has moved on yet again, this time to whether a cloud VPS is better than an ordinary VPS, either Windows-based or Linux-based.</p>
<p>A <a title="Cloud VPS" href="http://www.linuxcloudvps.com/cloud-vps.html">cloud VPS</a> is a virtual private server located on the cloud, which means it is always available as long as the Internet connection is up and running. While a VPS can give you robust performance and more resources, it is undeniable that the benefits of a cloud VPS are far greater especially for businesses.</p>
<p>Here are some of the reasons why you should move from an ordinary VPS to a cloud VPS:</p>
<ul>
<ul>100% uptime for networks. Your hosting package as well as the entire network running on the cloud will always be up and available to other members of the network. This means that even if you’re not in front of your computer, other members of the team or company can access your important company files through the cloud.</ul>
</ul>
<ul>
<ul>Your site will be constantly up. There is nothing more disastrous for a business, especially web-based or e-commerce businesses, than to have their company websites be unavailable. This can translate to lots of wasted opportunities, opportunities that would have otherwise translated into lots of income for the company. With a cloud VPS, though, your site will always be up, ready to accept customers and make money for your business.</ul>
</ul>
<ul>
<ul>You have unlimited growth potential. A cloud VPS and a regular VPS are the same in many ways, but one of the ways in which they differ is that, in a cloud VPS, resources are on-demand. So if you need more, you will easily be able to get more.</ul>
</ul>
<ul>
<ul>Pay for what you need. In cloud hosting, you will only pay for the resources that you actually use up. In regular VPS hosting, this is not possible because hardware has to be setup and has to have limits. Thus, the two have different payment schemes. In an ordinary VPS, you will pay predictable similar costs every month. In a cloud VPS, however, you will be billed for each minute. This means you will not pay for resources you didn’t use in the first place.</ul>
</ul>
<ul>
<ul>Cloud VPS is instantly scalable. Both cloud VPS and ordinary VPS are scalable. The difference is, an ordinary VPS can be quickly scalable by purchasing additional resources such as memory, disk space, and processor speed, but a cloud VPS is ‘instantly’ scalable, without the need for purchasing anything. You can use up as much bandwidth, CPU space, and memory as you need then be billed accordingly.</ul>
</ul>
<p>The ideal hosting plan for any company is not a specific choice between these two, but a relative choice depending on what the company requires.</p>
<p><span style="color: #ff0000;"><strong>PS.</strong></span> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.</p>
<p>The post <a href="http://www.linuxcloudvps.com/blog/why-you-should-move-from-an-ordinary-vps-to-a-cloud-vps/">Why You Should Move From An Ordinary VPS To A Cloud VPS?</a> appeared first on <a href="http://www.linuxcloudvps.com/blog">LinuxCloudVPS.com Cloud Hosting Blog</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.linuxcloudvps.com%2Fblog%2Fwhy-you-should-move-from-an-ordinary-vps-to-a-cloud-vps%2F&amp;title=Why%20You%20Should%20Move%20From%20An%20Ordinary%20VPS%20To%20A%20Cloud%20VPS%3F" id="wpa2a_12"><img src="http://www.linuxcloudvps.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxcloudvps.com/blog/why-you-should-move-from-an-ordinary-vps-to-a-cloud-vps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Cloud VPS</title>
		<link>http://www.linuxcloudvps.com/blog/what-is-cloud-vps/</link>
		<comments>http://www.linuxcloudvps.com/blog/what-is-cloud-vps/#comments</comments>
		<pubDate>Wed, 23 May 2012 18:12:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linuxcloudvps]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[Cloud computing]]></category>
		<category><![CDATA[cloud hosting]]></category>
		<category><![CDATA[cloud servers]]></category>
		<category><![CDATA[cloud vps]]></category>
		<category><![CDATA[Virtual private server]]></category>

		<guid isPermaLink="false">http://www.linuxcloudvps.com/blog/?p=5</guid>
		<description><![CDATA[The term &#8216;cloud vps&#8216; refers to fully redundant and self-healing virtualized servers with automatic fail-over capabilities accessible from anywhere on the Internet. The actual term &#8216;cloud&#8217; is coming from telephony services in telecommunication companies who until the 1990s provisioned mainly &#8230; <a href="http://www.linuxcloudvps.com/blog/what-is-cloud-vps/">Continue reading <span class="meta-nav">&#8594;</span></a><p>The post <a href="http://www.linuxcloudvps.com/blog/what-is-cloud-vps/">What is Cloud VPS</a> appeared first on <a href="http://www.linuxcloudvps.com/blog">LinuxCloudVPS.com Cloud Hosting Blog</a></p>
]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.linuxcloudvps.com/blog/wp-content/uploads/2012/05/Cloud-computing-1.gif"><img class="size-medium wp-image-16 alignleft" src="http://www.linuxcloudvps.com/blog/wp-content/uploads/2012/05/Cloud-computing-1-300x210.gif" alt="" width="300" height="210" /></a></p>
<p>The term &#8216;<a title="Cloud VPS" href="http://www.linuxcloudvps.com/cloud-vps.html">cloud vps</a>&#8216; refers to fully redundant and self-healing virtualized servers with automatic fail-over capabilities accessible from anywhere on the Internet.</p>
<p>The actual term &#8216;cloud&#8217; is coming from telephony services in telecommunication companies who until the 1990s provisioned mainly dedicated point to point data circuits. Then they began providing Virtual Private Network (VPN) services with corresponding quality of service but at a greatly reduced price.</p>
<p><span id="more-5"></span>Cloud hosting is based on the most advanced Cloud computing technologies that allow virtually unlimited number of physical servers to act as a rock solid efficient, stable, secure and reliable system intended to deliver more flexibility to clients who can create and destroy their own cloud virtual servers or increase/decrease their cloud virtual server computing resources almost instantly as needed. It is an emerging technology that enables the pooling of large number of separate physical servers and computing devices together so that they act like one, and websites or consumers resources (active processes, user applications) pull resources for computing from the pool as a whole.</p>
<p>Other hosting solutions (shared hosting, conventional VPS hosting or dedicated server hosting) rely on one server machine only where all CPU, RAM and disk resources are limited to the host server resources itself, while <a title="Cloud Hosting" href="http://www.linuxcloudvps.com">cloud hosting</a> is flexible and fully redundant because it is guaranteed by many physical servers. The cloud technology allows higher security of data and seamless customization, full wide range of operating systems for your needs, databases, server software and applications to fit your requirements. Addition of extra resources to a particular <a title="Cloud VPS" href="http://www.linuxcloudvps.com/cloud-vps.html">cloud VPS</a>, such as CPU cores, RAM, primary and backup disk space is easy and instant and thus provide scale out computational resources whenever required to that cloud VPS, without compromising the stability and performance of other cloud servers or even the entire cloud hosting system.</p>
<p>The main benefits of the Cloud VPS Hosting are:</p>
<ul>
<li>Highest level of performance, self-healing and auto fail-over at affordable prices</li>
<li>Guaranteed amount of server resources (CPU, RAM, Disk) at any given point in time</li>
<li>Fully redundant data storage</li>
<li>No single point of failure</li>
<li>Flexible pricing</li>
</ul>
<p>As computer technology continues to advance so do the capabilities of the cloud hosting. As faster servers become available and storage area networks (SANs) continue to grow in size, the cloud hosting industry will also continuously enhance its services and standards. The improvements in the computer technology will most likely demonstrate on the reduction of time it takes to execute a simple computing process. It goes without saying that the data processed in an hour today can be done in just a minute or even seconds in the future. Faster processors, RAM, disk drives and network connections will be the main factors of this advancement.</p>
<p>The Cloud VPS hosting shall become the primary hosting choice of companies and individuals due to the excellent dynamic and versatile features it offers, due to its flexibility, unbeaten reliability, ease of management and use, cost-effectiveness and price-performance ratio it offers. If you are a website owner and want to give your precious visitors the best ever site browsing experience by making it more time efficient, then you may need to think about it and move to a <a title="Cloud VPS" href="http://www.linuxcloudvps.com/cloud-vps.html">cloud VPS</a>.</p>
<p><span style="color: #ff0000;"><strong>PS.</strong></span> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.</p>
<p>The post <a href="http://www.linuxcloudvps.com/blog/what-is-cloud-vps/">What is Cloud VPS</a> appeared first on <a href="http://www.linuxcloudvps.com/blog">LinuxCloudVPS.com Cloud Hosting Blog</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.linuxcloudvps.com%2Fblog%2Fwhat-is-cloud-vps%2F&amp;title=What%20is%20Cloud%20VPS" id="wpa2a_14"><img src="http://www.linuxcloudvps.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.linuxcloudvps.com/blog/what-is-cloud-vps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
