<?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>VpsLook.com</title>
	<atom:link href="http://vpslook.com/feed" rel="self" type="application/rss+xml" />
	<link>http://vpslook.com</link>
	<description>Find coupons, discounts, promotion codes or tutorials for vps.</description>
	<lastBuildDate>Fri, 05 Aug 2011 06:44:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Install YUM onto your centos vps</title>
		<link>http://vpslook.com/tutorials/install-yum-onto-your-centos-vps.html</link>
		<comments>http://vpslook.com/tutorials/install-yum-onto-your-centos-vps.html#comments</comments>
		<pubDate>Fri, 05 Aug 2011 06:44:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Centos]]></category>
		<category><![CDATA[YUM]]></category>

		<guid isPermaLink="false">http://vpslook.com/?p=115</guid>
		<description><![CDATA[Sometimes YUM is not included in the system. So you need manual installation.
In order to use the &#8220;Yellow dog Updater Modified&#8221; (YUM) application to install software onto your VPS, you&#8217;ll first need to configure this software. This article will assist you in the setup and configuration of the YUM installer.
1. Download the following packages (using [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes YUM is not included in the system. So you need manual installation.</p>
<p>In order to use the &#8220;Yellow dog Updater Modified&#8221; (YUM) application to install software onto your VPS, you&#8217;ll first need to configure this software. This article will assist you in the setup and configuration of the YUM installer.</p>
<p><span id="more-115"></span>1. Download the following packages (using wget or similar) from the CentOS mirror into a directory of your choice (eg ~/temp)</p>
<p><span style="color: #0000ff;">http://ftp.monash.edu.au/pub/linux/CentOS/5.2/os/x86_64/CentOS/yum-3.2.8-9.el5.centos.1.noarch.rpm</p>
<p>http://ftp.monash.edu.au/pub/linux/CentOS/5.2/os/x86_64/CentOS/python-elementtree-1.2.6-5.x86_64.rpm</p>
<p>http://ftp.monash.edu.au/pub/linux/CentOS/5.2/os/x86_64/CentOS/python-sqlite-1.1.7-1.2.1.x86_64.rpm</p>
<p>http://ftp.monash.edu.au/pub/linux/CentOS/5.2/os/x86_64/CentOS/python-urlgrabber-3.1.0-2.noarch.rpm</p>
<p>http://ftp.monash.edu.au/pub/linux/CentOS/5.2/os/x86_64/CentOS/sqlite-3.3.6-2.x86_64.rpm</span></p>
<p>2. When you finish downloaded, run the command:</p>
<p><span style="color: #0000ff;">rpm -ivh ~/temp/*rpm</span></p>
<p>You should see an output similar to:</p>
<p><span style="color: #0000ff;">[root@server ~]# rpm -ivh ~/temp/*rpm<br />
Preparing&#8230; ########################################### [100%]<br />
1:sqlite ########################################### [ 20%]<br />
2:python-sqlite ########################################### [ 40%]<br />
3:python-urlgrabber ########################################### [ 60%]<br />
4:python-elementtree ########################################### [ 80%]<br />
5:yum ########################################### [100%]</span></p>
<p>You can now start to use YUM to manage software on your server.</p>
]]></content:encoded>
			<wfw:commentRss>http://vpslook.com/tutorials/install-yum-onto-your-centos-vps.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install kloxo on 128MB CentOS VPS</title>
		<link>http://vpslook.com/tutorials/how-to-install-kloxo-on-128mb-centos-vps.html</link>
		<comments>http://vpslook.com/tutorials/how-to-install-kloxo-on-128mb-centos-vps.html#comments</comments>
		<pubDate>Wed, 03 Aug 2011 12:00:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Centos]]></category>
		<category><![CDATA[kloxo]]></category>

		<guid isPermaLink="false">http://vpslook.com/?p=112</guid>
		<description><![CDATA[If you have a low memory vps, and you want to running wordpress or other blog or cms system, I recommend you chose kloxo.
1. Frist installing and configuring mysql
run the following command to install mysql.:
yum install mysql-server
then edit the /etc/my.cnf file:
vi /etc/my.cnf
delete every thing else and put this in here:
[mysqld]
default-storage-engine = myisam
key_buffer = 8M
query_cache_size = [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a low memory vps, and you want to running wordpress or other blog or cms system, I recommend you chose kloxo.</p>
<p>1. Frist installing and configuring mysql<br />
run the following command to install mysql.:</p>
<p><span style="color: #0000ff;">yum install mysql-server</span></p>
<p><span id="more-113"></span>then edit the /etc/my.cnf file:</p>
<p><span style="color: #0000ff;">vi /etc/my.cnf</span></p>
<p>delete every thing else and put this in here:</p>
<p><span style="color: #0000ff;">[mysqld]<br />
default-storage-engine = myisam<br />
key_buffer = 8M<br />
query_cache_size = 8M<br />
query_cache_limit = 4M<br />
max_connections=25<br />
thread_cache=1<br />
skip-innodb<br />
query_cache_min_res_unit=0<br />
tmp_table_size = 4M<br />
max_heap_table_size = 4M<br />
table_cache=256<br />
concurrent_insert=2</span></p>
<p>then set mysql password:</p>
<p><span style="color: #0000ff;">mysqladmin -u root password NEWPASSWORD</span></p>
<p>2. Installing and configuring kloxo<br />
run the following command to install kloxo :</p>
<p><span style="color: #0000ff;">setenforce 0<br />
wget http://download.lxcenter.org/download/kloxo/production/kloxo-install-master.shsh ./kloxo-install-master.sh &#8211;db-rootpassword=PASSWORD</span></p>
<p>After kloxo has been installed<br />
Go to <span style="color: #0000ff;">youripaddress:7778</span> or <span style="color: #0000ff;">yourdomain:7778</span><br />
the default login user/pass is<span style="color: #0000ff;"> admin/admin</span></p>
<p>you must change it when your first login in it.</p>
<p>then go on the left had side to the tab servers<br />
then go to localhost<br />
then go to switch programs<br />
then change<br />
Web (drop down box) apache ==&gt; Web (drop down box) lighttpd<br />
Dns (drop down box) bind ==&gt; Dns (drop down box) djbdns<br />
Spam (drop down box) spamassasin ==&gt; Spam (drop down box) bojofilter</p>
<p>Finally, It running with less than 100Mb memory.</p>
]]></content:encoded>
			<wfw:commentRss>http://vpslook.com/tutorials/how-to-install-kloxo-on-128mb-centos-vps.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hostigation &#8211; KVM 128M $3/mo</title>
		<link>http://vpslook.com/coupons/hostigation-kvm-128m-3mo.html</link>
		<comments>http://vpslook.com/coupons/hostigation-kvm-128m-3mo.html#comments</comments>
		<pubDate>Sun, 24 Jul 2011 15:10:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coupons]]></category>
		<category><![CDATA[Hostigation]]></category>
		<category><![CDATA[KVM]]></category>
		<category><![CDATA[LosAngeles]]></category>
		<category><![CDATA[VPS]]></category>

		<guid isPermaLink="false">http://vpslook.com/?p=110</guid>
		<description><![CDATA[Hostigation.com has been providing hosting, dedicated servers and VPS since 2006 and owns all it&#8217;s equipment.
Honorable Mention in the latest LowEndBox Best Providers in 2011 Q2
SolusVM KVM VPS
KVM-128
10GB Disk
500GB Bandwidth
128MB Memory
1 IPv4 Address
1 CPU Core
$3 Order LA SC
Available ISO Images
CentOS 5.6 i386 &#38; x86_64
CentOS 6 i386 &#38; x86_64
Debian 5 i386 &#38; amd64
Debian 6 i386 &#38; amd64
FreeBSD 8.2 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://hostigation.com/" target="_blank"><span style="color: #ff8c00;">Hostigation.com</span></a> has been providing hosting, dedicated servers and VPS since 2006 and owns all it&#8217;s equipment.</p>
<p>Honorable Mention in the latest LowEndBox <a href="http://www.lowendbox.com/blog/best-low-end-providers-in-2011-q2-its-ram-host-quickweb-and-buyvm-again/" target="_blank">Best Providers in 2011 Q2</a></p>
<p><strong>SolusVM KVM VPS</strong><br />
<span style="text-decoration: underline;">KVM-128</span><br />
10GB Disk<br />
500GB Bandwidth<br />
128MB Memory<br />
1 IPv4 Address<br />
1 CPU Core</p>
<p><span style="color: red;"><strong>$3</strong></span> Order <a href="https://hostigation.com/whmcs/cart.php?a=add&amp;pid=66" target="_blank">LA</a> <a href="https://hostigation.com/billing/cart.php?a=add&amp;pid=63" target="_blank">SC</a></p>
<p><span style="text-decoration: underline;"><span id="more-110"></span>Available ISO Images</span><br />
CentOS 5.6 i386 &amp; x86_64<br />
CentOS 6 i386 &amp; x86_64<br />
Debian 5 i386 &amp; amd64<br />
Debian 6 i386 &amp; amd64<br />
FreeBSD 8.2 i386 &amp; amd64<br />
gentoo 20110421 amd64<br />
Vyatta 6.2 i386<br />
Elastix 1.6.0<br />
Elastix 2.0.3<br />
Arch Linux 2010.05 i686<br />
Ubuntu 11.04 server i386<br />
MikroTik 5.4 (License required)<br />
Scientific Linux 6 i386 &amp; x86_64<br />
Trixbox 2.8.0.4</p>
<p>Los Angeles <a href="http://hostigation.com/100mb.bin" target="_blank">Testfile</a> Test IP: 96.44.154.41<br />
South Carolina <a href="http://lowendvps.hostigation.com/100mb.bin" target="_blank">Testfile</a> Test IP: 216.189.1.101</p>
]]></content:encoded>
			<wfw:commentRss>http://vpslook.com/coupons/hostigation-kvm-128m-3mo.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BurstNET &#8211; OpenVZ 512M $5.95/mo &#8211; LosAngeles CA</title>
		<link>http://vpslook.com/coupons/burstnet-openvz-512m-5-95mo-losangeles-ca.html</link>
		<comments>http://vpslook.com/coupons/burstnet-openvz-512m-5-95mo-losangeles-ca.html#comments</comments>
		<pubDate>Sun, 12 Dec 2010 07:00:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coupons]]></category>
		<category><![CDATA[BurstNET]]></category>
		<category><![CDATA[OpenVZ]]></category>

		<guid isPermaLink="false">http://vpslook.com/?p=108</guid>
		<description><![CDATA[BurstNET® Virtual Private Servers (VPS) are a perfect solution for webmasters, designers, developers, and business owners.
BurstNET® charges a flat rate per month, for cpu, memory, diskspace, and bandwidth allotments, which you can then utilize for any number of websites, and/or in any method that you desire. BurstNET® Virtual Private Servers (VPS) are designed for the client [...]]]></description>
			<content:encoded><![CDATA[<p><a href="https://service.burst.net/aff2.php?aff=369&amp;affurl=5" target="_blank">BurstNET</a>® Virtual Private Servers (VPS) are a perfect solution for webmasters, designers, developers, and business owners.<br />
BurstNET® charges a flat rate per month, for cpu, memory, diskspace, and bandwidth allotments, which you can then utilize for any number of websites, and/or in any method that you desire. BurstNET® Virtual Private Servers (VPS) are designed for the client who would like to have the highest quality and reliability in server hardware, with the software and operational features of a dedicated server&#8212;all at a price closer to that of Virtual Hosting.</p>
<p><strong><span style="text-decoration: underline;">vePORTAL™ LINUX VPS PRODUCT LINE PRICING:</span></strong><br />
<strong><span style="color: blue;">LINUX VPS #1</span></strong> - US - EU/UK<br />
- CPU: 1GHZ, RAM: 512MB, DISKSPACE: 20GB, BANDWIDTH: 1000GB/MONTH<br />
$5.95 USD Monthly / $59.50 USD Annually &#8211; £4.95GBP Monthly &#8211; £49.50GBP Annually</p>
<p><a href="https://service.burst.net/aff2.php?aff=369&amp;affurl=5" target="_blank">Order Now</a></p>
<p><strong><span style="color: blue;">LINUX VPS #2</span></strong> - US - EU/UK<br />
- CPU: 1.5GHZ, RAM: 1GB, DISKSPACE: 50GB, BANDWIDTH: 1000GB/MONTH<br />
$9.95 USD Monthly / $99.50 USD Annually &#8211; £7.95GBP Monthly &#8211; £79.50GBP Annually</p>
<p><a href="https://service.burst.net/aff2.php?aff=369&amp;affurl=5" target="_blank">Order Now</a></p>
<p><span id="more-108"></span>Ping/Traceroute Test: 66.96.192.92 (Scranton) &#8211; 184.82.225.2 (California) &#8211; 178.238.129.83 (EU/UK)<br />
Download Test:<br />
<a href="http://66.96.192.92/bigtest.tgz" target="_blank">Scranton, PA USA</a><br />
<a href="http://184.82.225.2/bigtest.tgz" target="_blank">Los Angeles, CA USA</a><br />
<a href="http://178.238.129.83/bigtest.tgz" target="_blank">Manchester, UK</a></p>
]]></content:encoded>
			<wfw:commentRss>http://vpslook.com/coupons/burstnet-openvz-512m-5-95mo-losangeles-ca.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Semoweb &#8211; OpenVZ 512M Burst $21/year</title>
		<link>http://vpslook.com/coupons/semoweb-openvz-512m-burst-21year.html</link>
		<comments>http://vpslook.com/coupons/semoweb-openvz-512m-burst-21year.html#comments</comments>
		<pubDate>Sun, 12 Dec 2010 06:39:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coupons]]></category>
		<category><![CDATA[OpenVZ]]></category>
		<category><![CDATA[Semoweb]]></category>

		<guid isPermaLink="false">http://vpslook.com/coupons/semoweb-openvz-512m-burst-21year.html</guid>
		<description><![CDATA[Semoweb Virtual Private Servers (VPS) are a perfect solution for webmasters, designers, developers, and business owners. Semoweb charges a flat rate per month, for cpu, memory, diskspace, and bandwidth allotments, which you can then utilize for any number of websites, and/or in any method that you desire. Semoweb Virtual Private Servers (VPS) are designed for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://semoweb.com/" target="_blank">Semoweb</a> Virtual Private Servers (VPS) are a perfect solution for webmasters, designers, developers, and business owners. Semoweb charges a flat rate per month, for cpu, memory, diskspace, and bandwidth allotments, which you can then utilize for any number of websites, and/or in any method that you desire. Semoweb Virtual Private Servers (VPS) are designed for the client who would like to have the highest quality and reliability in server hardware, with the software and operational features of a dedicated server&#8212;all at a price closer to that of Shared Hosting. Semoweb Virtual Private Servers (VPS) give you the perfect opportunity to operate as a Dedicated Server with root access&#8212;to learn the operations of such without risk, and without the huge outlay of capital.</p>
<p><strong><span style="color: #8b0000;">Sale &#8211; 256MB-Yearly</span></strong><br />
Dedicated RAM: 256MB<br />
Burstable RAM: 512MB<br />
Bandwidth: 350GB/Month<br />
HardDrive Space: 10GB<br />
1 IP Address<br />
2 CPU cores<br />
SolusVM VPS Management Panel</p>
<p>Sign Up Link:<br />
<a href="https://www.semoweb.com/billing/cart.php?a=add&amp;pid=80" target="_blank">Order Here.</a><br />
<span id="more-107"></span>FAQ:</p>
<p>How Long have you been in business?<br />
Semoweb has been in business for 2 Years</p>
<p>Do you provide rDNS?<br />
Yes Semoweb will setup rDNS upon Request</p>
<p>Are you services managed?<br />
These plans are not managed.</p>
<p>How much are additional IP addresses?<br />
Additional IP addresses are $2.00 per month</p>
]]></content:encoded>
			<wfw:commentRss>http://vpslook.com/coupons/semoweb-openvz-512m-burst-21year.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NixCom &#8211; OpenVZ 128M $1.99/mo</title>
		<link>http://vpslook.com/coupons/nixcom-openvz-128m-1-99mo.html</link>
		<comments>http://vpslook.com/coupons/nixcom-openvz-128m-1-99mo.html#comments</comments>
		<pubDate>Sun, 12 Dec 2010 06:34:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coupons]]></category>
		<category><![CDATA[NixCom]]></category>
		<category><![CDATA[OpenVZ]]></category>

		<guid isPermaLink="false">http://vpslook.com/coupons/nixcom-openvz-128m-1-99mo.html</guid>
		<description><![CDATA[Web VPS &#8211; WHT-128-LITE
1x 2.4 Ghz CPU
5 Gb HDD
250 Gb Bandwidth @ 10 Mbit
128 Mb RAM
Web panel access
FREE SETUP
1 Month: $1.99 &#8211; 3 Month: $1.83 &#8211; 6 month: $1.67
http://my.nixcom.ca/cart.php?a=add&#38;pid=63
Web VPS &#8211; WHT-128-PREMIUM
2x 2.83 Ghz CPU
5 Gb HDD
250 Gb Bandwidth @ 100 Mbit
128 Mb RAM &#38; 256 Mb Burst
Web panel access
FREE SETUP
1 Month: $3.99 &#8211; 3 [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="color: navy;">Web VPS &#8211; WHT-128-LITE</span></strong><br />
1x 2.4 Ghz CPU<br />
5 Gb HDD<br />
250 Gb Bandwidth @ 10 Mbit<br />
128 Mb RAM<br />
Web panel access<br />
FREE SETUP</p>
<p><span style="color: red;">1 Month: $1.99 &#8211; 3 Month: $1.83 &#8211; 6 month: $1.67</span><br />
<a href="http://my.nixcom.ca/cart.php?a=add&amp;pid=63" target="_blank">http://my.nixcom.ca/cart.php?a=add&amp;pid=63</a></p>
<p><strong><span style="color: navy;">Web VPS &#8211; WHT-128-PREMIUM</span></strong><br />
2x 2.83 Ghz CPU<br />
5 Gb HDD<br />
250 Gb Bandwidth @ 100 Mbit<br />
128 Mb RAM &amp; 256 Mb Burst<br />
Web panel access<br />
FREE SETUP</p>
<p><span style="color: red;">1 Month: $3.99 &#8211; 3 Month: $3.83 &#8211; 6 month: $3.50</span><br />
<a href="http://my.nixcom.ca/cart.php?a=add&amp;pid=66" target="_blank">http://my.nixcom.ca/cart.php?a=add&amp;pid=66</a></p>
<p><span id="more-106"></span></p>
<p>You got the choice of a &#8216;LITE&#8217; package and a &#8216;PREMIUM&#8217; package to fit your needs. LITE packages are hosted on an INTEL Q6600 2.4Ghz (4 cores) &amp; PREMIUM are hosted on a INTEL Q9550 2.83Ghz (4 cores).<br />
IP included: 1 (Add: $1/ip/mo)<br />
VPS Technology: OpenVZ</p>
<p>For those who wants to make a ping test:</p>
<p>MTL: 67.215.8.227 (LITE)<br />
CHI: 184.154.35.195 (PREMIUM)</p>
]]></content:encoded>
			<wfw:commentRss>http://vpslook.com/coupons/nixcom-openvz-128m-1-99mo.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nocser &#8211; OpenVZ 128M $6/mo &#8211; 30OFF</title>
		<link>http://vpslook.com/coupons/nocser-openvz-128m-6mo-30off.html</link>
		<comments>http://vpslook.com/coupons/nocser-openvz-128m-6mo-30off.html#comments</comments>
		<pubDate>Tue, 05 Oct 2010 02:15:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coupons]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Malaysia]]></category>
		<category><![CDATA[Nocser]]></category>
		<category><![CDATA[OpenVZ]]></category>

		<guid isPermaLink="false">http://vpslook.com/?p=104</guid>
		<description><![CDATA[Server base on:
■ Xen Virtualization (no overselling) or OpenVZ (Now available !! )
■ AIMS Datacenter &#8211; Malaysia
■ Intel Server backbone
■ Xeon Quad Core Server
■ RAID 1 Server Configuration
■ Full root access
■ Free setup
■ RDNS allowed on request
■ Free Reimage your server
■ Free assistance for migration
■ Option Full managed and half managed

OpenVZ Packages:
Start 128 VPS
■ 7GB [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: small;"><strong>Server base on:</strong></span><br />
■ Xen Virtualization (no overselling) or <strong>OpenVZ (Now available !! )</strong><br />
■ AIMS Datacenter &#8211; Malaysia<br />
■ Intel Server backbone<br />
■ Xeon Quad Core Server<br />
■ RAID 1 Server Configuration<br />
■ Full root access<br />
■ Free setup<br />
■ RDNS allowed on request<br />
■ Free Reimage your server<br />
■ Free assistance for migration<br />
■ Option Full managed and half managed</p>
<p><span style="font-size: small;"><span style="text-decoration: underline;"><span style="color: #2e8b57;"><br />
OpenVZ Packages:</span></span></span></p>
<p><strong><span style="color: #0000ff;">Start 128 VPS</span></strong><br />
■ 7GB Disk Space<br />
<strong>■ 128MB RAM Guarantee<br />
■ 256MB RAM SWAP</strong><br />
■ 100 GB Monthly Transfer<br />
■ 1 IP addresses<br />
■ <strong>Operating System OF YOUR CHOICE!</strong><br />
■ Unmanaged<br />
■ VPS control panel (Reboot, Reinstall, Shout Down etc..)<br />
■ Setup: Free<br />
■ Monthly: $6.00 (FIRST MONTH: $4.20, <strong>FIRST YEAR::$50.40 !!</strong> )<br />
<strong><span style="color: #ff0000;">Order now?</span>:</strong> <a href="https://www.nocser.net/clients/cart.php?a=add&amp;pid=273" target="_blank">Click Here</a><strong><span style="color: #0000ff;"><a href="https://www.nocser.net/clients/cart.php?a=add&amp;pid=273" target="_blank"><br />
</a></span></strong></p>
<p><span style="font-size: small;"><span style="color: #2e8b57;"><span style="text-decoration: underline;"><span id="more-104"></span>XEN Virtualization Packages:</span></span></span></p>
<p><strong><span style="color: #0000ff;">Easy 256 VPS</span></strong><br />
<strong>■ 15GB Disk Space</strong><br />
<strong>■ 256MB RAM</strong><br />
■ 300 GB Monthly Transfer<br />
■ 1 IP addresses<br />
■ <strong>Operating System OF YOUR CHOICE!</strong><br />
■ Unmanaged<br />
■ VPS control panel (Reboot, Reinstall, Shout Down etc..)<br />
■ Setup: Free<br />
■ Monthly: $12.00 (FIRST MONTH: $8.40, <strong>FIRST YEAR::$100.80 !!</strong> )<br />
<strong><span style="color: #ff0000;">Order now?</span>:</strong> <a href="https://www.nocser.net/clients/cart.php?a=confproduct&amp;i=10" target="_blank">Click Here</a><strong><span style="color: #0000ff;"><br />
</span></strong><strong><span style="color: #0000ff;"><br />
<span style="color: #ff0000;">&#8212;&#8212; Use cupon code: <strong>TVPS30</strong> to get 30OFF first month or <strong>FIRST YEAR</strong>!!* &#8212;&#8212;<br />
&#8212;&#8212; Expiry: 15/10 SO HURRY UP! &#8212;&#8212;</span></span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://vpslook.com/coupons/nocser-openvz-128m-6mo-30off.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ThrustVPS &#8211; XEN/Windows VPS 512M $7.95/mo</title>
		<link>http://vpslook.com/coupons/thrustvps-xen-windows-vps-512m-7-95mo.html</link>
		<comments>http://vpslook.com/coupons/thrustvps-xen-windows-vps-512m-7-95mo.html#comments</comments>
		<pubDate>Mon, 05 Jul 2010 09:05:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coupons]]></category>
		<category><![CDATA[ThrustVPS]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[XEN]]></category>

		<guid isPermaLink="false">http://vpslook.com/?p=102</guid>
		<description><![CDATA[Thrust::VPS &#8211; Cranking it to 11

Thrust::VPS offers high performance, Xen and OpenVZ VPS in the UK and US. All our nodes are the latest 8 Core Intel Xeons coupled with 48GB or more RAM and RAID-10 arrays.
Not sure what you need? 
If you are starting out or happy running Linux then our Xen PV plans [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="color: #ff8c00;"><span style="font-size: x-small;">Thrust::VPS &#8211; Cranking it to 11</span></span><br />
</strong><br />
Thrust::VPS offers high performance, Xen and OpenVZ VPS in the UK and US. All our nodes are the latest 8 Core Intel Xeons coupled with 48GB or more RAM and RAID-10 arrays.</p>
<p><strong><span style="color: #ff8c00;"><span style="font-size: x-small;">Not sure what you need? </span></span></strong></p>
<blockquote><p>If you are starting out or happy running Linux then our Xen PV plans are ideal. Instantly setup and instantly accessible</p>
<p>If you however want to run Windows/Linux/*BSD and want to get your hands dirty and tweak things then our Xen HVM plans are just right for you.</p></blockquote>
<p><span style="color: #ff8c00;"><span style="font-size: x-small;"><strong>Sounds great? Well have you seen the price…</strong></span></span></p>
<p>Theres no extra cost of HVM support over PV an infact our prices start at just £4.95/mo or $7.95/mo and for this you get</p>
<p>512Mb RAM + 512Mb Swap<br />
15GB Disk Space<br />
1TB Transfer<br />
SolusVM for reboots/reloads</p>
<p><a href="https://clients.thrustvps.com/aff.php?aff=054" target="_blank"><strong>Order Now!</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://vpslook.com/coupons/thrustvps-xen-windows-vps-512m-7-95mo.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>123systems &#8211; OpenVZ 256M $4.52/mo &#8211; 35OFF FOR LIFE</title>
		<link>http://vpslook.com/coupons/123systems-openvz-256m-452mo-35off-for-life.html</link>
		<comments>http://vpslook.com/coupons/123systems-openvz-256m-452mo-35off-for-life.html#comments</comments>
		<pubDate>Mon, 31 May 2010 06:53:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coupons]]></category>
		<category><![CDATA[123systems]]></category>
		<category><![CDATA[OpenVZ]]></category>

		<guid isPermaLink="false">http://vpslook.com/?p=98</guid>
		<description><![CDATA[123Systems originated on the east coast and rapidly worked our way up to providing services throughout the United States and then world wide. We have an abundance of hardware located in many different locations world wide a few of them are listed below:
Phoenix,Arizona (SolusVM VPS Nodes)
Scranton,Pennsylvania (Webhosting Nodes)
Chicago,Illinois (Backup Nodes)
Teleorman,Romania (Offshore Nodes)
All Virtual Private Servers [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.123systems.net" target="_blank">123Systems</a> originated on the east coast and rapidly worked our way up to providing services throughout the United States and then world wide. We have an abundance of hardware located in many different locations world wide a few of them are listed below:</p>
<p>Phoenix,Arizona (SolusVM VPS Nodes)<br />
Scranton,Pennsylvania (Webhosting Nodes)<br />
Chicago,Illinois (Backup Nodes)<br />
Teleorman,Romania (Offshore Nodes)</p>
<p><strong><span style="color: #ff0000;">All Virtual Private Servers Receive the following:</span></strong></p>
<p>Phoenix,Arizona Location (Atlanta,Fremont,and Dallas Coming Soon)<br />
Fair Share On Core i5&#8217;s and i7&#8217;s with 16GB DDR3!<br />
Solus VM Control Panel With Features Such as OS Reload And Reboots<br />
Premium Bandwidth<br />
1-6 Hour Setup Time (Usually within 10-15 minutes!)<br />
Full Root Access<br />
Servers with extreme lead way (No Over Selling)<br />
RAID Protected Disks In RAID 5 And RAID 10<br />
Node Selection: Your choice to be on a Core i5 or Core i7!<br />
Node Specifications are as follows:<br />
Core i5 (i5-750) Quad Core 2.66GHz | 16 GB DDR3 | RAID Protected Disks<br />
Core i7 (i7-860) Quad Core 2.8GHz | 16 GB DDR3 | RAID Protected Disks</p>
<p><strong><span style="text-decoration: underline;">Use the code <strong><span style="color: #ff0000;">SPRING2010</span></strong> During checkout and it will take <span style="color: #ff0000;">35% Off</span> your virtual server for life!</span></strong></p>
<p><strong><span style="text-decoration: underline;"><span id="more-98"></span>Check out our VPS Deals!</span></strong></p>
<p><strong><span style="color: #ff8c00;">Linux-256-SolusVM</span></strong><br />
Guaranteed RAM: 256MB<br />
Burstable RAM: 512MB<br />
Disk Space: 10GB<br />
Bandwidth: 250GB/Month<br />
Fair Share CPU<br />
1 IP Address<br />
SolusVM Control Panel<br />
6.95$/month &#8211; <span style="color: #ff0000;"><strong>4.52$ With 35% Discount</strong></span><br />
<a href="https://www.123systems.net/billing/cart.php?a=add&amp;pid=60" target="_blank">Order Now!</a></p>
<p><strong><span style="color: #ff8c00;">Linux-512-SolusVM</span></strong><br />
Guaranteed RAM: 512MB<br />
Burstable RAM: 1024MB<br />
Disk Space: 25GB<br />
Bandwidth: 1TB/Month<br />
Fair Share CPU<br />
1 IP Address<br />
SolusVM Control Panel<br />
15.95$/month &#8211; <strong><span style="color: #ff0000;">10.37$ With 35% Discount</span></strong><br />
<a href="https://www.123systems.net/billing/cart.php?a=confproduct&amp;i=2" target="_blank">Order Now!</a></p>
<p><strong><span style="text-decoration: underline;">** Available Addons **</span></strong><br />
<strong><br />
Dedicated RAM<br />
</strong><br />
128MB Dedicated RAM &#8211; 5.95$ One-Time<br />
256MB Dedicated RAM &#8211; 12.95$ One-Time</p>
<p><strong>Backup Space</strong></p>
<p>10GB &#8211; 4.95$<br />
20GB &#8211; 8.95$<br />
50GB &#8211; 19.95$<br />
100GB &#8211; 29.95$<br />
250GB &#8211; 49.95$<br />
<strong><br />
Control Panels</strong></p>
<p>Kloxo/LxAdmin &#8211; Free<br />
Webmin &#8211; Free<br />
DirectAdmin Unlimited Domains &#8211; 12.95$<br />
cPanel/WHM Unlimited Domains &#8211; 16.95</p>
<p><strong>••Contact Us••<br />
</strong>Live Support MSN: <a href="mailto:support@123systems.net">support@123systems.net</a><br />
Billing &amp; Help Desk: <a href="https://www.123systems.net/billing" target="_blank">https://www.123systems.net/billing</a></p>
]]></content:encoded>
			<wfw:commentRss>http://vpslook.com/coupons/123systems-openvz-256m-452mo-35off-for-life.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ApertureHost &#8211; XEN 128M $5/mo &#8211; 25%OFF</title>
		<link>http://vpslook.com/coupons/aperturehost-xen-128m-5mo-25off.html</link>
		<comments>http://vpslook.com/coupons/aperturehost-xen-128m-5mo-25off.html#comments</comments>
		<pubDate>Sun, 23 May 2010 01:29:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coupons]]></category>
		<category><![CDATA[ApertureHost]]></category>
		<category><![CDATA[XEN]]></category>

		<guid isPermaLink="false">http://vpslook.com/?p=95</guid>
		<description><![CDATA[&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;
ApertureHost.com Standard Features
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;
- 24&#215;7 Technical Support, Monitoring
- 30-Day Money Back Guarantee
- 99.9% Guaranteed Uptime SLA
- Powered by Xen Zero Overselling
- Powerful Control Panel: Start, Stop, Reboot, Reimage, rDNS and more!
- Operating Systems: CentOS, Ubuntu, Debian, Slackware, Fedora (32/64-bit)
- Addons: cPanel, DirectAdmin, Fantastico, RVSkin, WHMSonic and Ksplice
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;
Current Shared Web Hosting Promotions
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;
During checkout enter promo code MAY25 [...]]]></description>
			<content:encoded><![CDATA[<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
<span style="color: #008000;"><strong>ApertureHost.com Standard Features</strong></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>- 24&#215;7 Technical Support, Monitoring<br />
- 30-Day Money Back Guarantee<br />
- 99.9% Guaranteed Uptime SLA<br />
- Powered by Xen <strong>Zero Overselling</strong><br />
- Powerful Control Panel: Start, Stop, Reboot, Reimage, rDNS and more!<br />
- Operating Systems: CentOS, Ubuntu, Debian, Slackware, Fedora (32/64-bit)<br />
- Addons: cPanel, DirectAdmin, Fantastico, RVSkin, WHMSonic and <strong>Ksplice</strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
<span style="color: #008000;"><strong>Current Shared Web Hosting Promotions</strong></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>During checkout enter promo code <span style="color: #ff0000;"><strong>MAY25</strong></span> to get 25% off your first billing cycle. Not only that, but if you are unhappy for any reason, we will refund your entire order!</p>
<p><span id="more-95"></span>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
<span style="color: #008000;"><strong>Minimum Xen Server Node Specs</strong></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
- Dual Intel Xeon E5520 Quad Core @ 2.27GHz<br />
- 24GB DDR3 ECC Registered RAM<br />
- RAID10 Protected Storage<br />
- 1 Gbps Fiber Network Backbone</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
<span style="color: #008000;"><strong>Operating Systems (Latest Versions)</strong></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
- CentOS 5 (64-bit)<br />
- Debian 5 (64-bit)<br />
- Ubuntu 9 (64-bit)<br />
- Fedora 12 (64-bit)<br />
- Slackware 13 (64-bit)</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
<span style="color: #008000;"><strong>VM128 &#8211; Virtual Web Hosting</strong></span> (<a href="http://aperturehost.com/services/vps-web-hosting-service/" target="_blank">details</a>)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
<span style="color: #008000;"><strong>128 MB</strong></span> Dedicated RAM<br />
<span style="color: #008000;"><strong>5 GB</strong></span> RAID10 Disk Space<br />
<span style="color: #008000;"><strong>50 GB</strong></span> Premium bandwidth</p>
<p>Starting at <span style="color: #008000;"><strong>$5/Mo</strong></span></p>
<p><a href="https://aperturehost.com/billing/cart.php?a=add&amp;pid=41" target="_blank">Order This Package</a></p>
]]></content:encoded>
			<wfw:commentRss>http://vpslook.com/coupons/aperturehost-xen-128m-5mo-25off.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

