<?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/"
	>

<channel>
	<title>Jon Britt Studios</title>
	<atom:link href="http://jonbrittstudios.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jonbrittstudios.com</link>
	<description>Jon Britt web development portfolio</description>
	<pubDate>Mon, 03 May 2010 19:50:13 +0000</pubDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Platt Commercial Printing</title>
		<link>http://jonbrittstudios.com/platt-commercial-printing/</link>
		<comments>http://jonbrittstudios.com/platt-commercial-printing/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 22:08:41 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
		
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://jonbrittstudios.com/?p=444</guid>
		<description><![CDATA[Develop existing design and integrate http upload script. *The web page says &#8220;FTP&#8221;, this is for usability purposes only.

Currently am working with client to find adequate hosting solution for the PHP script used. I&#8217;ll post details after the project is fully completed. 
]]></description>
			<content:encoded><![CDATA[<p>Develop existing design and integrate http upload script. *The web page says &#8220;FTP&#8221;, this is for usability purposes only.<br />
<span id="more-444"></span><br />
Currently am working with client to find adequate hosting solution for the PHP script used. I&#8217;ll post details after the project is fully completed. </p>
]]></content:encoded>
			<wfw:commentRss>http://jonbrittstudios.com/platt-commercial-printing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to back up a website using SSH</title>
		<link>http://jonbrittstudios.com/how-to-back-up-a-website-using-ssh/</link>
		<comments>http://jonbrittstudios.com/how-to-back-up-a-website-using-ssh/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 07:11:39 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://jonbrittstudios.com/?p=432</guid>
		<description><![CDATA[So now you have a website. Maybe even many websites. Just like anything else though. They can break and if there&#8217;s not a copy of the site. You may have allot of time trying to fix the problem and in the meantime, the site(s) are down. 
To backup WordPress (and most of similar systems, scripts [...]]]></description>
			<content:encoded><![CDATA[<p>So now you have a website. Maybe even many websites. Just like anything else though. They can break and if there&#8217;s not a copy of the site. You may have allot of time trying to fix the problem and in the meantime, the site(s) are down. </p>
<p>To backup WordPress (and most of similar systems, scripts etc) all you need is to get a copy of information from database and copy of all files.  Files often are in one directory, information is usually in one database.</p>
<p>The first thing you need to do is determine which database is being used with your website. After you determine that, you&#8217;ll need to make a backup by entering the following command:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">$ mysqldump <span style="color: #660033;">-p</span> <span style="color: #660033;">-u</span> username <span style="color: #660033;">-h</span> hostname.com name_of_database <span style="color: #000000; font-weight: bold;">&gt;</span> dump.sql</pre></td></tr></table></div>

<p>Don&#8217;t forget to check what is there in dump.sql after that and ensure the database contains the proper information for the actual website your backing up. This dump will usually happen at the root of your hosting plans server. </p>
<p><strong>To create the backup:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #660033;">-R</span> directory copy_of_directory</pre></td></tr></table></div>

<blockquote><p>NOTE:<br />
&#8220;-R&#8221; is to copy recursively, &#8220;directory&#8221; is the name of folder you are copying, &#8220;copy_of_directory&#8221; is name of created copy</p></blockquote>
<p>After this command has been successfully ran. You now have a copy of the data files of the website. </p>
<p><strong>To restore the website from the backup:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">$ mysql <span style="color: #660033;">-p</span> <span style="color: #660033;">-u</span> username <span style="color: #660033;">-h</span> hostname.com name_of_database <span style="color: #000000; font-weight: bold;">&lt;</span> dump.sql
$ <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-R</span> directory
$ <span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #660033;">-R</span> copy_of_directory directory</pre></td></tr></table></div>

<p>The first command, will restore the database.<br />
The second recursively deletes directory with files.<br />
The third restores files. </p>
<p>You need to delete the directory, otherwise files from backup will overwrite actual files (this is ok) but will not delete any files that was in actual copy but was not in the backup (this is not ok). You usually don&#8217;t need to delete and recreate the database because dump contains commands to drop affected tables before loading information.</p>
<p><strong>If you want to create a &#8220;zipped&#8221; archive and not worry about overwriting directories:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-c</span> directory <span style="color: #660033;">-j</span> <span style="color: #660033;">-f</span> backup_of_directory.tbz <span style="color: #ff0000;">&quot;-c directory&quot;</span> sets target, <span style="color: #ff0000;">&quot;-j&quot;</span></pre></td></tr></table></div>

<p>means packing with bzip2 to make file smaller and &#8220;-f backup_of_directory.tbz&#8221; sets name of backup.</p>
<p>If you want to remove old files and unpack backup.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-R</span> directory
$ <span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-x</span> <span style="color: #660033;">-j</span> <span style="color: #660033;">-f</span> backup_of_directory.tbz</pre></td></tr></table></div>

<p>&#8220;-x&#8221; means &#8220;extract&#8221;, &#8220;-j&#8221; means &#8220;unpack bzip2-packed data&#8221; &#8220;-f backup_of_directory.tbz&#8221; sets name of archive to unpack.</p>
<p>Of course, you will need to move your freshly made archive to a safe place in case you need to retrieve it later:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">mv</span> backup.tbz ~<span style="color: #000000; font-weight: bold;">/</span>some<span style="color: #000000; font-weight: bold;">/</span>safe<span style="color: #000000; font-weight: bold;">/</span>place<span style="color: #000000; font-weight: bold;">/</span>backup.tbz</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://jonbrittstudios.com/how-to-back-up-a-website-using-ssh/feed/</wfw:commentRss>
		</item>
		<item>
		<title>.htaccess ERRORS</title>
		<link>http://jonbrittstudios.com/htaccess-errors/</link>
		<comments>http://jonbrittstudios.com/htaccess-errors/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 00:35:43 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://jonbrittstudios.com/?p=152</guid>
		<description><![CDATA[This seems to be what people think htaccess was meant for, but it is only part of the general use. While this plays a huge role in what htaccess does. There is so much more we&#8217;ll be going over in the following posts. 
In order to specify your own ErrorDocuments, you need to be slightly [...]]]></description>
			<content:encoded><![CDATA[<p>This seems to be what people think htaccess was meant for, but it is only part of the general use. While this plays a huge role in what htaccess does. There is so much more we&#8217;ll be going over in the following posts. </p>
<p>In order to specify your own ErrorDocuments, you need to be slightly familiar with the server returned error codes. You do not need to specify error pages for all of these, in fact you shouldn&#8217;t. An ErrorDocument for code 200 would cause an infinite loop, whenever a page was found&#8230;this would not be good. The following is a list of error codes for your reference:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
</pre></td><td class="code"><pre class="text" style="font-family:monospace;">Successful Client Requests
200 	OK
201 	Created
202 	Accepted
203 	Non-Authorative Information
204 	No Content
205 	Reset Content
206 	Partial Content
&nbsp;
Client Request Redirected
300 	Multiple Choices
301 	Moved Permanently
302 	Moved Temporarily
303 	See Other
304 	Not Modified
305 	Use Proxy
&nbsp;
Client Request Errors
400 	Bad Request
401 	Authorization Required
402 	Payment Required (not used yet)
403 	Forbidden
404 	Not Found
405 	Method Not Allowed
406 	Not Acceptable (encoding)
407 	Proxy Authentication Required 	 
408 	Request Timed Out
409 	Conflicting Request
410 	Gone
411 	Content Length Required
412 	Precondition Failed
413 	Request Entity Too Long
414 	Request URI Too Long
415 	Unsupported Media Type
&nbsp;
Server Errors
500 	Internal Server Error
501 	Not Implemented
502 	Bad Gateway 	 
503 	Service Unavailable 	 
504 	Gateway Timeout 	 
505 	HTTP Version Not Supported</pre></td></tr></table></div>

<p>You will probably want to create an error document for codes 404 and 500, at the least 404 since this would give you a chance to handle requests for pages not found. 500 would help you out with internal server errors in any scripts you have running. You may also want to consider ErrorDocuments for 401 - Authorization Required (as in when somebody tries to enter a protected area of your site without the proper credentials), 403 - Forbidden (as in when a file with permissions not allowing it to be accessed by the user is requested) and 400 - Bad Request, which is one of those generic kind of errors that people get to by doing some weird stuff with your URL or scripts.</p>
<p>In order to specify your own customized error documents, you need to add the following command, on one line, within your htaccess file:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="text" style="font-family:monospace;">ErrorDocument code /directory/filename.ext
    or
ErrorDocument 404 /errors/notfound.html</pre></td></tr></table></div>

<p>This would cause any error code resulting in 404 to be forward to yoursite.com/errors/notfound.html</p>
<p>Likewise with:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="text" style="font-family:monospace;">ErrorDocument 500 /errors/internalerror.html</pre></td></tr></table></div>

<p>You can name the pages anything you want, and you can place the error pages anywhere you want within your site, so long as they are web-accessible (through a URL). The initial slash in the directory location represents the root directory of your site, that being where your default page for your first-level domain is located. I typically prefer to keep them in a separate directory for maintenance purposes and in order to better control spiders indexing them through a ROBOTS.TXT file, but it is entirely up to you.</p>
<p>If you were to use an error document handler for each of the error codes I mentioned, the htaccess file would look like the following (note each command is on its own line):</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="text" style="font-family:monospace;">ErrorDocument 400 /errors/badrequest.html
ErrorDocument 401 /errors/authreqd.html
ErrorDocument 403 /errors/forbid.html
ErrorDocument 404 /errors/notfound.html
ErrorDocument 500 /errors/serverr.html</pre></td></tr></table></div>

<p>You can specify a full URL rather than a virtual URL in the ErrorDocument string (http://yoursite.com/errors/notfound.html vs. /errors/notfound.html). But this is not the preferred method by the server&#8217;s happiness standards.</p>
<p>You can also specify HTML, believe it or not!</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="text" style="font-family:monospace;">ErrorDocument 401 &quot;&lt;body bgcolor=#ffffff&gt;&lt;h1&gt;You have to actually &lt;b&gt;BE&lt;/b&gt; a &lt;a href=&quot;#&quot;&gt;member&lt;/A&gt; to view  this page, Colonel!</pre></td></tr></table></div>

<p>While this is possible, it&#8217;s not recommended since you can have so much more control over the error pages when used in conjunction with xSSI, CGI or both. Also note that the ErrorDocument starts with a &#8221; just before the HTML starts, but does not end with one&#8230;it shouldn&#8217;t end with one and if you do use that option, keep it that way. And again, that should all be on one line, no naughty word wrapping!</p>
<p>Next, we are moving on to password protection, that last frontier before we delve into into the true capabilities of htaccess. If you are familiar with setting up your own password protected directories via htaccess, you may feel like skipping ahead. </p>
]]></content:encoded>
			<wfw:commentRss>http://jonbrittstudios.com/htaccess-errors/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is SSH? And how do I use it on a Mac?</title>
		<link>http://jonbrittstudios.com/what-is-ssh-and-how-do-i-use-it-on-a-mac/</link>
		<comments>http://jonbrittstudios.com/what-is-ssh-and-how-do-i-use-it-on-a-mac/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 14:57:49 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://jonbrittstudios.com/?p=408</guid>
		<description><![CDATA[Need to use SSH on Windows? Go here.
SSH or Secure Shell is a network protocol that allows data to be exchanged using a secure channel between two networked devices. It&#8217;s used primarily on Linux and Unix based systems to access shell accounts, SSH was designed as a replacement for Telnet and other insecure remote shells, [...]]]></description>
			<content:encoded><![CDATA[<p>Need to use SSH on Windows? Go here.</p>
<p>SSH or Secure Shell is a network protocol that allows data to be exchanged using a secure channel between two networked devices. It&#8217;s used primarily on Linux and Unix based systems to access shell accounts, SSH was designed as a replacement for Telnet and other insecure remote shells, which send information, notably passwords, in plain text, leaving them open for interception. The encryption used by SSH provides confidentiality and integrity of data over an insecure network, such as the Internet.</p>
<p>In plain English? SSH allows you to give and receive data securely over the internet to other computers or servers. A majority of servers are Unix. This is actually one world where windows has not (and I can comfortably say, will never) taken over. Because Mac OS X nowadays is based on Darwin and chunks of existing open source software from a large number of sources like BSD, GNU, Mach, and even Linux. There is an option to use something called &#8220;Terminal&#8221; that will allow you to SSH into a server without having to add any third party software.<br />
<!-- http://ccrma.stanford.edu/guides/planetccrma/OS_X.html --><br />
I&#8217;ll briefly discuss the items needed to log into a remote server using SSH. </p>
<p>First thing is you want to make sure you have SSH enabled on your server. If you contact your hosts help desk. You&#8217;ll need to pry the following information out of them:</p>
<ul>
<li>If SSH is enabled on your server. If not, ask that they enable it</li>
<li>What domain you will use</li>
<li>What port you will use</li>
<li>What your username/password will be. *Most likely this username and password will be the same as yout FTP credentials</li>
</ul>
<p>Once you get this information, you&#8217;ll need an SSH client to get into your server.<br />
If you are on a Mac, you can use Terminal which is already installed on your computer and located at: Applications>Utilities>Terminal. </p>
<blockquote><p>NOTE:<br />
If you use a distribution of Linux or Unix. You can follow these directions as well because the simularities are almost identical. There may be small differences, but chances are if your using Linux, you&#8217;re not reading this article =]
</p></blockquote>
<p>When you launch Terminal, you&#8217;ll see a window that looks like this:<br />
<img src="http://jonbrittstudios.com/wp-content/uploads/2009/07/terminal.jpg" alt="terminal" title="terminal" width="506" height="366" class="alignnone size-full wp-image-418" /></p>
<blockquote><p>
NOTE ABOUT HOSTNAMES:<br />
Most likely your hosting provider will provide you only with the Hostname or IP to login to your sever via SSH. It should look something like this:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">name.domain.com</pre></div></div>

<p>or this</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">77.124.52.169</pre></div></div>

<p>Both of these things do the same thing. They point Terminal at a specific server on the internet.
</p></blockquote>
<p>After opening Terminal. You will see two lines of text. The first line show previous login information; the second line shows the details of your computer followed by a a dollar sign &#8220;$&#8221;</p>
<blockquote><p>
NOTE:<br />
The dollar sign doesn&#8217;t mean that your Mac is expensive (even though they are). It means Terminal is ready to receive commands from you. From this point on, I will refer to the dollar sign as the &#8220;prompt&#8221;.
</p></blockquote>
<p>First thing you want to enter after the prompt is:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ssh</span></pre></div></div>

<p>This will tell Terminal you want to SSH into a specific location on the internet or network. </p>
<blockquote><p>
IMPORTANT:<br />
You don&#8217;t want to press enter after entering this. You still have some more things to do
</p></blockquote>
<p>Then you need to enter your username. Followed by an &#8220;@&#8221; symbol, then the Hostname or IP. So the line of text you entered should look something like this:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ssh</span> username<span style="color: #000000; font-weight: bold;">@</span>doin.hostname.com
or
<span style="color: #c20cb9; font-weight: bold;">ssh</span> username<span style="color: #000000; font-weight: bold;">@</span>77.124.52.169</pre></td></tr></table></div>

<p>If your host provide you with a &#8220;port&#8221; number. Enter that in the same line of text  like so:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ssh</span> username<span style="color: #000000; font-weight: bold;">@</span>doin.hostname.com <span style="color: #660033;">-p5527</span></pre></td></tr></table></div>

<p>After you&#8217;ve entered all the credentials, press the return key.</p>
<p>Now you will be asked to provide the password for the account:</p>
<p>Type in your username and press enter. Then  you will be asked to enter that your password:<br />
<img src="http://jonbrittstudios.com/wp-content/uploads/2009/07/terminal-pass.jpg" alt="terminal-pass" title="terminal-pass" width="504" height="367" class="alignnone size-full wp-image-421" /></p>
<blockquote><p>NOTE:<br />
Even though you don&#8217;t see the cursor moving. When you press a key, it is registered by Terminal. This is a security feature that is not specific to Terminal, but ALL SSH clients.
</p></blockquote>
<p>After you successfully enter your password. You have officially SSH&#8217;d into a server!<br />
<img src="http://jonbrittstudios.com/wp-content/uploads/2009/07/terminal-in1.jpg" alt="terminal-in1" title="terminal-in1" width="505" height="367" class="alignnone size-full wp-image-423" /></p>
<p>Now it&#8217;s time to learn a few simple Linux commands and you will be able to do things that would take you hours in FTP in literally under a minute. </p>
<p>Stay tuned..</p>
]]></content:encoded>
			<wfw:commentRss>http://jonbrittstudios.com/what-is-ssh-and-how-do-i-use-it-on-a-mac/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is SSH? And how can I use it on Windows?</title>
		<link>http://jonbrittstudios.com/what-is-ssh-and-how-can-i-use-it/</link>
		<comments>http://jonbrittstudios.com/what-is-ssh-and-how-can-i-use-it/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 04:38:18 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://jonbrittstudios.com/?p=382</guid>
		<description><![CDATA[Need to use SSH on Mac? Go here.
SSH or Secure Shell is a network protocol that allows data to be exchanged using a secure channel between two networked devices. It&#8217;s used primarily on Linux and Unix based systems to access shell accounts, SSH was designed as a replacement for Telnet and other insecure remote shells, [...]]]></description>
			<content:encoded><![CDATA[<p>Need to use SSH on Mac? Go here.</p>
<p>SSH or Secure Shell is a network protocol that allows data to be exchanged using a secure channel between two networked devices. It&#8217;s used primarily on Linux and Unix based systems to access shell accounts, SSH was designed as a replacement for Telnet and other insecure remote shells, which send information, notably passwords, in plain text, leaving them open for interception. The encryption used by SSH provides confidentiality and integrity of data over an insecure network, such as the Internet.</p>
<p>In plain English? SSH allows you to give and receive data securely over the internet to other computers or servers. A majority of servers are Unix. This is actually one world where windows has not (and I can comfortably say, will never) taken over. </p>
<p>I&#8217;ll briefly discuss the items needed to log into a remote server using SSH. </p>
<p>First thing is you want to make sure you have SSH enabled on your server. If you contact your hosts help desk. You&#8217;ll need to pry the following information out of them:</p>
<ul>
<li>If SSH is enabled on your server. If not, ask that they enable it</li>
<li>What domain you will use</li>
<li>What port you will use</li>
<li>What your username/password will be. *Most likely this username and password will be the same as yout FTP credentials</li>
</ul>
<p>Once you get this information, you&#8217;ll need an SSH client to get into your server. </p>
<p>To SSH into a server, you need a third party application like <a href="http://the.earth.li/~sgtatham/putty/latest/x86/putty.exe">PuTTY</a> is your best bet and it&#8217;s free!</p>
<p>The following examples will use PuTTY which is the standard SSH tool in the windows world. </p>
<p>Once you launch PuTTY, You&#8217;ll see the following window. This window will look intense, but I assure you you only need a very small amount of what PuTTY does. This is gonna be cake!<br />
<img src="http://jonbrittstudios.com/wp-content/uploads/2009/07/putty_screen1.png" alt="putty_screen1" title="putty_screen1" width="465" height="445" class="alignnone size-full wp-image-401" /></p>
<p>Most likely your hosting provider will provide you only with the Hostname or IP to login to your sever via SSH. It should look something like this:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">name.domain.com</pre></div></div>

<p>or this</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">77.124.52.169</pre></div></div>

<p>Both of these things do the same thing. They point PuTTY at a specific server on the internet. </p>
<p>Enter this information in the &#8220;Hostname or IP&#8221; field. </p>
<p>If they provide you with a &#8220;port&#8221; number. Enter that in the port field to the right of the Hostname field. If they did not provide you a port number, just leave the port to the default setting of &#8220;22&#8243;</p>
<p>After these fields have been properly entered, press the, &#8220;Open&#8221; button on the bottom.</p>
<blockquote><p>NOTE:<br />
You may notice that you didn&#8217;t have to enter a username or password. Don&#8217;t worry, you&#8217;ll have to enter that once you join the SSH session.</p></blockquote>
<p>After you press the open button. The PuTTY window will close and something that looks like the following:<br />
<img src="http://jonbrittstudios.com/wp-content/uploads/2009/07/loginas.png" alt="loginas" title="loginas" width="643" height="388" class="alignnone size-full wp-image-393" /> </p>
<p>Type in your username and press enter. Then  you will be asked to enter that your password:</p>
<blockquote><p>NOTE:<br />
Even though you don&#8217;t see the cursor moving. When you press a key, it is registered by PuTTY. This is just a security feature that is not specific to PuTTY, but ALL SSH clients.
</p></blockquote>
<p><img src="http://jonbrittstudios.com/wp-content/uploads/2009/07/password.png" alt="password" title="password" width="641" height="385" class="alignnone size-full wp-image-396" /></p>
<p>After you successfully enter your password. You have officially SSH&#8217;d into a server!<br />
<img src="http://jonbrittstudios.com/wp-content/uploads/2009/07/loggedin1.png" alt="loggedin1" title="loggedin1" width="643" height="386" class="alignnone size-full wp-image-403" /></p>
<p>Now it&#8217;s time to learn a few simple Linux commands and you will be able to do things that would take you hours in FTP in literally under a minute. </p>
<p>Stay tuned..</p>
]]></content:encoded>
			<wfw:commentRss>http://jonbrittstudios.com/what-is-ssh-and-how-can-i-use-it/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
