<?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>Virtual Private Server Cloud Blog &#124; VPS.NET &#187; Software</title>
	<atom:link href="http://www.vps.net/blog/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vps.net/blog</link>
	<description>News from the VPS.net Cloud</description>
	<lastBuildDate>Tue, 07 Feb 2012 17:37:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Installing Percona Server on a CentOS VPS</title>
		<link>http://www.vps.net/blog/2011/09/22/installing-percona-server-on-centos/</link>
		<comments>http://www.vps.net/blog/2011/09/22/installing-percona-server-on-centos/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 19:18:51 +0000</pubDate>
		<dc:creator>Terry Myers</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[The Cloud]]></category>
		<category><![CDATA[Percona]]></category>
		<category><![CDATA[Speed]]></category>

		<guid isPermaLink="false">http://www.vps.net/blog/?p=852</guid>
		<description><![CDATA[We&#8217;re speed freaks here at VPS.NET. We&#8217;re constantly tweaking kernels, services, and optimizing our code to make sure things are faster than you can even imagine. Nobody likes a slow site &#8212; especially not Google. So, a fast site can &#8230; <a href="http://www.vps.net/blog/2011/09/22/installing-percona-server-on-centos/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re speed freaks here at VPS.NET. We&#8217;re constantly tweaking kernels, services, and optimizing our code to make sure things are faster than you can even imagine. Nobody likes a slow site &#8212; <a href="http://www.mattcutts.com/blog/site-speed/" target="_blank">especially not Google</a>. So, a fast site can not only keep users on your site longer, but also help you attract new traffic.</p>
<p>One of the newest tools we&#8217;ve started using to increase the speed of sites is a drop in MySQL replacement, <a href="http://www.percona.com/software/" target="_blank">Percona Server</a>. Percona&#8217;s been around quite awhile, and like us, they&#8217;re also obsessed with speed. They&#8217;ve developed a drop in replacement that is compatible with MySQL databases and also <a title="cPanel VPS" href="http://vps.net/product/cloud-hosting/vps.net-is-perfect-for-cpanel-hosting/">cPanel servers</a>.</p>
<p>We&#8217;ve found that while MySQL works amazingly well for most sites, sites that see over 20-30 visitors online at a time, Percona accels. Performance is more consistent, while also being sometimes upwards of 30-40% faster. Percona has <a href="http://www.percona.com/software/percona-server/benchmarks/" target="_blank">published benchmarks themselves</a>, which we&#8217;ve found to be inline with our own tests. Enough about it the server though, lets get to installing it!</p>
<p><span id="more-852"></span>Since almost all of our users will already have MySQL installed, we&#8217;ll start with removing it first. We can remove the MySQL service, without effecting the existing databases. Our first step will be to stop the running services to avoid corruption:</p>
<p>/etc/init.d/httpd stop ; /etc/init.d/exim stop ; /etc/init.d/pure-ftpd stop ; /etc/init.d/cpanel stop ; /etc/init.d/crond stop ; /etc/init.d/mysql stop ; /etc/init.d/exim stop ;</p>
<p>Next we&#8217;ll want to find out what MySQL packages are currently installed. We can do that by running the following command:</p>
<p>yum list installed | grep -i mysql</p>
<p>In almost all circumstances, we&#8217;ll see something like the following:</p>
<p>root@server1 [/]# yum list installed | grep -i mysql</p>
<p>MySQL-bench.x86_64                       5.0.92-0.glibc23              installed<br />
MySQL-client.x86_64                      5.0.92-0.glibc23              installed<br />
MySQL-devel.x86_64                       5.0.92-0.glibc23              installed<br />
MySQL-server.x86_64                      5.0.92-0.glibc23              installed<br />
MySQL-shared.x86_64                      5.0.92-0.glibc23              installed</p>
<p>We can then remove the packages, as they&#8217;ll no longer be necessary. As a note, when we remove these packages the databases will still be intact, however, when performing any service maintenance, it is always wise to backup all data. We can remove the packages by running the following command:</p>
<p>yum remove MySQL*</p>
<p>We can now work towards installing Percona. First we&#8217;ll need to add the repository:</p>
<p>rpm -Uvh http://www.percona.com/downloads/percona-release/percona-release-0.0-1.x86_64.rpm</p>
<p>We can now install the RPMs by running the following command:</p>
<p>yum install Percona-Server-client-51 Percona-Server-server-51</p>
<p>After successful installation, it is safe to restart all services.</p>
<p>/etc/init.d/httpd start ; /etc/init.d/exim start ; /etc/init.d/pure-ftpd start ; /etc/init.d/cpanel start ;/etc/init.d/crond start ; /etc/init.d/mysql start ; /etc/init.d/exim start</p>
<p>Some users may need to recompile PHP in order for dynamic pages to work properly. cPanel users will want to login to WHM, and go to the Update preferences. From there, simply choose for cPanel to never update MySQL. It should be noted that you will be responsible for maintaining Percona in the future, and will be required to manually update it.</p>
<p>Enjoy the increased performance, and we&#8217;ll continue to do what we can to make sure your website is online and fast. If you&#8217;re using Percona, you may want to look into <a href="http://www.vps.net/blog/2010/04/26/addon-services-available/" target="_blank">using LiteSpeed</a>, which is another way to increase the speed and stability of your site, and is available from VPS.NET for $14 a month.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2011%2F09%2F22%2Finstalling-percona-server-on-centos%2F&amp;title=Installing+Percona+Server+on+a+CentOS+VPS" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/digg.png" alt="digg Installing Percona Server on a CentOS VPS" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2011%2F09%2F22%2Finstalling-percona-server-on-centos%2F&amp;title=Installing+Percona+Server+on+a+CentOS+VPS" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/reddit.png" alt="reddit Installing Percona Server on a CentOS VPS" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2011%2F09%2F22%2Finstalling-percona-server-on-centos%2F&amp;title=Installing+Percona+Server+on+a+CentOS+VPS" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/stumbleupon.png" alt="stumbleupon Installing Percona Server on a CentOS VPS" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.vps.net%2Fblog%2F2011%2F09%2F22%2Finstalling-percona-server-on-centos%2F&amp;headline=Installing+Percona+Server+on+a+CentOS+VPS" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/yahoo_buzz.png" alt="yahoo buzz Installing Percona Server on a CentOS VPS" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Installing+Percona+Server+on+a+CentOS+VPS&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2011%2F09%2F22%2Finstalling-percona-server-on-centos%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dzone.png" alt="dzone Installing Percona Server on a CentOS VPS" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Installing+Percona+Server+on+a+CentOS+VPS&amp;u=http%3A%2F%2Fwww.vps.net%2Fblog%2F2011%2F09%2F22%2Finstalling-percona-server-on-centos%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/facebook.png" alt="facebook Installing Percona Server on a CentOS VPS" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Installing+Percona+Server+on+a+CentOS+VPS&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2011%2F09%2F22%2Finstalling-percona-server-on-centos%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/delicious.png" alt="delicious Installing Percona Server on a CentOS VPS" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Installing+Percona+Server+on+a+CentOS+VPS&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2011%2F09%2F22%2Finstalling-percona-server-on-centos%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dotnetkicks.png" alt="dotnetkicks Installing Percona Server on a CentOS VPS" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Installing+Percona+Server+on+a+CentOS+VPS&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2011%2F09%2F22%2Finstalling-percona-server-on-centos%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dotnetshoutout.png" alt="dotnetshoutout Installing Percona Server on a CentOS VPS" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2011%2F09%2F22%2Finstalling-percona-server-on-centos%2F&amp;title=Installing+Percona+Server+on+a+CentOS+VPS&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/linkedin.png" alt="linkedin Installing Percona Server on a CentOS VPS" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.vps.net%2Fblog%2F2011%2F09%2F22%2Finstalling-percona-server-on-centos%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/technorati.png" alt="technorati Installing Percona Server on a CentOS VPS" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.vps.net%2Fblog%2F2011%2F09%2F22%2Finstalling-percona-server-on-centos%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/twitter.png" alt="twitter Installing Percona Server on a CentOS VPS" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2011%2F09%2F22%2Finstalling-percona-server-on-centos%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/google_buzz.png" alt="google buzz Installing Percona Server on a CentOS VPS" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.vps.net/blog/2011/09/22/installing-percona-server-on-centos/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>VPS.NET interview with Shane &amp; Kendall from Peppermint OS.</title>
		<link>http://www.vps.net/blog/2010/07/16/vps-net-interview-with-shane-kendall-from-peppermint-os/</link>
		<comments>http://www.vps.net/blog/2010/07/16/vps-net-interview-with-shane-kendall-from-peppermint-os/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 16:16:47 +0000</pubDate>
		<dc:creator>Terry Myers</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[The Cloud]]></category>
		<category><![CDATA[Peppermint OS]]></category>
		<category><![CDATA[Sponsorship]]></category>

		<guid isPermaLink="false">http://www.vps.net/blog/?p=656</guid>
		<description><![CDATA[:: Tell us a little bit about Peppermint Linux. What&#8217;s different about it from the other OS&#8217;s &#38; how do you envision it being used? Kendall Weaver &#8211; Peppermint OS is a Linux distribution derived from Lubuntu 10.04 Alpha 3 &#8230; <a href="http://www.vps.net/blog/2010/07/16/vps-net-interview-with-shane-kendall-from-peppermint-os/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>:: Tell us a little bit about Peppermint Linux. What&#8217;s different about it from the other OS&#8217;s &amp; how do you envision it being used?</strong></p>
<p><strong> </strong>Kendall Weaver &#8211; Peppermint OS is a Linux distribution derived from Lubuntu 10.04 Alpha 3 using integrated web applications and some system tools sourced from Linux Mint.  Probably the biggest distinguishing factor regarding Peppermint is that, unlike many other web/cloud centric operating systems, we&#8217;re trying hard to keep a familiar desktop experience with the shallowest possible learning curve, all while concentrating on speed and stability as our foremost targets.  One thing we did not want to do was make it difficult for users to install and use local applications.</p>
<p>We see Peppermint as a form of hybrid that offers many of the features of the new &#8220;cloud&#8221; operating systems coming forth, but without sacrificing the familiarity and extensibility of more traditional &#8220;desktop&#8221; operating systems.  Modern computer users, both at work and at play, are now using a combination of both local and web applications in order to get things done and we&#8217;re wanting to give the world a system that doesn&#8217;t punish the user for choosing one over the other.</p>
<p>Personally, I envision Peppermint being used in any situation where someone depends on a combination of local and web applications in order to be productive.  We&#8217;ve already received great praise for our integration of web applications using Mozilla Prism and in the future I see more people demanding this sort of functionality in their operating systems.</p>
<p><strong>:: How long as the Peppermint Linux project been underway?</strong></p>
<p>Kendall Weaver &#8211; Peppermint technically started back in January at the local pub after Shane and I got into a conversation about the future of desktop Linux, what has kept certain distributions from becoming more mainstream, and what we would do differently if we had the opportunity.  We thought up the name almost immediately and it came from us wanting to do something in a similar vein as Linux Mint, but a lot &#8220;spicier&#8221; if you will.  I fooled around with a number of different ideas and did a lot of research as to exactly how to go about building Peppermint.  I finally had a solid game plan in late March which led to our Private Beta a few weeks later.</p>
<p><strong>:: Obviously you have some relationship to Linux Mint. How close is that?</strong></p>
<p>Kendall Weaver &#8211; This past November I was perusing the Linux Mint forum and saw that their Fluxbox edition was without a maintainer at the time.  I kind of took it upon myself to just dive in and start working on it, and in December I was welcomed to the Linux Mint development team as the new maintainer for the Fluxbox edition.  Shortly after the release of Mint 8 Fluxbox I kind of took it upon myself to restart work on an LXDE edition that had originally been talked about for (I think) the Mint 7 release cycle.  I&#8217;m still actively involved in Linux Mint and I have no plans to stop at any point.  It&#8217;s been a little more difficult for the Mint 9 cycle as I have my day job and Peppermint taking up a large chunk of my time.  Due to the popularity of Peppermint thus far and the maintenance workload associated with it I feel that at some point I will have to step down as a Mint maintainer, simply because I don&#8217;t feel that I&#8217;ll be giving the Mint releases the attention they need, but when this happens I don&#8217;t want it to affect the good working relationship we have at this point.</p>
<p><strong>:: July 19th you release Peppermint Ice &#8230; nervous at all?</strong></p>
<p>Shane Remington &#8211; About a couple of weeks ago we started getting nervous due to the fact we were overloading our server space at MidPhase by massive amounts of downloads of Peppermint One !! But, now that we have migrated to VPS.net there is not one speck of nervousness at all. Now we have nothing but 100% pure excitement and adrenaline to get Peppermint Ice into the hands of all that are waiting for the release and those yet to discover our operating system.</p>
<p>Kendall has written a very sleek Cloud/Web Application Launcher called “Ice” that will integrate into the system. “Ice”  is an Site Specific Browser [SSB] application that will launch a cloud / web app or web site in its own window and act as if it is installed locally on the machine. In theory, you could have next to no locally running programs on Peppermint and deliver them all to yourself via your own customized menu system of “Ice” launchers, which is how I operate my own laptop. In Peppermint Ice, Chromium will be the default browser and we expect to integrate with Google Cloud Print once they have it ready to launch and alleviate the necessity for local print services on the OS.</p>
<p><strong>:: You have a little bit of a unique story about how you reached out to VPS.NET. Care to share that at all?</strong></p>
<p>Shane Remington &#8211; We had been a live project for a little over a month and already pushing 200K downloads of our operating system. As I said earlier, we needed to mirgate quickly so we could keep supporting this onslaught of direct downloads. As a young project, getting popular rapidly, and being open source, there is just little to no funding and we needed a hosting solution quickly. The awesome team at Midphase kindly turned their eyes away from us for a few days so we could attempt to raise the funds necessary to migrate and our dedicated users gave whatever they could muster to get us there. Unfortunately, it was not enough to meet the deadline.</p>
<p>So, over a couple of pints at the pub, the night before we needed to have a solution or pull all direct downloads, I decided that I needed to take a grassroots / guerrilla marketing approach and mobilize our user base. In the morning I set out to let Midphase and VPS.net know, through whatever channels necessary, that we are a great new product and that we needed their help to stay alive on their servers. I rallied a friendly Twitter mob, email spree, and Facebook flood within a couple of hours in hopes that someone would see our S.O.S. signal up the chain. Later that afternoon Ditlev, your CEO, contacted me via Twitter and told me that he and VPS.net would grant us sponsorship. We were floored and excited beyond belief all at the same time. Do not underestimate the power of Twitter and Social Media to get things done rapidly&#8230;.</p>
<p>Our team knew that VPS.net and Peppermint OS were a match made in Heaven: Cloud server meets Cloud Hybrid OS. Its perfect.</p>
<p><strong>:: What do you think about cloud computing? How do see Peppermint Linux being used with it?</strong></p>
<p>Shane Remington &#8211; Cloud computing is the future. In fact, its the future right now, and there are a lot of people who remain unaware that they interacting with SaaS / PaaS / Web applications and the cloud structures that serve them today.</p>
<p>Read Write Web published an interesting article several months back with statistics showing that by 2014 there would be upward of 130 million enterprise employees working in the Mobile Cloud on a regular basis. When Kendall and I read that we knew that Peppermint OS was on the right track. We needed to deliver a Hybrid OS that was lightweight, extremely fast, cloud and web app ready, and would work out of the box with little to no tinkering. We would be different than the other &#8220;Cloudy&#8221; OS&#8217;s because we would refuse to toss out the familiar desktop environment, keep local storage, and yet make it simple enough for a child to operate the system when it boots up. 250,000 users and growing say we have hit the nail on the head&#8230;</p>
<p>Kendall Weaver &#8211; I believe that with the necessity of technological mobility becoming ever more present in our daily lives, the cloud is becoming a necessity along with it.  This isn&#8217;t limited to business either.  We&#8217;re finding more uses for the cloud and web based technologies all the time ranging from personal file storage to education and the ways we interact with each other in general.  I see Peppermint as helping to bridge the gap between the cloud and the desktop and I see it showing many of us what can happen when we start working to combine the best of both worlds.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F07%2F16%2Fvps-net-interview-with-shane-kendall-from-peppermint-os%2F&amp;title=VPS.NET+interview+with+Shane+%26+Kendall+from+Peppermint+OS." ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/digg.png" alt="digg VPS.NET interview with Shane & Kendall from Peppermint OS." title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F07%2F16%2Fvps-net-interview-with-shane-kendall-from-peppermint-os%2F&amp;title=VPS.NET+interview+with+Shane+%26+Kendall+from+Peppermint+OS." ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/reddit.png" alt="reddit VPS.NET interview with Shane & Kendall from Peppermint OS." title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F07%2F16%2Fvps-net-interview-with-shane-kendall-from-peppermint-os%2F&amp;title=VPS.NET+interview+with+Shane+%26+Kendall+from+Peppermint+OS." ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/stumbleupon.png" alt="stumbleupon VPS.NET interview with Shane & Kendall from Peppermint OS." title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F07%2F16%2Fvps-net-interview-with-shane-kendall-from-peppermint-os%2F&amp;headline=VPS.NET+interview+with+Shane+%26+Kendall+from+Peppermint+OS." ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/yahoo_buzz.png" alt="yahoo buzz VPS.NET interview with Shane & Kendall from Peppermint OS." title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=VPS.NET+interview+with+Shane+%26+Kendall+from+Peppermint+OS.&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F07%2F16%2Fvps-net-interview-with-shane-kendall-from-peppermint-os%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dzone.png" alt="dzone VPS.NET interview with Shane & Kendall from Peppermint OS." title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=VPS.NET+interview+with+Shane+%26+Kendall+from+Peppermint+OS.&amp;u=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F07%2F16%2Fvps-net-interview-with-shane-kendall-from-peppermint-os%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/facebook.png" alt="facebook VPS.NET interview with Shane & Kendall from Peppermint OS." title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=VPS.NET+interview+with+Shane+%26+Kendall+from+Peppermint+OS.&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F07%2F16%2Fvps-net-interview-with-shane-kendall-from-peppermint-os%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/delicious.png" alt="delicious VPS.NET interview with Shane & Kendall from Peppermint OS." title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=VPS.NET+interview+with+Shane+%26+Kendall+from+Peppermint+OS.&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F07%2F16%2Fvps-net-interview-with-shane-kendall-from-peppermint-os%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dotnetkicks.png" alt="dotnetkicks VPS.NET interview with Shane & Kendall from Peppermint OS." title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=VPS.NET+interview+with+Shane+%26+Kendall+from+Peppermint+OS.&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F07%2F16%2Fvps-net-interview-with-shane-kendall-from-peppermint-os%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dotnetshoutout.png" alt="dotnetshoutout VPS.NET interview with Shane & Kendall from Peppermint OS." title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F07%2F16%2Fvps-net-interview-with-shane-kendall-from-peppermint-os%2F&amp;title=VPS.NET+interview+with+Shane+%26+Kendall+from+Peppermint+OS.&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/linkedin.png" alt="linkedin VPS.NET interview with Shane & Kendall from Peppermint OS." title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F07%2F16%2Fvps-net-interview-with-shane-kendall-from-peppermint-os%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/technorati.png" alt="technorati VPS.NET interview with Shane & Kendall from Peppermint OS." title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F07%2F16%2Fvps-net-interview-with-shane-kendall-from-peppermint-os%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/twitter.png" alt="twitter VPS.NET interview with Shane & Kendall from Peppermint OS." title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F07%2F16%2Fvps-net-interview-with-shane-kendall-from-peppermint-os%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/google_buzz.png" alt="google buzz VPS.NET interview with Shane & Kendall from Peppermint OS." title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.vps.net/blog/2010/07/16/vps-net-interview-with-shane-kendall-from-peppermint-os/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Moving to the Cloud: Creating your first account with your cPanel VPS</title>
		<link>http://www.vps.net/blog/2010/06/24/moving-to-the-cloud-creating-your-first-account-in-cpanel/</link>
		<comments>http://www.vps.net/blog/2010/06/24/moving-to-the-cloud-creating-your-first-account-in-cpanel/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 16:47:58 +0000</pubDate>
		<dc:creator>Terry Myers</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[ISPManager]]></category>
		<category><![CDATA[Moving to the Cloud]]></category>

		<guid isPermaLink="false">http://www.vps.net/blog/?p=630</guid>
		<description><![CDATA[Creating your first account is one of the final steps you need to take before your website will be live on the cloud. Thankfully, it&#8217;s also one of the easier tasks involved. We&#8217;ll go through the steps of creating an &#8230; <a href="http://www.vps.net/blog/2010/06/24/moving-to-the-cloud-creating-your-first-account-in-cpanel/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Creating your first account is one of the final steps you need to take before your website will be live on the cloud. Thankfully, it&#8217;s also one of the easier tasks involved. We&#8217;ll go through the steps of creating an account in both cPanel/WHM.</p>
<p>First login to WHM (Web Host Manager), which is the administrative interface for the cPanel control panel. To do so, you just need to go http://ipaddress.com:2086, where you&#8217;ll be prompted for the root password. Once you login to WHM, go to the &#8220;Create a New Account&#8221; section.</p>
<p>The first steps to create your account are to enter your domain, and preferred login information.</p>
<p><a href="http://www.vps.net/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-24-at-12.33.33-PM.png"><img class="aligncenter size-medium wp-image-631" title="Screen shot 2010-06-24 at 12.33.33 PM" src="http://www.vps.net/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-24-at-12.33.33-PM-300x177.png" alt="Screen shot 2010 06 24 at 12.33.33 PM 300x177 Moving to the Cloud: Creating your first account with your cPanel VPS" width="300" height="177" /></a>If you have pre-defined packages, which set your resource specifications, you can set them in the next step.</p>
<p><a href="http://www.vps.net/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-24-at-12.34.38-PM.png"><img class="aligncenter size-medium wp-image-632" title="Screen shot 2010-06-24 at 12.34.38 PM" src="http://www.vps.net/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-24-at-12.34.38-PM-300x110.png" alt="Screen shot 2010 06 24 at 12.34.38 PM 300x110 Moving to the Cloud: Creating your first account with your cPanel VPS" width="300" height="110" /></a>If you have installed the <a title="RVSkins" href="http://www.rvskins.com/">RVSkin</a> set, you can select from a list of RVSkins for your control panel theme. If you haven&#8217;t purchased the RVSkin set, x3 is a default cPanel which still has the full functionality.</p>
<p><a href="http://www.vps.net/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-24-at-12.35.51-PM.png"><img class="aligncenter size-medium wp-image-633" title="Screen shot 2010-06-24 at 12.35.51 PM" src="http://www.vps.net/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-24-at-12.35.51-PM-300x245.png" alt="Screen shot 2010 06 24 at 12.35.51 PM 300x245 Moving to the Cloud: Creating your first account with your cPanel VPS" width="300" height="245" /></a>In the final section, if you&#8217;re running an offsite mail server, this is the section you&#8217;ll set it in using the remote mail exchanger option. If the VPS itself is hosting the mail server (and most will be), then you&#8217;ll just use the local mail exchanger option.</p>
<p><a href="http://www.vps.net/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-24-at-12.44.29-PM.png"><img class="aligncenter size-medium wp-image-634" title="Screen shot 2010-06-24 at 12.44.29 PM" src="http://www.vps.net/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-24-at-12.44.29-PM-300x138.png" alt="Screen shot 2010 06 24 at 12.44.29 PM 300x138 Moving to the Cloud: Creating your first account with your cPanel VPS" width="300" height="138" /></a>At this point, you&#8217;ll want to double check all the options to make sure that everything is correct. If it is, hit that &#8220;Create Account&#8221; button and watch WHM do it&#8217;s thing. Once it has completed, you&#8217;ll see the following confirmation page (and no, I do not use 123$$$terry as my password).</p>
<p><a href="http://www.vps.net/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-24-at-12.46.36-PM.png"><img class="aligncenter size-medium wp-image-635" title="Screen shot 2010-06-24 at 12.46.36 PM" src="http://www.vps.net/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-24-at-12.46.36-PM-300x173.png" alt="Screen shot 2010 06 24 at 12.46.36 PM 300x173 Moving to the Cloud: Creating your first account with your cPanel VPS" width="300" height="173" /></a>Don&#8217;t worry ISP Manager users &#8211; you&#8217;re up next week!</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F24%2Fmoving-to-the-cloud-creating-your-first-account-in-cpanel%2F&amp;title=Moving+to+the+Cloud%3A+Creating+your+first+account+with+your+cPanel+VPS" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/digg.png" alt="digg Moving to the Cloud: Creating your first account with your cPanel VPS" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F24%2Fmoving-to-the-cloud-creating-your-first-account-in-cpanel%2F&amp;title=Moving+to+the+Cloud%3A+Creating+your+first+account+with+your+cPanel+VPS" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/reddit.png" alt="reddit Moving to the Cloud: Creating your first account with your cPanel VPS" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F24%2Fmoving-to-the-cloud-creating-your-first-account-in-cpanel%2F&amp;title=Moving+to+the+Cloud%3A+Creating+your+first+account+with+your+cPanel+VPS" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/stumbleupon.png" alt="stumbleupon Moving to the Cloud: Creating your first account with your cPanel VPS" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F24%2Fmoving-to-the-cloud-creating-your-first-account-in-cpanel%2F&amp;headline=Moving+to+the+Cloud%3A+Creating+your+first+account+with+your+cPanel+VPS" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/yahoo_buzz.png" alt="yahoo buzz Moving to the Cloud: Creating your first account with your cPanel VPS" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Moving+to+the+Cloud%3A+Creating+your+first+account+with+your+cPanel+VPS&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F24%2Fmoving-to-the-cloud-creating-your-first-account-in-cpanel%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dzone.png" alt="dzone Moving to the Cloud: Creating your first account with your cPanel VPS" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Moving+to+the+Cloud%3A+Creating+your+first+account+with+your+cPanel+VPS&amp;u=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F24%2Fmoving-to-the-cloud-creating-your-first-account-in-cpanel%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/facebook.png" alt="facebook Moving to the Cloud: Creating your first account with your cPanel VPS" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Moving+to+the+Cloud%3A+Creating+your+first+account+with+your+cPanel+VPS&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F24%2Fmoving-to-the-cloud-creating-your-first-account-in-cpanel%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/delicious.png" alt="delicious Moving to the Cloud: Creating your first account with your cPanel VPS" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Moving+to+the+Cloud%3A+Creating+your+first+account+with+your+cPanel+VPS&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F24%2Fmoving-to-the-cloud-creating-your-first-account-in-cpanel%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dotnetkicks.png" alt="dotnetkicks Moving to the Cloud: Creating your first account with your cPanel VPS" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Moving+to+the+Cloud%3A+Creating+your+first+account+with+your+cPanel+VPS&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F24%2Fmoving-to-the-cloud-creating-your-first-account-in-cpanel%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dotnetshoutout.png" alt="dotnetshoutout Moving to the Cloud: Creating your first account with your cPanel VPS" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F24%2Fmoving-to-the-cloud-creating-your-first-account-in-cpanel%2F&amp;title=Moving+to+the+Cloud%3A+Creating+your+first+account+with+your+cPanel+VPS&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/linkedin.png" alt="linkedin Moving to the Cloud: Creating your first account with your cPanel VPS" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F24%2Fmoving-to-the-cloud-creating-your-first-account-in-cpanel%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/technorati.png" alt="technorati Moving to the Cloud: Creating your first account with your cPanel VPS" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F24%2Fmoving-to-the-cloud-creating-your-first-account-in-cpanel%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/twitter.png" alt="twitter Moving to the Cloud: Creating your first account with your cPanel VPS" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F24%2Fmoving-to-the-cloud-creating-your-first-account-in-cpanel%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/google_buzz.png" alt="google buzz Moving to the Cloud: Creating your first account with your cPanel VPS" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.vps.net/blog/2010/06/24/moving-to-the-cloud-creating-your-first-account-in-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s Birthday Week at VPS.NET</title>
		<link>http://www.vps.net/blog/2010/06/04/its-birthday-week-at-vps-net/</link>
		<comments>http://www.vps.net/blog/2010/06/04/its-birthday-week-at-vps-net/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 23:30:08 +0000</pubDate>
		<dc:creator>Terry Myers</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[The Cloud]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Weekly Update]]></category>

		<guid isPermaLink="false">http://www.vps.net/blog/?p=569</guid>
		<description><![CDATA[Inside every older person is a younger person &#8211; wondering what the hell happened. - Cora Harvey Armstrong There are certain days bartenders look forward to. New Years Eve probably tops the list, followed closely by the Friday after Thanksgiving &#8230; <a href="http://www.vps.net/blog/2010/06/04/its-birthday-week-at-vps-net/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: Arial, Helvetica, sans-serif; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;">Inside every older person is a younger person &#8211; wondering what the hell happened.<br />
<span style="color: #cccc99;"><strong><span style="color: #666600;">- Cora Harvey Armstrong</span></strong></span></span></p>
<p><span id="1275659583854E" style="display: none;"> </span></p>
<p style="text-align: center;">
<p style="text-align: center;"><img class="aligncenter" src="http://www.vps.net/blog/wp-content/uploads/2010/06/funny-pictures-birthday-cat-can-count.jpg" alt="funny pictures birthday cat can count Its Birthday Week at VPS.NET"  title="Its Birthday Week at VPS.NET" /></p>
<p style="text-align: left;">There are certain days bartenders look forward to. New Years Eve probably tops the list, followed closely by the Friday after Thanksgiving (At least in the USA) but there&#8217;s one day that you may not know about. June 3rd; The day of my (Terry!) birthday and the Eve of Nick&#8217;s birthday. What typically starts out as a fun get away from the office, always turns into an expensive mess. While I at least get to enjoy the benefit of a lower insurance bill thanks to turning 25, Nick doesn&#8217;t have it so good. He just got older. Granted, he&#8217;s only 364 days older than me, he&#8217;s still older and that much slower than me on the basketball court. Both of us however have survived, and thrived, and I&#8217;m pretty certain thanks to some enhanced creativity levels, come up with new ideas for VPS.NET! How many of these ideas we actually remember and then decide to be a good idea can certainly be questioned.</p>
<p style="text-align: left;"><a href="http://www.vps.net/blog/wp-content/uploads/2010/06/Fw__Color_approval_sample_—_Inbox-20100604-213520.jpg"><img class="aligncenter size-medium wp-image-580" title="Fw__Color_approval_sample_—_Inbox-20100604-213520" src="http://www.vps.net/blog/wp-content/uploads/2010/06/Fw__Color_approval_sample_—_Inbox-20100604-213520-183x300.jpg" alt="Fw  Color approval sample — Inbox 20100604 213520 183x300 Its Birthday Week at VPS.NET" width="183" height="300" /></a>Recognize this little guy? We&#8217;ve ordered (I believe) 5,000 of the VPS.NET mascot stress balls. If you want one, the most fun way would be to meet up with us at HostingCon. For those of you who unfortunately won&#8217;t be able to attend, we&#8217;re cooking up a way to win one. Probably will involve some sort of fun contest, but it&#8217;s totally worth it right?</p>
<p style="text-align: left;">An update on the &#8220;Meet the Staff&#8221; blog post: we&#8217;re still looking for <a href="http://www.vps.net/blog/2010/05/25/meet-the-staff/" target="_blank">some more votes</a>. So far Kody is winning. Based off what I know about Kody, it&#8217;d definitely be a fun and interesting interview, but lets see if we can get a few more votes. Give him a little competition!</p>
<p style="text-align: left;">We&#8217;ve released a new Cloud Linux template, with the release of 5.5 x64. All the versions you&#8217;re used to (Basic, Apache only, MySQL only, LAMP, LAMP w/ cPanel &amp; ISP Manager) are all there. Go check it out; a lot of users are making the migration from CentOS to Cloud Linux, so it&#8217;s definitely become a fan favorite here at VPS.NET.</p>
<p style="text-align: left;">That&#8217;s all I have for you this week. Definitely keep in touch with us on the <a href="http://www.vps.net/forum/" target="_blank">forums</a> and through the <a href="http://twitter.com/vpsnet" target="_blank">VPS.NET Twitter</a>. We enjoy hearing from you, so don&#8217;t be shy!</p>
<p style="text-align: left;">
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F04%2Fits-birthday-week-at-vps-net%2F&amp;title=It%27s+Birthday+Week+at+VPS.NET" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/digg.png" alt="digg Its Birthday Week at VPS.NET" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F04%2Fits-birthday-week-at-vps-net%2F&amp;title=It%27s+Birthday+Week+at+VPS.NET" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/reddit.png" alt="reddit Its Birthday Week at VPS.NET" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F04%2Fits-birthday-week-at-vps-net%2F&amp;title=It%27s+Birthday+Week+at+VPS.NET" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/stumbleupon.png" alt="stumbleupon Its Birthday Week at VPS.NET" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F04%2Fits-birthday-week-at-vps-net%2F&amp;headline=It%27s+Birthday+Week+at+VPS.NET" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/yahoo_buzz.png" alt="yahoo buzz Its Birthday Week at VPS.NET" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=It%27s+Birthday+Week+at+VPS.NET&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F04%2Fits-birthday-week-at-vps-net%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dzone.png" alt="dzone Its Birthday Week at VPS.NET" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=It%27s+Birthday+Week+at+VPS.NET&amp;u=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F04%2Fits-birthday-week-at-vps-net%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/facebook.png" alt="facebook Its Birthday Week at VPS.NET" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=It%27s+Birthday+Week+at+VPS.NET&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F04%2Fits-birthday-week-at-vps-net%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/delicious.png" alt="delicious Its Birthday Week at VPS.NET" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=It%27s+Birthday+Week+at+VPS.NET&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F04%2Fits-birthday-week-at-vps-net%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dotnetkicks.png" alt="dotnetkicks Its Birthday Week at VPS.NET" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=It%27s+Birthday+Week+at+VPS.NET&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F04%2Fits-birthday-week-at-vps-net%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dotnetshoutout.png" alt="dotnetshoutout Its Birthday Week at VPS.NET" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F04%2Fits-birthday-week-at-vps-net%2F&amp;title=It%27s+Birthday+Week+at+VPS.NET&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/linkedin.png" alt="linkedin Its Birthday Week at VPS.NET" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F04%2Fits-birthday-week-at-vps-net%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/technorati.png" alt="technorati Its Birthday Week at VPS.NET" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F04%2Fits-birthday-week-at-vps-net%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/twitter.png" alt="twitter Its Birthday Week at VPS.NET" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F06%2F04%2Fits-birthday-week-at-vps-net%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/google_buzz.png" alt="google buzz Its Birthday Week at VPS.NET" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.vps.net/blog/2010/06/04/its-birthday-week-at-vps-net/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>VPS.NET in the clouds!</title>
		<link>http://www.vps.net/blog/2010/05/28/vps-net-in-the-clouds/</link>
		<comments>http://www.vps.net/blog/2010/05/28/vps-net-in-the-clouds/#comments</comments>
		<pubDate>Fri, 28 May 2010 20:44:01 +0000</pubDate>
		<dc:creator>Terry Myers</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[The Cloud]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.vps.net/blog/?p=555</guid>
		<description><![CDATA[It&#8217;s been a few weeks since we&#8217;ve done a &#8220;weekly&#8221; update here at VPS.NET. I promise you, the lack of updates certainly had nothing to do with the recent release of Red Dead Redemption. Purely coincidence. The curious ones out &#8230; <a href="http://www.vps.net/blog/2010/05/28/vps-net-in-the-clouds/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://ditlev.dk/snitch/28350_128740043805298_100000079104163_322456_3048105_n.jpg_(604%C3%97453)-20100525-163627.jpg" alt="28350 128740043805298 100000079104163 322456 3048105 n.jpg (604%C3%97453) 20100525 163627 VPS.NET in the clouds!"  title="VPS.NET in the clouds!" /></p>
<p>It&#8217;s been a few weeks since we&#8217;ve done a &#8220;weekly&#8221; update here at VPS.NET. I promise you, the lack of updates certainly had nothing to do with the recent release of Red Dead Redemption. Purely coincidence.</p>
<p>The curious ones out there are probably wondering why the title of this weekly update is &#8220;VPS.NET in the clouds.&#8221; I have the answer for you. Oleh, our Support Manager, had <a href="http://ditlev.dk/snitch/28350_128740043805298_100000079104163_322456_3048105_n.jpg_%28604×453%29-20100525-163627.jpg">this picture of him</a> taken recently. Military fatigues and VPS.NET gear &#8211; that&#8217;s right, we do it hardcore! Please also remind me to never crack a joke at Oleh&#8217;s expense. Pretty sure he&#8217;ll snap me like a twig. Nick, sorry buddy, looks like you&#8217;re still the target of choice!</p>
<p>We&#8217;re also proud to announce that Slackware 13.0 is available for use on VPS.NET. You can find them in the Beta templates section; you have the options of the basic OS installation, MySQL only, Apache Only, or Apache, PHP and MySQL. This means you now have <a href="http://www.vps.net/forum/public-forums/announcements/2598-new-templates-slackware-13-0-x64">9 different choices for operating systems</a> at VPS.NET. Rumor has it a *TENTH* is real close to being released in beta&#8230; feel free to guess at which OS that is <img src='http://www.vps.net/blog/wp-includes/images/smilies/icon_wink.gif' alt="icon wink VPS.NET in the clouds!" class='wp-smiley' title="VPS.NET in the clouds!" /> </p>
<p>For those of you who end up getting hit by Digg, SlashDot, Buzz, or any of those other sites that love to kill servers, you&#8217;ll be happy to hear of our new auto scaling feature. If you&#8217;re a ServerDensity user, you can sign up for auto scaling, which will automatically monitor your server for increased traffic levels (and thereby CPU &amp; RAM usage). If it detects that additional nodes are needed, they&#8217;ll be automagically added to your account avoiding any unnecessary downtime for your site. Social media doesn&#8217;t have anything on VPS.NET users!</p>
<p>We announced this one on the blog earlier already, but in case you missed it, nodes are now billed by the minute. This means that if you purchase a node, and use it for a 20 days, you will be credited for the remaining time left in the month. The credit can then be used for future VPS.NET services, whether it be for your nodes, addon services or CDN purchases. This one is a feature that our resellers were virtually screaming for, so I&#8217;m sure you all out there who resell the VPS.NET services greatly appreciate this. If you&#8217;re interested in reselling our services, definitely contact us; our resellers benefit from the additional profit stream of offering <a title="Cloud VPS Services" href="http://vps.net/product/cloud-servers">Cloud VPS Services</a> and <a title="CDN" href="http://vps.net/product/cdn">CDN services</a>, without any upfront expenses.</p>
<p>Finally, we&#8217;ve moved the VPS.NET website over to SoftLayer&#8217;s (A UK2.NET strategic partner) Washington DC location. This makes it much easier for us to use their anycast DNS features, along with giving us the ability to give updates in case we ever have any problems with our <a title="cloud servers" href="http://vps.net/product/cloud-servers">cloud servers</a>.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F28%2Fvps-net-in-the-clouds%2F&amp;title=VPS.NET+in+the+clouds%21" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/digg.png" alt="digg VPS.NET in the clouds!" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F28%2Fvps-net-in-the-clouds%2F&amp;title=VPS.NET+in+the+clouds%21" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/reddit.png" alt="reddit VPS.NET in the clouds!" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F28%2Fvps-net-in-the-clouds%2F&amp;title=VPS.NET+in+the+clouds%21" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/stumbleupon.png" alt="stumbleupon VPS.NET in the clouds!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F28%2Fvps-net-in-the-clouds%2F&amp;headline=VPS.NET+in+the+clouds%21" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/yahoo_buzz.png" alt="yahoo buzz VPS.NET in the clouds!" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=VPS.NET+in+the+clouds%21&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F28%2Fvps-net-in-the-clouds%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dzone.png" alt="dzone VPS.NET in the clouds!" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=VPS.NET+in+the+clouds%21&amp;u=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F28%2Fvps-net-in-the-clouds%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/facebook.png" alt="facebook VPS.NET in the clouds!" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=VPS.NET+in+the+clouds%21&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F28%2Fvps-net-in-the-clouds%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/delicious.png" alt="delicious VPS.NET in the clouds!" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=VPS.NET+in+the+clouds%21&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F28%2Fvps-net-in-the-clouds%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dotnetkicks.png" alt="dotnetkicks VPS.NET in the clouds!" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=VPS.NET+in+the+clouds%21&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F28%2Fvps-net-in-the-clouds%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dotnetshoutout.png" alt="dotnetshoutout VPS.NET in the clouds!" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F28%2Fvps-net-in-the-clouds%2F&amp;title=VPS.NET+in+the+clouds%21&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/linkedin.png" alt="linkedin VPS.NET in the clouds!" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F28%2Fvps-net-in-the-clouds%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/technorati.png" alt="technorati VPS.NET in the clouds!" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F28%2Fvps-net-in-the-clouds%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/twitter.png" alt="twitter VPS.NET in the clouds!" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F28%2Fvps-net-in-the-clouds%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/google_buzz.png" alt="google buzz VPS.NET in the clouds!" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.vps.net/blog/2010/05/28/vps-net-in-the-clouds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Let us be your blog host! (and a small rant about traditional journalism)</title>
		<link>http://www.vps.net/blog/2010/05/17/let-us-be-your-blog-host-and-a-small-rant-about-traditional-journalism/</link>
		<comments>http://www.vps.net/blog/2010/05/17/let-us-be-your-blog-host-and-a-small-rant-about-traditional-journalism/#comments</comments>
		<pubDate>Mon, 17 May 2010 19:08:37 +0000</pubDate>
		<dc:creator>Terry Myers</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[The Cloud]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.vps.net/blog/?p=526</guid>
		<description><![CDATA[I&#8217;ve mentioned this before, but I&#8217;m a huge fan of RSS Feeds. I subscribe to over 200 different RSS feeds, none of them are traditional media sources, like the Wall Street Journal, or the New York Times. Instead, sites like &#8230; <a href="http://www.vps.net/blog/2010/05/17/let-us-be-your-blog-host-and-a-small-rant-about-traditional-journalism/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve mentioned this before, but I&#8217;m a huge fan of RSS Feeds. I subscribe to over 200 different RSS feeds, none of them are traditional media sources, like the Wall Street Journal, or the New York Times. Instead, sites like <a href="http://www.politicsdaily.com" target="_blank">Politics Daily</a>, <a href="http://www.hackingnetflix.com" target="_blank">Hacking NetFlix</a>, and <a href="http://www.thenextweb.com" target="_blank">TheNextWeb</a> make up my reading list. Traditional media is just slow, out dated, and fails to connect with anything that I feel is important today. We don&#8217;t just read and write blogs though at VPS.NET; we&#8217;re experts at <a title="blog hosting" href="http://vps.net/product/cloud-hosting/upgrade-your-wordpress-hosting-to-the-cloud/">blog hosting</a>.</p>
<p>We&#8217;ve helped many users, such as <a href="http://adrianwarnock.com/2010/05/geekfest-on-my-new-zippy-server/" target="_blank">AdrianWarnock.com</a> and <a href="http://www.woothemes.com/2010/04/our-setup/" target="_blank">WooThemes.com</a> setup a lightning <a title="fast cloud hosting" href="http://vps.net/product/cloud-hosting">fast cloud hosting</a> arrangement, that not only works for what their current needs are, but is easily scalable for future growth. The cloud gives you that power of easy scalability, as you can add resources on demand. The other advantage is if you get a burst of visitors, daily nodes are always available with prices starting at a dollar a day.</p>
<p>There&#8217;s a number of solutions we can offer you for your needs. Besides the cloud, we also have FusionIO, which is the high performance, solid state hard drive system which I&#8217;ve been raving about for weeks now. Then we have the power of two content distribution networks, in Highwinds &amp; Akamai. Finally, we have our expertise; allow us to setup APC, and W3 Total Cache for you.</p>
<p>So, if you have a growing blog, <a href="http://www.vps.net/contact" target="_blank">get in touch</a>; we have a solution for you!</p>
<p>Also, we&#8217;re looking for feedback on where we should put our new cloud. <a href="http://www.vps.net/forum/public-forums/general-discussion/2549-new-us-cloud" target="_blank">We want your vote</a>!</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F17%2Flet-us-be-your-blog-host-and-a-small-rant-about-traditional-journalism%2F&amp;title=Let+us+be+your+blog+host%21+%28and+a+small+rant+about+traditional+journalism%29" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/digg.png" alt="digg Let us be your blog host! (and a small rant about traditional journalism)" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F17%2Flet-us-be-your-blog-host-and-a-small-rant-about-traditional-journalism%2F&amp;title=Let+us+be+your+blog+host%21+%28and+a+small+rant+about+traditional+journalism%29" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/reddit.png" alt="reddit Let us be your blog host! (and a small rant about traditional journalism)" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F17%2Flet-us-be-your-blog-host-and-a-small-rant-about-traditional-journalism%2F&amp;title=Let+us+be+your+blog+host%21+%28and+a+small+rant+about+traditional+journalism%29" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/stumbleupon.png" alt="stumbleupon Let us be your blog host! (and a small rant about traditional journalism)" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F17%2Flet-us-be-your-blog-host-and-a-small-rant-about-traditional-journalism%2F&amp;headline=Let+us+be+your+blog+host%21+%28and+a+small+rant+about+traditional+journalism%29" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/yahoo_buzz.png" alt="yahoo buzz Let us be your blog host! (and a small rant about traditional journalism)" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Let+us+be+your+blog+host%21+%28and+a+small+rant+about+traditional+journalism%29&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F17%2Flet-us-be-your-blog-host-and-a-small-rant-about-traditional-journalism%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dzone.png" alt="dzone Let us be your blog host! (and a small rant about traditional journalism)" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Let+us+be+your+blog+host%21+%28and+a+small+rant+about+traditional+journalism%29&amp;u=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F17%2Flet-us-be-your-blog-host-and-a-small-rant-about-traditional-journalism%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/facebook.png" alt="facebook Let us be your blog host! (and a small rant about traditional journalism)" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Let+us+be+your+blog+host%21+%28and+a+small+rant+about+traditional+journalism%29&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F17%2Flet-us-be-your-blog-host-and-a-small-rant-about-traditional-journalism%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/delicious.png" alt="delicious Let us be your blog host! (and a small rant about traditional journalism)" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Let+us+be+your+blog+host%21+%28and+a+small+rant+about+traditional+journalism%29&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F17%2Flet-us-be-your-blog-host-and-a-small-rant-about-traditional-journalism%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dotnetkicks.png" alt="dotnetkicks Let us be your blog host! (and a small rant about traditional journalism)" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Let+us+be+your+blog+host%21+%28and+a+small+rant+about+traditional+journalism%29&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F17%2Flet-us-be-your-blog-host-and-a-small-rant-about-traditional-journalism%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dotnetshoutout.png" alt="dotnetshoutout Let us be your blog host! (and a small rant about traditional journalism)" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F17%2Flet-us-be-your-blog-host-and-a-small-rant-about-traditional-journalism%2F&amp;title=Let+us+be+your+blog+host%21+%28and+a+small+rant+about+traditional+journalism%29&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/linkedin.png" alt="linkedin Let us be your blog host! (and a small rant about traditional journalism)" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F17%2Flet-us-be-your-blog-host-and-a-small-rant-about-traditional-journalism%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/technorati.png" alt="technorati Let us be your blog host! (and a small rant about traditional journalism)" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F17%2Flet-us-be-your-blog-host-and-a-small-rant-about-traditional-journalism%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/twitter.png" alt="twitter Let us be your blog host! (and a small rant about traditional journalism)" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F17%2Flet-us-be-your-blog-host-and-a-small-rant-about-traditional-journalism%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/google_buzz.png" alt="google buzz Let us be your blog host! (and a small rant about traditional journalism)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.vps.net/blog/2010/05/17/let-us-be-your-blog-host-and-a-small-rant-about-traditional-journalism/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Operating Systems available for use on VPS.NET</title>
		<link>http://www.vps.net/blog/2010/05/07/operating-systems-available-for-use-on-vps-net/</link>
		<comments>http://www.vps.net/blog/2010/05/07/operating-systems-available-for-use-on-vps-net/#comments</comments>
		<pubDate>Fri, 07 May 2010 01:57:00 +0000</pubDate>
		<dc:creator>Terry Myers</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.vps.net/blog/?p=496</guid>
		<description><![CDATA[With VPS.NET we give you 8 different choices for your operating system, allowing you to choose your favorite distribution. Of those 8, we offer specialized images of certain distributions to further maximize your VPS. CentOS 5.4 Based off of Red &#8230; <a href="http://www.vps.net/blog/2010/05/07/operating-systems-available-for-use-on-vps-net/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>With VPS.NET we give you 8 different choices for your operating system, allowing you to choose your favorite distribution. Of those 8, we offer specialized images of certain distributions to further maximize your VPS.</p>
<p><strong>CentOS 5.4<br />
<span style="font-weight: normal;">Based off of Red Hat Enterprise Linux, CentOS offers a stable, reliable, and secure hosting environment for your <a title="CentOS Cloud VPS" href="http://vps.net/product/cloud-servers">Cloud VPS</a>. Besides the core CentOS image, we also offer a version that has been hardened and optimized for the VPS environment, along with specialized images catered towards specific needs. Some of the specialized images include environments for CentOS with only Apache installed, CentOS with Shoutcast installed, CentOS with Varnish HTTP Accelerator, and CentOS with Postfix mail server.</span></strong></p>
<p><strong>CloudLinux<br />
<span style="font-weight: normal;">Catered specifically towards customers doing shared and reseller hosting, <a title="CloudLinux" href="http://www.cloudlinux.com">CloudLinux</a> is features isolation technology which makes it so one site cannot bring down a whole server. CloudLinux also features reporting capabilities so server administrators can see which users consume the most resources at certain points throughout the day. VPS.NET offers specialized images so you can easily installed Apache, cPanel/WHM, ISPManager and the entire LAMP environment.</span></strong></p>
<p><strong>Debian 5.0<br />
<span style="font-weight: normal;">Debian is a Linux based operating system with support for over 25,000 software packages. VPS.NET offers both the standard Debian OS, along with a VPS Optimized version. There are also specialized images for MySQL/Galera, Magento, NGINX and many more.</span></strong></p>
<p><strong>Elastix<br />
<span style="font-weight: normal;">Elastix is an open source communications platform, which is used for IP PBX, email, IM, fax, and collaboration. </span></strong></p>
<p><strong>Gentoo<br />
<span style="font-weight: normal;">Gentoo is a Linux based operating system which prides itself on near limitless adaptability. </span></strong></p>
<p><strong>Turnkey Linux<br />
<span style="font-weight: normal;">Turnkey Linux is an Ubuntu based operating system which is specifically developed for cloud computer architecture. Besides offering the standard Turnkey Linux OS, VPS.NET also offers Turnkey Linux with a number of scripts such as BugZilla, DocuWiki, Gallery, Joomla, MoveAble Type, PhpBB and many more as part of the installation process, eliminating the need for you to manually install the script (<a href="http://www.vps.net/blog/2010/04/19/softaculous/" target="_blank">unless you&#8217;re using Softalucous</a>!) </span></strong></p>
<p><strong>Ubuntu 8.04 &amp; Ubuntu 9.10<br />
<span style="font-weight: normal;">Ubuntu is a Debian based operating system, which has burst onto the home computing screen for its ease of use. Each version of Ubuntu is offered with the stand-alone OS, and then with server software such as Apache, MySQL, and Postfix pre-installed.</span></strong></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F07%2Foperating-systems-available-for-use-on-vps-net%2F&amp;title=Operating+Systems+available+for+use+on+VPS.NET" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/digg.png" alt="digg Operating Systems available for use on VPS.NET" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F07%2Foperating-systems-available-for-use-on-vps-net%2F&amp;title=Operating+Systems+available+for+use+on+VPS.NET" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/reddit.png" alt="reddit Operating Systems available for use on VPS.NET" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F07%2Foperating-systems-available-for-use-on-vps-net%2F&amp;title=Operating+Systems+available+for+use+on+VPS.NET" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/stumbleupon.png" alt="stumbleupon Operating Systems available for use on VPS.NET" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F07%2Foperating-systems-available-for-use-on-vps-net%2F&amp;headline=Operating+Systems+available+for+use+on+VPS.NET" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/yahoo_buzz.png" alt="yahoo buzz Operating Systems available for use on VPS.NET" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Operating+Systems+available+for+use+on+VPS.NET&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F07%2Foperating-systems-available-for-use-on-vps-net%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dzone.png" alt="dzone Operating Systems available for use on VPS.NET" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Operating+Systems+available+for+use+on+VPS.NET&amp;u=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F07%2Foperating-systems-available-for-use-on-vps-net%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/facebook.png" alt="facebook Operating Systems available for use on VPS.NET" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Operating+Systems+available+for+use+on+VPS.NET&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F07%2Foperating-systems-available-for-use-on-vps-net%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/delicious.png" alt="delicious Operating Systems available for use on VPS.NET" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Operating+Systems+available+for+use+on+VPS.NET&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F07%2Foperating-systems-available-for-use-on-vps-net%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dotnetkicks.png" alt="dotnetkicks Operating Systems available for use on VPS.NET" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Operating+Systems+available+for+use+on+VPS.NET&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F07%2Foperating-systems-available-for-use-on-vps-net%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dotnetshoutout.png" alt="dotnetshoutout Operating Systems available for use on VPS.NET" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F07%2Foperating-systems-available-for-use-on-vps-net%2F&amp;title=Operating+Systems+available+for+use+on+VPS.NET&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/linkedin.png" alt="linkedin Operating Systems available for use on VPS.NET" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F07%2Foperating-systems-available-for-use-on-vps-net%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/technorati.png" alt="technorati Operating Systems available for use on VPS.NET" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F07%2Foperating-systems-available-for-use-on-vps-net%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/twitter.png" alt="twitter Operating Systems available for use on VPS.NET" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F05%2F07%2Foperating-systems-available-for-use-on-vps-net%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/google_buzz.png" alt="google buzz Operating Systems available for use on VPS.NET" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.vps.net/blog/2010/05/07/operating-systems-available-for-use-on-vps-net/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Addon Services Available</title>
		<link>http://www.vps.net/blog/2010/04/26/addon-services-available/</link>
		<comments>http://www.vps.net/blog/2010/04/26/addon-services-available/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 19:44:27 +0000</pubDate>
		<dc:creator>Terry Myers</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[The Cloud]]></category>
		<category><![CDATA[Addons]]></category>
		<category><![CDATA[Backups]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[dotdefender]]></category>
		<category><![CDATA[Duplicity]]></category>
		<category><![CDATA[FusionIO]]></category>
		<category><![CDATA[ISPManager]]></category>
		<category><![CDATA[Lightspeed]]></category>
		<category><![CDATA[R1Soft]]></category>
		<category><![CDATA[RVSkin]]></category>
		<category><![CDATA[Rysnc]]></category>
		<category><![CDATA[Server Density]]></category>
		<category><![CDATA[Softaculous]]></category>

		<guid isPermaLink="false">http://www.vps.net/blog/?p=443</guid>
		<description><![CDATA[One of the great things at VPS.NET (At least I think so) is the number of addon services that are available to you. Whether it be control panels, software, hardware, and so on, we&#8217;ve tried to bring you a number &#8230; <a href="http://www.vps.net/blog/2010/04/26/addon-services-available/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><span style="color: #888888;">One of the great things at VPS.NET (At least I think so) is the number of addon services that are available to you. Whether it be control panels, software, hardware, and so on, we&#8217;ve tried to bring you a number of different options so you&#8217;re able to configure a setup that works for your needs and caters to your business. And as we grow, we&#8217;re continuously adding new services to keep up with the demands of our clients. Because of this, there may be a lot of people out there who may be unaware of some new cool services we&#8217;ve added.</span></p>
<p><strong><span style="color: #333399;">Control Panels</span></strong></p>
<p><strong><span style="color: #000000;"><a href="http://www.cpanel.net/" target="_blank">cPanel</a> &#8211; <span style="font-weight: normal;"><span style="color: #888888;">cPanel is likely the most recognizable control panel available on the market today. cPanel provides a front end interface to manage your websites files, email address, mysql databases, and many other tasks. Along with the client side management, cPanel also comes with the WHM (Web Hosting Manager) interface, which provides an interface to for server administrators and resellers to perform many different tasks, such as setting up new websites, updating Apache,  and other server-side software. Each cPanel license is $10 per month.</span></span></span></strong></p>
<p><span style="color: #000000;"><strong><a href="http://ispsystem.com/en/software/ispmanager/" target="_blank">ISPManager</a> -</strong><strong><span style="color: #888888;"> </span></strong><span style="color: #888888;">ISPManager is a low resource consuming control panel software with a multi-level user system. It provides a graphical interface for server administrators, resellers and individual clients. Like cPanel, you have the ability to administrate certain functions of the web server, and each individual website. ISPManager licenses are available </span><strong><span style="color: #888888;">free</span></strong><span style="color: #888888;"> at VPS.NET.</span></span></p>
<p><span style="color: #000000;"><span style="color: #888888;"><a href="http://www.directadmin.com/" target="_blank"><strong>DirectAdmin</strong></a> &#8211; DirectAdmin provides a GUI for managing both your server and your website, while consuming minimal resources. DirectAdmin provides access for administrators, resellers, and individual users. DirectAdmin is $10 a month.</span></span></p>
<p><span style="color: #000000;"><strong><span style="color: #333399;">Server Administration</span></strong></span></p>
<p><span style="color: #000000;"><span style="color: #000000;"><strong>Pro-active, Fully Managed Administration</strong></span> &#8211; <span style="color: #888888;">We realize not everyone wants to worry about their server &#8211; they want to worry about their website. We offer a fully managed hosting solution where we&#8217;ll handle the migration of your website to VPS.NET, the initial VPS server setup, and then monthly security overhauls to make sure everything is running properly. With this, we also offer a 100% SLA. This solution is available for $99 a month with a $45 setup fee.</span></span></p>
<p><span style="color: #000000;"><strong>On Demand Server Administration -</strong><span style="color: #888888;"> In addition to the fully managed solution, we have on demand administration that you&#8217;re able to use when you run into a problem. On demand administration is good for kernel upgrades, PHP/Perl Installation and Configuration, Control Panel Installation and Configuration, Backup/Migration Assistance, Software Installation or Web Server Assistance. On Demand tickets are $10 each and last for 24 hours.</span></span></p>
<p><span style="color: #000000;"><strong><span style="color: #000080;">Server Monitoring</span></strong></span></p>
<p><span style="color: #000000;"><strong><span style="color: #000000;">Server Density &#8211; <span style="font-weight: normal;"><span style="color: #888888;">Server Density is an addon tool that allows you to easily monitor your server for abnormalities through your email and/or your iPhone. Inside of Server Density you&#8217;re able to track CPU Load, Memory Utilization, processes, disk usage, network traffic, and apache &amp; nginx status. Server Density is available for $7.50 a month.</span></span></span></strong></span></p>
<p><span style="color: #000000;"><strong><span style="color: #000000;"><a href="http://www.applicure.com/" target="_blank">DotDefender</a> -<span style="font-weight: normal;"> <span style="color: #888888;">DotDefender is a software that monitors and logs your servers traffic, detecting any suspicious traffic activity. DotDefender is capable of running a website specific rule set, limiting the number of false intrusion detection attempts. DotDefender licenses are available for $15 a month.</span></span></span></strong></span></p>
<p><span style="color: #333399;"><strong>Backups</strong></span></p>
<p><span style="color: #333399;"><strong><span style="color: #000000;">Snapshot Backups &#8211; <span style="font-weight: normal;"><span style="color: #888888;">Snapshot backups are easy and effective. Using snapshot backups, VPS.NET will take a&#8221;snapshot&#8221; of your VPS node once a day, every day, and at the end of the month will retain one daily,  one weekly, one monthly and then a day of your choice for backup. When restoring, individual files cannot be restored. We can only restore an entire backup. Snapshot backups are available for $5 a month.</span></span></span></strong></span></p>
<p><span style="color: #333399;"><span style="color: #000000;"><strong>Rsync Backups &#8211; </strong><span style="color: #888888;">With Rsync backups, we give you offsite backup space capable of backing up your entire VPS Node. You&#8217;re then able to use Rsync, Duplicity, or any other backup script available to automatically backup your VPS. With Rsync you&#8217;re able to restore individual files. Rsync backups are $5 a month.</span></span></span></p>
<p><span style="color: #333399;"><span style="color: #000000;"><strong>R1Soft Backups &#8211; </strong><span style="color: #888888;">R1Soft backups are the &#8220;enterprise&#8221; version of our backup solutions, with continuos data protection through a graphical interface. Multiple copies of individual files are kept on hand and can be restored as necessary. R1Soft has a license charge of $15 per month.</span></span></span></p>
<p><span style="color: #333399;"><span style="color: #000080;"><strong>Control Panel Addons</strong></span></span></p>
<p><span style="color: #333399;"><span style="color: #000080;"><strong><span style="color: #000000;"><a href="http://www.softaculous.com/" target="_blank">Softaculous</a> &#8211; <span style="font-weight: normal;"><span style="color: #888888;">Softaculous is a script auto-installer that has a repository of over 130 commonly installed website scripts. It integrates directly in with both cPanel &amp; ISPManager. Licensing is available at $9 a year.</span></span></span></strong></span></span></p>
<p><span style="color: #333399;"><span style="color: #000080;"><strong><span style="color: #000000;"><a href="http://www.rvskin.com/index.php" target="_blank">Rvskin</a> -<span style="font-weight: normal;"> <span style="color: #888888;">The Rvskin set &#8220;beautifies&#8221; cPanel, offering you 2 additional skins in 7 different colors. Even more advantageous is the Rvskin set is available in 25 different languages. Rvskin is only available for users running cPanel and is $18 a year.</span></span></span></strong></span></span></p>
<p><span style="color: #333399;"><span style="color: #000080;"><span style="color: #000000;"><span style="color: #000080;"><strong>Misc.</strong></span></span></span></span></p>
<p><span style="color: #333399;"><span style="color: #000080;"><span style="color: #000000;"><span style="color: #000080;"><strong><span style="color: #000000;"><a href="http://www.litespeedtech.com/" target="_blank">Lightspeed Web Server</a> &#8211; <span style="font-weight: normal;"><span style="color: #888888;">LiteSpeed Web Server is the leading high-performance, high-scalability web server. It is completely Apache interchangeable so LiteSpeed Web Server can quickly replace a major bottleneck in your existing web delivery platform. Litespeed is a drop in replacement for Apache on cPanel servers. Lightspeed licenses are only available for users running cPanel and can be purchased for $14 a month.</span></span></span></strong></span></span></span></span></p>
<p><strong>CodeBase &#8211; </strong><span style="color: #888888;">Codebase is a source code hosting and project management platform. While a CodeBase account usually runs you $79 a year, VPS.NET subscribers are able to get one free of charge.</span></p>
<p><strong><a href="http://www.fusionio.com/" target="_blank">FusionIO Node</a> -</strong> <span style="color: #888888;">FusionIO is solid state, high performance database hosting solution. With the solid state technology, your databases are able to be transferred and processed significantly faster, dramatically speeding up dynamic content driven websites. FusionIO nodes are available in both Atlanta and London and are $50 for every 2 Gigabytes of Storage Space.</span></p>
<p><span style="color: #888888;"><a href="http://hostbillapp.com/" target="_blank"><strong>HostBill</strong></a> &#8211; For company&#8217;s out there selling web hosting services off of our VPS Nodes, I highly recommend you look into HostBill. It&#8217;s a great client management system, with payment gateway support, and a complete support suite. Best of all, it&#8217;s available free of charge at VPS.NET.</span></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F26%2Faddon-services-available%2F&amp;title=Addon+Services+Available" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/digg.png" alt="digg Addon Services Available" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F26%2Faddon-services-available%2F&amp;title=Addon+Services+Available" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/reddit.png" alt="reddit Addon Services Available" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F26%2Faddon-services-available%2F&amp;title=Addon+Services+Available" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/stumbleupon.png" alt="stumbleupon Addon Services Available" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F26%2Faddon-services-available%2F&amp;headline=Addon+Services+Available" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/yahoo_buzz.png" alt="yahoo buzz Addon Services Available" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Addon+Services+Available&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F26%2Faddon-services-available%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dzone.png" alt="dzone Addon Services Available" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Addon+Services+Available&amp;u=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F26%2Faddon-services-available%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/facebook.png" alt="facebook Addon Services Available" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Addon+Services+Available&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F26%2Faddon-services-available%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/delicious.png" alt="delicious Addon Services Available" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Addon+Services+Available&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F26%2Faddon-services-available%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dotnetkicks.png" alt="dotnetkicks Addon Services Available" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Addon+Services+Available&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F26%2Faddon-services-available%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dotnetshoutout.png" alt="dotnetshoutout Addon Services Available" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F26%2Faddon-services-available%2F&amp;title=Addon+Services+Available&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/linkedin.png" alt="linkedin Addon Services Available" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F26%2Faddon-services-available%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/technorati.png" alt="technorati Addon Services Available" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F26%2Faddon-services-available%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/twitter.png" alt="twitter Addon Services Available" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F26%2Faddon-services-available%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/google_buzz.png" alt="google buzz Addon Services Available" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.vps.net/blog/2010/04/26/addon-services-available/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Storage Upgrades, HostBill and everything else that happened this week!</title>
		<link>http://www.vps.net/blog/2010/04/23/storage-upgrades-hostbill-and-everything-else-that-happened-this-week/</link>
		<comments>http://www.vps.net/blog/2010/04/23/storage-upgrades-hostbill-and-everything-else-that-happened-this-week/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 19:38:17 +0000</pubDate>
		<dc:creator>Terry Myers</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[The Cloud]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Akamai]]></category>
		<category><![CDATA[FusionIO]]></category>
		<category><![CDATA[HostBill]]></category>
		<category><![CDATA[Weekly]]></category>

		<guid isPermaLink="false">http://www.vps.net/blog/?p=456</guid>
		<description><![CDATA[I&#8217;m not sure how, but apparently it&#8217;s that time again! Time flies when you&#8217;re having fun. Lets wrap up the week with a round up of everything that happened here in the VPS.NET this week. Before we even talk about &#8230; <a href="http://www.vps.net/blog/2010/04/23/storage-upgrades-hostbill-and-everything-else-that-happened-this-week/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not sure how, but apparently it&#8217;s that time again! Time flies when you&#8217;re having fun. Lets wrap up the week with a round up of everything that happened here in the VPS.NET this week.</p>
<p>Before we even talk about VPS.NET though, lets talk about the big tech news that happened this week. Gizmodo was able to get their hands on <a href="http://www.vps.net/forum/public-forums/the-lounge/2351-iphone-4g-found-in-a-bar" target="_blank">the next generation of the iPhone</a>, after a developer left it at a bar! Nick and I were discussing this as it happened, and we both decided we definitely do not want to be in that developers shoes, especially knowing how Steve Jobs is. There are however <a href="http://www.dailyfinance.com/story/company-news/if-apple-didnt-plan-the-lost-iphone-leak-it-should-have/19448506/" target="_blank">some</a> <a href="http://www.dailyfinance.com/story/company-news/if-apple-didnt-plan-the-lost-iphone-leak-it-should-have/19448506/" target="_blank">people</a> <a href="http://techcrunch.com/2010/04/19/iphone-hd-4g/" target="_blank">claiming</a> that Apple intentionally &#8220;lost&#8221; the iPhone at the bar in order to get the hype machine rolling. With the amount of press coverage this received, I do believe this puts the iPhone on the same level as Angelina Jolie, Madonna &amp; Tiger Woods.</p>
<p>The big news here at VPS.NET is the ability to <a href="http://www.vps.net/forum/public-forums/announcements/2370-delay-your-storage-upgrades-upgrade-nodes-without-rebuilding-disk" target="_blank">upgrade your nodes without having to upgrade your storage</a>, which means that you won&#8217;t need to rebuild the disk for your <a title="Cloud VPS" href="http://vps.net/product/cloud-servers">Cloud VPS</a>, the most time consuming part of the process. 30 second upgrade. Instead this allows you to schedule any storage upgrades to take place at the most convenient time for you or until you need it to be done. Once the upgrade goes through, you&#8217;ll only need to reboot your VPS. One of the key things this does is it makes us much more competitive with dedicated server providers. We&#8217;re already able to offer a significant amount of CPU Power, RAM, Bandwidth and Disk Space, but now you&#8217;re able to start out small, and continue to build up as your company does, without having the down time of manual hardware swaps.</p>
<p>The other news which I hope you all have already taken advantage of, is the <a href="http://www.vps.net/forum/public-forums/announcements/2357-hostbill-now-free-for-all-vps-net-clients" target="_blank">ability to get a free HostBill license.</a> HostBill is a complete web hosting management system, which I went over in <a href="http://www.vps.net/blog/2010/04/22/free-hostbill-licenses-for-all-vps-net-clients/" target="_blank">full detail here</a>. If you haven&#8217;t taken advantage of it yet, I encourage you to do so at <a href="http://www.hostbillapp.com/vps.net/" target="_blank">www.hostbillapp.com/vps.net/</a>.</p>
<p>Besides bringing out some new software updates and services for you, the guys over in the London datacenter were able to get a new <a href="http://www.vps.net/forum/public-forums/announcements/2356-fusionio-cloud-in-uk" target="_blank">FusionIO cloud up for use</a>. We highly recommend anyone with a MySQL driven site to offload their databases onto a FusionIO node, and experience ridiculously fast website loading times. FusionIO is based on high speed solid state drives, and makes read/write times blazing fast. FusionIO nodes are available in London and Atlanta now, and are $50 for every 2 Gigabytes of Storage Space.</p>
<p>The forums continue to pick up in traffic, which is great to see. Our goal is to build a strong community here, and I think we&#8217;re off to a great start. Some hot threads this week are:</p>
<p><a href="http://www.vps.net/forum/public-forums/general-discussion/2325-config-rewrite-and-htaccess" target="_blank">Config: rewrite and .htaccess </a></p>
<p><a href="http://www.vps.net/forum/public-forums/general-discussion/2348-hostbill-vps-net-branding" target="_blank">HostBill &#8211; VPS.NET branding</a></p>
<p><a href="http://www.vps.net/forum/customers-forums/cdn-discussions/1816-anyone-use-akamai-on-demand-streaming" target="_blank">Anyone use Akamai on Demand Streaming?</a></p>
<p>I also wanted to point everyone out to an awesome site we advertise on, <a href="http://www.webresourcesdepot.com/" target="_blank">WebResourcesDepot</a>, which offers free tips and tricks for webmasters. They have a pretty cool post up right now about making your <a href="http://www.webresourcesdepot.com/making-ajax-applications-crawlable-by-google/" target="_blank">AJAX content crawlable by web spiders</a>. Highly recommend everyone check it out, especially for those of you where your search engine position is important (and I think that might be all of us).</p>
<p>Anyhow, I&#8217;m off for the week. More than likely I&#8217;m going to be spending a lot of time <a href="http://www.vps.net/blog/?attachment_id=457" target="_blank">doing this</a> (yes that is me!).</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F23%2Fstorage-upgrades-hostbill-and-everything-else-that-happened-this-week%2F&amp;title=Storage+Upgrades%2C+HostBill+and+everything+else+that+happened+this+week%21" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/digg.png" alt="digg Storage Upgrades, HostBill and everything else that happened this week!" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F23%2Fstorage-upgrades-hostbill-and-everything-else-that-happened-this-week%2F&amp;title=Storage+Upgrades%2C+HostBill+and+everything+else+that+happened+this+week%21" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/reddit.png" alt="reddit Storage Upgrades, HostBill and everything else that happened this week!" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F23%2Fstorage-upgrades-hostbill-and-everything-else-that-happened-this-week%2F&amp;title=Storage+Upgrades%2C+HostBill+and+everything+else+that+happened+this+week%21" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/stumbleupon.png" alt="stumbleupon Storage Upgrades, HostBill and everything else that happened this week!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F23%2Fstorage-upgrades-hostbill-and-everything-else-that-happened-this-week%2F&amp;headline=Storage+Upgrades%2C+HostBill+and+everything+else+that+happened+this+week%21" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/yahoo_buzz.png" alt="yahoo buzz Storage Upgrades, HostBill and everything else that happened this week!" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Storage+Upgrades%2C+HostBill+and+everything+else+that+happened+this+week%21&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F23%2Fstorage-upgrades-hostbill-and-everything-else-that-happened-this-week%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dzone.png" alt="dzone Storage Upgrades, HostBill and everything else that happened this week!" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Storage+Upgrades%2C+HostBill+and+everything+else+that+happened+this+week%21&amp;u=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F23%2Fstorage-upgrades-hostbill-and-everything-else-that-happened-this-week%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/facebook.png" alt="facebook Storage Upgrades, HostBill and everything else that happened this week!" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Storage+Upgrades%2C+HostBill+and+everything+else+that+happened+this+week%21&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F23%2Fstorage-upgrades-hostbill-and-everything-else-that-happened-this-week%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/delicious.png" alt="delicious Storage Upgrades, HostBill and everything else that happened this week!" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Storage+Upgrades%2C+HostBill+and+everything+else+that+happened+this+week%21&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F23%2Fstorage-upgrades-hostbill-and-everything-else-that-happened-this-week%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dotnetkicks.png" alt="dotnetkicks Storage Upgrades, HostBill and everything else that happened this week!" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Storage+Upgrades%2C+HostBill+and+everything+else+that+happened+this+week%21&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F23%2Fstorage-upgrades-hostbill-and-everything-else-that-happened-this-week%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dotnetshoutout.png" alt="dotnetshoutout Storage Upgrades, HostBill and everything else that happened this week!" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F23%2Fstorage-upgrades-hostbill-and-everything-else-that-happened-this-week%2F&amp;title=Storage+Upgrades%2C+HostBill+and+everything+else+that+happened+this+week%21&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/linkedin.png" alt="linkedin Storage Upgrades, HostBill and everything else that happened this week!" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F23%2Fstorage-upgrades-hostbill-and-everything-else-that-happened-this-week%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/technorati.png" alt="technorati Storage Upgrades, HostBill and everything else that happened this week!" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F23%2Fstorage-upgrades-hostbill-and-everything-else-that-happened-this-week%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/twitter.png" alt="twitter Storage Upgrades, HostBill and everything else that happened this week!" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F23%2Fstorage-upgrades-hostbill-and-everything-else-that-happened-this-week%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/google_buzz.png" alt="google buzz Storage Upgrades, HostBill and everything else that happened this week!" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.vps.net/blog/2010/04/23/storage-upgrades-hostbill-and-everything-else-that-happened-this-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free HostBill Licenses for all VPS.NET clients!</title>
		<link>http://www.vps.net/blog/2010/04/22/free-hostbill-licenses-for-all-vps-net-clients/</link>
		<comments>http://www.vps.net/blog/2010/04/22/free-hostbill-licenses-for-all-vps-net-clients/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 18:18:56 +0000</pubDate>
		<dc:creator>Terry Myers</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Features]]></category>
		<category><![CDATA[HostBill]]></category>

		<guid isPermaLink="false">http://www.vps.net/blog/?p=452</guid>
		<description><![CDATA[As always, we strive to add value to our services available to our customers, and this one is especially sweet. All VPS.NET customers now have access to a free HostBill license. If you&#8217;re unfamiliar with HostBill, let me give you &#8230; <a href="http://www.vps.net/blog/2010/04/22/free-hostbill-licenses-for-all-vps-net-clients/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As always, we strive to add value to our services available to our customers, and this one is especially sweet. All VPS.NET customers now have access to a free <a href="http://hostbillapp.com/" target="_blank">HostBill license</a>. If you&#8217;re unfamiliar with HostBill, let me give you a brief overview of everything it&#8217;s able to do.</p>
<ul>
<li>Full Client Management System</li>
<li>Complete Support Suite, including live chat, and full feature help desk with email piping.</li>
<li>Entire Billing System, with support for a number of different payment gateways.</li>
<li>Full Feature Product Management, including recurring and one time product purchases.</li>
<li>Server Status Monitoring System</li>
<li>Domain Registration System</li>
<li>API system that allows you to continue to add your own custom features</li>
<li>Easy migration from other platforms</li>
<li><a href="http://hostbillapp.com/features/list/" target="_blank">&#8230; and much much more!</a></li>
</ul>
<p>In addition to all the features I&#8217;ve listed above, HostBill already has a custom built module for complete integration into the VPS.NET control panel. This allows you to view your CPU utilization, bandwidth usage, console access, and the capability to resell <a title="Cloud Servers" href="http://vps.net/product/cloud-servers">VPS.NET Cloud VPS Servers</a>. There&#8217;s more information on that available on our forums, <a href="http://www.vps.net/forum/public-forums/general-discussion/2291-vps-net-module-for-hostbill-official-release" target="_blank">right here</a>.</p>
<p>You can activate your HostBill license at <a href="http://www.hostbillapp.com/vps.net/">http://www.hostbillapp.com/vps.net/</a>. As a note, this license will only remain active for as long as it is hosted on a VPS.NET IP Address. If at any time it is moved from a VPS.NET IP the license will cease working.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F22%2Ffree-hostbill-licenses-for-all-vps-net-clients%2F&amp;title=Free+HostBill+Licenses+for+all+VPS.NET+clients%21" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/digg.png" alt="digg Free HostBill Licenses for all VPS.NET clients!" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F22%2Ffree-hostbill-licenses-for-all-vps-net-clients%2F&amp;title=Free+HostBill+Licenses+for+all+VPS.NET+clients%21" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/reddit.png" alt="reddit Free HostBill Licenses for all VPS.NET clients!" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F22%2Ffree-hostbill-licenses-for-all-vps-net-clients%2F&amp;title=Free+HostBill+Licenses+for+all+VPS.NET+clients%21" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/stumbleupon.png" alt="stumbleupon Free HostBill Licenses for all VPS.NET clients!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F22%2Ffree-hostbill-licenses-for-all-vps-net-clients%2F&amp;headline=Free+HostBill+Licenses+for+all+VPS.NET+clients%21" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/yahoo_buzz.png" alt="yahoo buzz Free HostBill Licenses for all VPS.NET clients!" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Free+HostBill+Licenses+for+all+VPS.NET+clients%21&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F22%2Ffree-hostbill-licenses-for-all-vps-net-clients%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dzone.png" alt="dzone Free HostBill Licenses for all VPS.NET clients!" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Free+HostBill+Licenses+for+all+VPS.NET+clients%21&amp;u=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F22%2Ffree-hostbill-licenses-for-all-vps-net-clients%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/facebook.png" alt="facebook Free HostBill Licenses for all VPS.NET clients!" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Free+HostBill+Licenses+for+all+VPS.NET+clients%21&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F22%2Ffree-hostbill-licenses-for-all-vps-net-clients%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/delicious.png" alt="delicious Free HostBill Licenses for all VPS.NET clients!" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Free+HostBill+Licenses+for+all+VPS.NET+clients%21&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F22%2Ffree-hostbill-licenses-for-all-vps-net-clients%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dotnetkicks.png" alt="dotnetkicks Free HostBill Licenses for all VPS.NET clients!" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Free+HostBill+Licenses+for+all+VPS.NET+clients%21&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F22%2Ffree-hostbill-licenses-for-all-vps-net-clients%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/dotnetshoutout.png" alt="dotnetshoutout Free HostBill Licenses for all VPS.NET clients!" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F22%2Ffree-hostbill-licenses-for-all-vps-net-clients%2F&amp;title=Free+HostBill+Licenses+for+all+VPS.NET+clients%21&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/linkedin.png" alt="linkedin Free HostBill Licenses for all VPS.NET clients!" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F22%2Ffree-hostbill-licenses-for-all-vps-net-clients%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/technorati.png" alt="technorati Free HostBill Licenses for all VPS.NET clients!" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F22%2Ffree-hostbill-licenses-for-all-vps-net-clients%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/twitter.png" alt="twitter Free HostBill Licenses for all VPS.NET clients!" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.vps.net%2Fblog%2F2010%2F04%2F22%2Ffree-hostbill-licenses-for-all-vps-net-clients%2F" ><img class="lightsocial_img" src="http://www.vps.net/blog/wp-content/plugins/light-social/google_buzz.png" alt="google buzz Free HostBill Licenses for all VPS.NET clients!" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.vps.net/blog/2010/04/22/free-hostbill-licenses-for-all-vps-net-clients/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

