<?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>Review Bluehost: My true hosting experience with Bluehost &#187; features</title>
	<atom:link href="http://www.reviewbluehost.com/tag/features/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.reviewbluehost.com</link>
	<description></description>
	<lastBuildDate>Tue, 12 May 2009 05:22:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>SSH common commands</title>
		<link>http://www.reviewbluehost.com/bluehost-features/ssh-common-commands/</link>
		<comments>http://www.reviewbluehost.com/bluehost-features/ssh-common-commands/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 05:23:21 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
				<category><![CDATA[Bluehost Features]]></category>
		<category><![CDATA[bluehost]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.reviewbluehost.com/?p=126</guid>
		<description><![CDATA[Following up on my previous post about Bluehost&#8217;s SSH services, listed below are some of the common commands in for SSH. ls : list files/directories in a directory, comparable to dir in windows/dos. ls -al : shows all files (including ones that start with a period), directories, and details attributes for each file. cd : [...]]]></description>
			<content:encoded><![CDATA[<p>Following up on my previous post about <a href="http://www.reviewbluehost.com/bluehost-features/does-bluehost-offer-ssh-services/">Bluehost&#8217;s SSH services</a>, listed below are some of the common commands in for SSH. </p>
<blockquote><p>ls : list files/directories in a directory, comparable to dir in windows/dos.<br />
ls -al : shows all files (including ones that start with a period), directories, and details attributes for each file.</p>
<p>cd : change directory · · cd /usr/local/apache : go to /usr/local/apache/ directory<br />
cd ~ : go to your home directory<br />
cd &#8211; : go to the last directory you were in<br />
cd .. : go up a directory</p>
<p>cat : print file contents to the screen<br />
cat filename.txt : cat the contents of filename.txt to your screen</p>
<p>tail : like cat, but only reads the end of the file<br />
tail /var/log/messages : see the last 20 (by default) lines of /var/log/messages<br />
tail -f /var/log/messages : watch the file continuously, while it&#8217;s being updated<br />
tail -200 /var/log/messages : print the last 200 lines of the file to the screen</p>
<p>more : like cat, but opens the file one screen at a time rather than all at once<br />
more /etc/userdomains : browse through the userdomains file.<br />
hit Space to go to the next page, q to quit</p>
<p>pico : friendly, easy to use file editor<br />
pico /home/burst/public_html/index.html : edit the index page for the user&#8217;s website.</p>
<p>vi : another editor, tons of features, harder to use at first than pico<br />
vi /home/burst/public_html/index.html : edit the index page for the user&#8217;s website.</p>
<p>grep : looks for patterns in files<br />
grep root /etc/passwd : shows all matches of root in /etc/passwd<br />
grep -v root /etc/passwd : shows all lines that do not match root</p>
<p>touch : create an empty file<br />
touch /home/burst/public_html/404.html : create an empty file called 404.html in the directory /home/burst/public_html/</p>
<p>ln : create&#8217;s &#8220;links&#8221; between files and directories<br />
ln -s /home/username/tmp/webalizer webstats: Now you can display http://www.yourdomain.com/webstats to show your webalizer stats online. You can delete the symlink (webstats) and it will not delete the original stats on the server.</p>
<p>rm : delete a file<br />
rm filename.txt : deletes filename.txt, will more than likely ask if you really want to delete it<br />
rm -f filename.txt : deletes filename.txt, will not ask for confirmation before deleting.<br />
rm -rf tmp/ : recursively deletes the directory tmp, and all files in it, including subdirectories. BE VERY CAREFULL WITH THIS COMMAND!!!</p>
<p>last : shows who logged in and when<br />
last -20 : shows only the last 20 logins<br />
last -20 -a : shows last 20 logins, with the hostname in the last field</p>
<p>w : shows who is currently logged in and where they are logged in from.</p>
<p>netstat : shows all current network connections.<br />
netstat -an : shows all connections to the server, the source and destination ips and ports.<br />
netstat -rn : shows routing table for all ips bound to the server.</p>
<p>top : shows live system processes in a nice table, memory information, uptime and other useful info. This is excellent for managing your system processes, resources and ensure everything is working fine and your server isn&#8217;t bogged down.<br />
top then type Shift + M to sort by memory usage or Shift + P to sort by CPU usage</p>
<p>ps: ps is short for process status, which is similar to the top command. It&#8217;s used to show currently running processes and their PID.<br />
A process ID is a unique number that identifies a process, with that you can kill or terminate a running program on your server (see kill command).<br />
ps U username : shows processes for a certain user<br />
ps aux : shows all system processes<br />
ps aux &#8211;forest : shows all system processes like the above but organizes in a hierarchy that&#8217;s very useful!</p>
<p>file : attempts to guess what type of file a file is by looking at it&#8217;s content.<br />
file * : prints out a list of all files/directories in a directory</p>
<p>du : shows disk usage.<br />
du -sh : shows a summary, in human-readble form, of total disk space used in the current directory, including subdirectories.<br />
du -sh * : same thing, but for each file and directory. helpful when finding large files taking up space.</p>
<p>wc : word count<br />
wc -l filename.txt : tells how many lines are in filename.txt</p>
<p>cp : copy a file<br />
cp filename filename.backup : copies filename to filename.backup<br />
cp -a /home/burst/new_design/* /home/burst/public_html/ : copies all files, retaining permissions form one directory to another.<br />
find * -type d|xargs -i cp &#8211;verbose php.ini {} : copies your php.ini file into all directories recursively.</p>
<p>kill: terminate a system process<br />
kill -9 PID EG: kill -9 431<br />
kill PID EG: kill 10550<br />
Use top or ps ux to get system PIDs (Process IDs)</p>
<p>EG:</p>
<p>PID TTY TIME COMMAND<br />
10550 pts/3 0:01 /bin/csh<br />
10574 pts/4 0:02 /bin/csh<br />
10590 pts/4 0:09 APP</p>
<p>Each line represents one process, with a process being loosely defined as a running instance of a program. The column headed PID (process ID) shows the assigned process numbers of the processes. The heading COMMAND shows the location of the executed process.</p>
<p>Putting commands together<br />
Often you will find you need to use different commands on the same line. Here are some examples. Note that the | character is called a pipe, it takes date from one program and pipes it to another.<br />
> means create a new file, overwriting any content already there.<br />
>> means tp append data to a file, creating a newone if it doesn not already exist.<br />
< send input from a file back into a command.</p>
<p>grep User /usr/local/apache/conf/httpd.conf |more<br />
This will dump all lines that match User from the httpd.conf, then print the results to your screen one page at a time.</p>
<p>last -a > /root/lastlogins.tmp<br />
This will print all the current login history to a file called lastlogins.tmp in /root/</p>
<p>tail -10000 /var/log/exim_mainlog |grep domain.com |more<br />
This will grab the last 10,000 lines from /var/log/exim_mainlog, find all occurances of domain.com (the period represents &#8216;anything&#8217;,<br />
&#8211; comment it out with a so it will be interpretted literally), then send it to your screen page by page.</p>
<p>netstat -an |grep :80 |wc -l<br />
Show how many active connections there are to apache (httpd runs on port 80)</p>
<p>mysqladmin processlist |wc -l<br />
Show how many current open connections there are to mysql</p>
<p>mysqldump -u username -p dbname > file.sql<br />
MySQL Dump</p>
<p>tar -zxvf file.tar.gz<br />
UnTAR file</p>
<p>mysql -u username -p database_name <file.sql<br />
Importing MySQL database</p>
<p>which [perl]<br />
Finding path to [perl] </p></blockquote>
<p>These codes are quoted from Bluehost&#8217;s Helpdesk &#8211; thus in case you have questions about them, it&#8217;s best to refer back to Bluehost technical supports.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reviewbluehost.com/bluehost-features/ssh-common-commands/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bluehost Multimedia Features</title>
		<link>http://www.reviewbluehost.com/bluehost-features/bluehost-multimedia-features/</link>
		<comments>http://www.reviewbluehost.com/bluehost-features/bluehost-multimedia-features/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 23:55:38 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
				<category><![CDATA[Bluehost Features]]></category>
		<category><![CDATA[bluehost]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[multimedia]]></category>

		<guid isPermaLink="false">http://www.reviewbluehost.com/?p=94</guid>
		<description><![CDATA[Bluehost hosting support a wide range of multimedia features that other web hosting companies can&#8217;t compare. In fact, Bluehost is my top recommendation to all webmasters who&#8217;re planning to publish multimedia content intensively. Multimedia Features support by Bluehost In a quick glance, here&#8217;re the multimedia features supported by Bluehost hosting: Supports Streaming Video Supports Streaming [...]]]></description>
			<content:encoded><![CDATA[<p>Bluehost hosting support a wide range of multimedia features that other web hosting companies can&#8217;t compare. In fact, Bluehost is my top recommendation to all webmasters who&#8217;re planning to publish multimedia content intensively.</p>
<p><img class="border" src="http://www.reviewbluehost.com/images/2008/1006-12.jpg" alt="Multimedia entertainment with Bluehost" /></p>
<p><strong>Multimedia Features support by Bluehost</strong></p>
<p>In a quick glance, here&#8217;re the multimedia features supported by Bluehost hosting:</p>
<ul>
<li>Supports Streaming Video</li>
<li>Supports Streaming Audio</li>
<li>Real Audio &amp; Video Support</li>
<li>Flash Support</li>
<li>Macromedia Shockwave</li>
<li>MIDI File Support</li>
</ul>
<p>I would say it&#8217;s pretty comprehensive and I have all the features I need with Bluehost.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reviewbluehost.com/bluehost-features/bluehost-multimedia-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bluehost updated pricing info</title>
		<link>http://www.reviewbluehost.com/bluehost-pricing/bluehost-updated-pricing-info/</link>
		<comments>http://www.reviewbluehost.com/bluehost-pricing/bluehost-updated-pricing-info/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 03:07:46 +0000</pubDate>
		<dc:creator>Jerry</dc:creator>
				<category><![CDATA[Bluehost Pricing]]></category>
		<category><![CDATA[bluehost]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[price]]></category>
		<category><![CDATA[pricing]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://www.reviewbluehost.com/?p=61</guid>
		<description><![CDATA[Bluehost has recently (on mid Sept) updated their pricing structure. You used to get the $6.95 rate if you signed up for 24 months of hosting (and paid for it in advance). That rate is now available only if you pay for 36 months. Official pricing info available at here. Bluehost Pricing For the ease [...]]]></description>
			<content:encoded><![CDATA[<div id="right"><img src="http://www.reviewbluehost.com/images/2008/1006-3.jpg" alt="Bluehost hosting company" /></div>
<p>Bluehost has recently (on mid Sept) updated their pricing structure.</p>
<p>You used to get the $6.95 rate if you signed up for 24 months of hosting (and paid for it in advance). That rate is now available only if you pay for 36 months. Official pricing info available at <a href="http://helpdesk.bluehost.com/kb/index.php?x=&amp;mod_id=2&amp;id=162">here</a>.</p>
<h3>Bluehost Pricing</h3>
<p>For the ease to review, I had compiled the detail pricing info for Bluehost hosting services. Note that setup fees are totally $0 for hosting plan longer than 12 months; while hosting plan for 6 and 3 months will cost you $30 extra on the setup fees. All price listed below is shared hosting packages and websites are hosted on a shared IP.</p>
<blockquote><p><strong>36 Month Account $6.95 a month</strong></p>
<ul>
<li> 1 FREE Domain Registration good for the life of your hosting package.</li>
<li>No set up fees [$30 Savings]</li>
<li>Less than $0.23 (23 cents) a day!</li>
<li>$250.20 Total due at sign-up; [36 month account x $6.95 mo.]</li>
</ul>
<p><strong>24 Month Account $7.95 a month</strong></p>
<ul>
<li> 1 FREE Domain Registration good for the life of your hosting package.</li>
<li>No set up fees [$30 Savings]</li>
<li>Less than $0.27 (27 cents) a day!</li>
<li>$190.80 Total due at sign-up; [24 month account x $7.95 mo.]</li>
</ul>
<p><strong>12 Month Account: $8.95 a month</strong></p>
<ul>
<li> 1 FREE Domain Registration good for the life of your hosting package.</li>
<li>No set up fee [$30 Savings]</li>
<li>Less than $0.30 (30 cents) a day!</li>
<li>$107.40 Total due at sign-up; [12 month account x $8.95 mo.]</li>
</ul>
<p><strong>6 Month Account: $99.70</strong></p>
<ul>
<li> $9.95 A Month</li>
<li>[+] $30 One Time Set Up Fee</li>
<li>[+] $10 Annual Domain Registration Fee</li>
</ul>
<p>* $99.70 Total due at sign-up [6 mo. x $9.95 mo.($59.70) + $30 Setup + $10 Registration]</p>
<p><strong>3 Month Account: $69.85</strong></p>
<ul>
<li> $9.95 A Month</li>
<li>[+] $30 One Time Set Up Fee</li>
<li>[+] $10 Annual Domain Registration Fee</li>
</ul>
<p>* $69.85 Total due at sign-up [3 mo. x $9.95 mo.($29.85) + $30 Setup + $10 Registration]</p></blockquote>
<h3>Optional Features at Bluehost</h3>
<p>After your Bluehost hosting account is registered, you&#8217;ll be given the choice of other optional features such as registering additional domain names, hosting your website on a dedeicated IP, registering a private SSL certificates, as well as Postini Mail Filtering (new).</p>
<p>Each of these features will be charged separately. Have a quick glance on these pricing below:</p>
<ul>
<li>Additional Domain Names = $10.00 each year</li>
<li>Dedicated IP = $30.00 each year [$2.50 mo.]</li>
<li>SSL Certificates = $45.00 each year</li>
<li>Expired Account Reactivations = $30.00</li>
<li>Postini Mail Filtering = $1.00/mo per e-mail address</li>
</ul>
<h3>Special pricing from ReviewBluehost.com</h3>
<p><img src="http://www.reviewbluehost.com/images/2008/1006-1.jpg" alt="Bluehost pricing" /></p>
<p>The good thing about shopping from ReviewBluehost.com is that you get to keep $6.95 as your 24 months hosting cost! The last time I checked, all order links from ReviewBluehost.com are still on the old pricing structures &#8211; thus this means you get to save $1/mo for 24 months hosting plan.</p>
<p>Anyhow, I wouldn&#8217;t stress too much about this as it&#8217;s not much different holding your account for 24 or 36 months with a good host. Further more, Bluehost allows pro-rated payback in their refund policy, this means you can signup with the 36 months hosting plan and simply cancel the services whenever you feels like stopping without losing much money.</p>
<p><a href="http://www.reviewbluehost.com/bluehost.php"><strong>Special Pricing: $6.95/mo for 24 months plan! Order Bluehost now.</strong></a><br />
<a href="http://www.reviewbluehost.com/bluehost.php"><img src="http://www.lduhtrp.net/image-1763341-10376707" width="468" height="60" alt="Bluehost.com Web Hosting $6.95" border="0"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.reviewbluehost.com/bluehost-pricing/bluehost-updated-pricing-info/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
