<?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>VCritical &#187; SSH</title>
	<atom:link href="http://www.vcritical.com/tag/ssh/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vcritical.com</link>
	<description>Informed Virtualization Criticism</description>
	<lastBuildDate>Wed, 19 Oct 2011 22:08:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Start and Manage a VM Without Using vSphere Client</title>
		<link>http://www.vcritical.com/2011/03/start-and-manage-a-vm-without-using-vsphere-client/</link>
		<comments>http://www.vcritical.com/2011/03/start-and-manage-a-vm-without-using-vsphere-client/#comments</comments>
		<pubDate>Tue, 08 Mar 2011 05:29:38 +0000</pubDate>
		<dc:creator>Eric Gray</dc:creator>
				<category><![CDATA[Virtualizationism]]></category>
		<category><![CDATA[ESXi]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://www.vcritical.com/?p=3359</guid>
		<description><![CDATA[Use Tech Support Mode on VMware ESXi to find, start, and obtain guest OS IP address information from a virtual machine -- without using the vSphere Client on Windows.]]></description>
			<content:encoded><![CDATA[<p>You&#8217;re familiar with features in VMware vSphere that can help <a href="http://www.vcritical.com/2011/02/cold-starting-a-datacenter/">bring up critical virtual infrastructure after a widespread datacenter outage</a> &#8212; planned or otherwise &#8212; but did you also know that it&#8217;s possible to power on a virtual machine and even determine the dynamic IP address of a guest OS using a simple command-line utility?  This could be handy after a disaster or if you normally rely on a Windows virtual machine to run the vSphere Client and don&#8217;t feel like firing up Fusion for one quick task.</p>
<h2>Power on and SSH to a Linux VM from Mac OS X</h2>
<p>Consider this real-world situation:  You are working remotely on your Mac and need to log into a powered-off Linux VM back in the datacenter.  Don&#8217;t fret &#8212; if you can ssh to the host using <a href="http://www.yellow-bricks.com/2010/10/03/enable-ssh-on-esxi-4-1/" target="_blank">Tech Support Mode</a> (VMware ESXi 4.1 shown here), you are most of the way there.  Thanks to <a href="http://www.virtuallyghetto.com/p/vmware-vimsh_9940.html" target="_blank">vim-cmd</a> you can find your VM, power it on, and learn the guest OS IP address in no time:</p>
<p><img class="alignnone size-full wp-image-3361" title="vim-cmd on ESXi from Mac OS X" src="http://www.vcritical.com/wp-content/uploads/2011/03/vim-cmd_mac.png" alt="" width="555" height="268" /></p>
<p>Let&#8217;s break it down step by step:<span id="more-3359"></span></p>
<p><strong>1.  Use grep to find the ID of your VM (1008 in this example):</strong></p>
<pre>~ # vim-cmd vmsvc/getallvms | grep -i CENTOS1
1008   CENTOS1      [CX4-01-LUN9] CENTOS1/CENTOS1.vmx         centos64Guest
</pre>
<p><strong>2.  Quick sanity check to verify the VM is actually powered off:</strong></p>
<pre>~ # vim-cmd vmsvc/get.summary 1008 | egrep '(power|ip)'
      powerState = "poweredOff",
      ipAddress = ,
</pre>
<p><strong>3.  Power on, wait a few moments, and check status again:</strong></p>
<pre>~ # vim-cmd vmsvc/power.on 1008
Powering on VM:
~ # vim-cmd vmsvc/get.summary 1008 | egrep '(power|ip)'
      powerState = "poweredOn",
      ipAddress = "10.136.234.38",
~ #
</pre>
<p><strong>4.  Connect with ssh (or RDP, if targeting a Windows VM) and get on with things</strong></p>
<p>Enjoy!</p>


<p>Related posts:<ol><li><a href='http://www.vcritical.com/2008/11/vi-client-ssl-thumbprint-cache-cleanup/' rel='bookmark' title='VI Client SSL thumbprint cache cleanup'>VI Client SSL thumbprint cache cleanup</a></li>
<li><a href='http://www.vcritical.com/2009/12/easily-view-guest-ip-addresses-with-vsphere-client/' rel='bookmark' title='Easily view guest IP addresses with vSphere Client'>Easily view guest IP addresses with vSphere Client</a></li>
<li><a href='http://www.vcritical.com/2009/05/exclusive-hyper-v-2013-product-roadmap/' rel='bookmark' title='Exclusive: Hyper-V 2013 Product Roadmap'>Exclusive: Hyper-V 2013 Product Roadmap</a></li>
<li><a href='http://www.vcritical.com/2010/05/idle-rhev-hypervisors-save-power/' rel='bookmark' title='Idle RHEV Hypervisors save power?'>Idle RHEV Hypervisors save power?</a></li>
</ol></p><div style="font-family:Verdana; color:#000000; background-color: #C0C0C0; padding: 7px;border: dashed thin">

<a href="http://www.vcritical.com/2011/03/start-and-manage-a-vm-without-using-vsphere-client/#respond">Leave a Comment</a> •
<a href="http://feedproxy.google.com/vcritical">Subscribe to RSS</a> •
<a href="http://feedburner.google.com/fb/a/mailverify?uri=vcritical&loc=en_US">Subscribe via Email</a> •
<a href="http://www.twitter.com/eric_gray">Follow Eric Gray on Twitter</a><br/>

More articles on: <a href="http://www.vcritical.com/tag/esxi/" rel="tag">ESXi</a>, <a href="http://www.vcritical.com/tag/ssh/" rel="tag">SSH</a>, <a href="http://www.vcritical.com/tag/vsphere/" rel="tag">vSphere</a> • <a href="http://www.vcritical.com/category/virtualizationism/">Browse All Virtualization Content</a><br/>

<a href="http://www.vcritical.com/2011/03/start-and-manage-a-vm-without-using-vsphere-client/">Start and Manage a VM Without Using vSphere Client</a> by <a href="http://www.vcritical.com/about/">Eric Gray</a> © 2011 • <a href="http://www.vcritical.com/">VCritical</a>

</div>]]></content:encoded>
			<wfw:commentRss>http://www.vcritical.com/2011/03/start-and-manage-a-vm-without-using-vsphere-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Rid of those ESXi Tech Support Mode Warnings</title>
		<link>http://www.vcritical.com/2011/02/get-rid-of-those-esxi-tech-support-mode-warnings/</link>
		<comments>http://www.vcritical.com/2011/02/get-rid-of-those-esxi-tech-support-mode-warnings/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 23:36:37 +0000</pubDate>
		<dc:creator>Eric Gray</dc:creator>
				<category><![CDATA[Virtualizationism]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[vSphere Client]]></category>

		<guid isPermaLink="false">http://www.vcritical.com/?p=3248</guid>
		<description><![CDATA[After enabling Tech Support Mode on ESXi 4.1, a Configuration Issues warning is displayed in the vSphere Client.  Find out how to quickly get rid of the message without a host reboot.]]></description>
			<content:encoded><![CDATA[<p>One nice enhancement in VMware ESXi 4.1 is <strong>Tech Support Mode</strong> &#8212; supported command-line access for advanced troubleshooting.  However, a big drawback of <a href="http://www.yellow-bricks.com/2010/10/03/enable-ssh-on-esxi-4-1/" target="_blank">enabling</a> this capability is the appearance of a new Configuration Issues warning in the vSphere Client:</p>
<p><img class="alignnone size-full wp-image-3249" title="vSphere Client - Tech Support Mode config issues" src="http://www.vcritical.com/wp-content/uploads/2011/02/vsphere-client-tsm-config-issues.png" alt="" width="590" height="148" /></p>
<p>In addition to this warning, an alert is shown via the host icon in the inventory tree view.  I&#8217;m sure many vSphere administrators have encountered this annoyance.  Recently, I wondered why <em>some</em> of my hosts had it and some did not.  As it turns out, the warning goes away after rebooting.  But this is VMware ESXi &#8212; not Windows &#8212; and reboots are few and far between.</p>
<p>Fortunately, the warning will also go away after restarting the &#8220;management agents&#8221; (Host Agent, specifically).  This can be done through the DCUI console GUI, but since you are probably logging in with SSH anyway, the same thing can be accomplished with the following command:</p>
<pre>/etc/init.d/hostd restart
</pre>
<p>And here it is in action:</p>
<p><img class="alignnone size-full wp-image-3250" title="PuTTY - restart ESXi host agent" src="http://www.vcritical.com/wp-content/uploads/2011/02/putty-restart-hostd-esxi.png" alt="" width="564" height="281" /></p>
<p>If you have been looking for a way to get rid of this warning, I hope this helps you out.</p>


<p>Related posts:<ol><li><a href='http://www.vcritical.com/2009/02/new-vmware-esxi-management-kit/' rel='bookmark' title='New VMware ESXi Management Kit'>New VMware ESXi Management Kit</a></li>
<li><a href='http://www.vcritical.com/2009/01/using-scvmm-to-attach-iso-images-to-vmware-esx-vms/' rel='bookmark' title='Using SCVMM to attach ISO images to VMware ESX VMs'>Using SCVMM to attach ISO images to VMware ESX VMs</a></li>
<li><a href='http://www.vcritical.com/2008/10/what-is-vmware-esxi/' rel='bookmark' title='What is VMware ESXi?'>What is VMware ESXi?</a></li>
<li><a href='http://www.vcritical.com/2009/08/if-vmware-esxi-4-is-so-small-why-is-it-so-big/' rel='bookmark' title='If VMware ESXi 4 is so small, why is it so big?'>If VMware ESXi 4 is so small, why is it so big?</a></li>
</ol></p><div style="font-family:Verdana; color:#000000; background-color: #C0C0C0; padding: 7px;border: dashed thin">

<a href="http://www.vcritical.com/2011/02/get-rid-of-those-esxi-tech-support-mode-warnings/#respond">Leave a Comment</a> •
<a href="http://feedproxy.google.com/vcritical">Subscribe to RSS</a> •
<a href="http://feedburner.google.com/fb/a/mailverify?uri=vcritical&loc=en_US">Subscribe via Email</a> •
<a href="http://www.twitter.com/eric_gray">Follow Eric Gray on Twitter</a><br/>

More articles on: <a href="http://www.vcritical.com/tag/ssh/" rel="tag">SSH</a>, <a href="http://www.vcritical.com/tag/vsphere-client/" rel="tag">vSphere Client</a> • <a href="http://www.vcritical.com/category/virtualizationism/">Browse All Virtualization Content</a><br/>

<a href="http://www.vcritical.com/2011/02/get-rid-of-those-esxi-tech-support-mode-warnings/">Get Rid of those ESXi Tech Support Mode Warnings</a> by <a href="http://www.vcritical.com/about/">Eric Gray</a> © 2011 • <a href="http://www.vcritical.com/">VCritical</a>

</div>]]></content:encoded>
			<wfw:commentRss>http://www.vcritical.com/2011/02/get-rid-of-those-esxi-tech-support-mode-warnings/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Installing vCenter on Linux Technical Preview</title>
		<link>http://www.vcritical.com/2009/02/installing-vcenter-on-linux-technical-preview/</link>
		<comments>http://www.vcritical.com/2009/02/installing-vcenter-on-linux-technical-preview/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 21:22:10 +0000</pubDate>
		<dc:creator>Eric Gray</dc:creator>
				<category><![CDATA[Virtualizationism]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[PASS]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[vCenter]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.vcritical.com/?p=740</guid>
		<description><![CDATA[vCenter on Linux is distributed as a virtual appliance; it is really easy to try out.  However, the only supported database at the moment is Oracle &#8212; this might be a stumbling block for some.  While the installation guide covers everything you need to know, here are some quick tips that may help clarify some [...]]]></description>
			<content:encoded><![CDATA[<p>vCenter on Linux is distributed as a <a href="http://communities.vmware.com/community/beta/vcserver_linux" target="_blank">virtual appliance</a>; it is really easy to try out.  However, the only supported database at the moment is Oracle &#8212; this might be a stumbling block for some.  While the <a href="http://communities.vmware.com/docs/DOC-9580" target="_blank">installation guide</a> covers everything you need to know, here are some quick tips that may help clarify some of the more complicated parts.</p>
<h2>Fire up the vCenter Linux Appliance</h2>
<p>Download the OVF and import it to your ESX host.</p>
<p><img class="alignnone size-full wp-image-743" title="Importing the vCenter on Linux OVF package." src="http://www.vcritical.com/wp-content/uploads/2009/02/importing_vclinux_ovf.png" alt="Importing the vCenter on Linux OVF package." width="484" height="287" /></p>
<p>Power it on and accept the EULA, you will end up at this screen:<span id="more-740"></span></p>
<p><a href="http://www.vcritical.com/wp-content/uploads/2009/02/initial_boot_vclinux.png"><img class="alignnone size-medium wp-image-747" title="Initial boot of vCenter on Linux" src="http://www.vcritical.com/wp-content/uploads/2009/02/initial_boot_vclinux-300x172.png" alt="Initial boot of vCenter on Linux" width="300" height="172" /></a></p>
<blockquote><p><strong>NOTE</strong>: VMware accidentally included the  Highly Confidential Beta Software EULA with the vCenter on Linux appliance.  I have confirmed with one of the beta program managers and product management that this is not a private beta.  After all, <a href="http://vmworld.com/community/conferences/europe2009/agenda/keynotes/2" target="_blank">Dr. Stephen Herrod told everyone about it in his keynote</a> today.</p></blockquote>
<p>Next, configure networking via the menu option or determine the current DHCP IP address &#8212; log in as root/vmware and run ifconfig (or just look at the VI Client summary for the VM).</p>
<p>Download the two instant client packages from Oracle to your workstation, as specified in the install documentation.  Copy them to the vCenter VM, like this:</p>
<p><img class="alignnone size-full wp-image-745" title="Use PuTTY pscp to copy Oracle drivers to vCenter on Linux." src="http://www.vcritical.com/wp-content/uploads/2009/02/scp_oracle_drivers_to_vclinux.png" alt="Use PuTTY pscp to copy Oracle drivers to vCenter on Linux." width="471" height="436" /></p>
<h2>Prepare an Oracle Database</h2>
<p>I&#8217;m not going to cover how to install Oracle.  Let&#8217;s just say it&#8217;s not a next-next-finish operation.  You can get the free Oracle Express Edition or use an existing instance already present in your environment.  What I <em>will </em>give you is a simple recipe to prepare your Oracle instance for hosting a vCenter database.</p>
<p>Save the following code as &#8220;vpxadmin.sql&#8221; on your Oracle server.</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">CREATE</span> SMALLFILE TABLESPACE <span style="color: #ff0000;">&quot;VPX&quot;</span> DATAFILE <span style="color: #ff0000;">'/u01/app/oracle/oradata/vcdb/vpx01.dbf'</span> <span style="color: #993333; font-weight: bold;">SIZE</span> 100M AUTOEXTEND <span style="color: #993333; font-weight: bold;">ON</span> <span style="color: #993333; font-weight: bold;">NEXT</span> 10M MAXSIZE UNLIMITED LOGGING EXTENT MANAGEMENT <span style="color: #993333; font-weight: bold;">LOCAL</span> SEGMENT <span style="color: #993333; font-weight: bold;">SPACE</span> MANAGEMENT AUTO;
&nbsp;
<span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">USER</span> <span style="color: #ff0000;">&quot;VPXADMIN&quot;</span> PROFILE <span style="color: #ff0000;">&quot;DEFAULT&quot;</span> <span style="color: #993333; font-weight: bold;">IDENTIFIED</span> <span style="color: #993333; font-weight: bold;">BY</span> <span style="color: #ff0000;">&quot;secretpassword&quot;</span> <span style="color: #993333; font-weight: bold;">DEFAULT</span> TABLESPACE <span style="color: #ff0000;">&quot;VPX&quot;</span> ACCOUNT <span style="color: #993333; font-weight: bold;">UNLOCK</span>;
&nbsp;
<span style="color: #993333; font-weight: bold;">GRANT</span> <span style="color: #993333; font-weight: bold;">CONNECT</span> <span style="color: #993333; font-weight: bold;">TO</span> VPXADMIN;
<span style="color: #993333; font-weight: bold;">GRANT</span> resource <span style="color: #993333; font-weight: bold;">TO</span> VPXADMIN;
<span style="color: #993333; font-weight: bold;">GRANT</span> <span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">VIEW</span> <span style="color: #993333; font-weight: bold;">TO</span> VPXADMIN;
<span style="color: #993333; font-weight: bold;">GRANT</span> <span style="color: #993333; font-weight: bold;">CREATE</span> any <span style="color: #993333; font-weight: bold;">SEQUENCE</span> <span style="color: #993333; font-weight: bold;">TO</span> VPXADMIN;
<span style="color: #993333; font-weight: bold;">GRANT</span> <span style="color: #993333; font-weight: bold;">CREATE</span> any <span style="color: #993333; font-weight: bold;">TABLE</span> <span style="color: #993333; font-weight: bold;">TO</span> VPXADMIN;
<span style="color: #993333; font-weight: bold;">GRANT</span> <span style="color: #993333; font-weight: bold;">EXECUTE</span> <span style="color: #993333; font-weight: bold;">ON</span> dbms_job <span style="color: #993333; font-weight: bold;">TO</span> VPXADMIN;
<span style="color: #993333; font-weight: bold;">GRANT</span> <span style="color: #993333; font-weight: bold;">EXECUTE</span> <span style="color: #993333; font-weight: bold;">ON</span> dbms_lock <span style="color: #993333; font-weight: bold;">TO</span> VPXADMIN;
<span style="color: #993333; font-weight: bold;">GRANT</span> unlimited tablespace <span style="color: #993333; font-weight: bold;">TO</span> VPXADMIN;</pre></div></div>

<p>Then, just execute it:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ sqlplus <span style="color: #000000; font-weight: bold;">/</span> <span style="color: #c20cb9; font-weight: bold;">as</span> sysdba <span style="color: #000000; font-weight: bold;">@</span>vpxadmin.sql</pre></div></div>

<p>This will create a tablespace and credentials for your vCenter database.</p>
<p>These four things are required in order to connect vCenter on Linux to Oracle:</p>
<ol>
<li>Hostname or IP address</li>
<li>Instance name &#8211; by default in Oracle this is often &#8220;orcl&#8221; but you or your DBA may have changed it.  You probably need the fully-qualified version, which would be something like &#8220;orcl.whatever.yourcompany.com&#8221; &#8212; this likely is not the same as the FQDN/hostname of the server.  In the following example, I am using &#8220;vcdb.vmware.com&#8221; as my instance.</li>
<li>Login id: VPXADMIN</li>
<li>Password: secretpassword (please change this)</li>
</ol>
<h2>Configure vCenter on Linux Database Connection</h2>
<p>Reboot the vCenter VM.  On next boot, the Oracle drivers are detected and installed automatically:</p>
<p><a href="http://www.vcritical.com/wp-content/uploads/2009/02/oracle_client_auto_install.png"><img class="alignnone size-medium wp-image-744" title="Oracle client automatically detected and installed on vCenter boot." src="http://www.vcritical.com/wp-content/uploads/2009/02/oracle_client_auto_install-300x208.png" alt="Oracle client automatically detected and installed on vCenter boot." width="300" height="208" /></a></p>
<p>Enter your Oracle connection information and you are done:</p>
<p><img class="size-full wp-image-742 alignnone" title="Entering Oracle connection information for vCenter on Linux." src="http://www.vcritical.com/wp-content/uploads/2009/02/entering_oracle_connection_info_on_vclinux.png" alt="Entering Oracle connection information for vCenter on Linux." width="372" height="161" /></p>
<h2>Connect to vCenter on Linux with the VI Client</h2>
<p>If you already have a recent VI Client installed, you should be able to use it &#8212; or download and install by pointing your web browser to your vCenter VM IP.  When you are ready, log in to your new vCenter on Linux (use the root account, not the database account), create a datacenter, add hosts, and try it out.</p>


<p>Related posts:<ol><li><a href='http://www.vcritical.com/2009/03/vcenter-for-linux-article-disappointing/' rel='bookmark' title='vCenter for Linux article disappointing'>vCenter for Linux article disappointing</a></li>
<li><a href='http://www.vcritical.com/2011/08/vmware-vcenter-server-appliance-and-vram-reporting/' rel='bookmark' title='VMware vCenter Server Appliance and vRAM Reporting'>VMware vCenter Server Appliance and vRAM Reporting</a></li>
<li><a href='http://www.vcritical.com/2009/04/vmware-vcenter-server-4-task-and-event-retention/' rel='bookmark' title='VMware vCenter Server 4 task and event retention'>VMware vCenter Server 4 task and event retention</a></li>
<li><a href='http://www.vcritical.com/2009/12/vmware-vcenter-capacityiq-1-0-1-for-vsphere/' rel='bookmark' title='VMware vCenter CapacityIQ 1.0.1 for vSphere'>VMware vCenter CapacityIQ 1.0.1 for vSphere</a></li>
</ol></p><div style="font-family:Verdana; color:#000000; background-color: #C0C0C0; padding: 7px;border: dashed thin">

<a href="http://www.vcritical.com/2009/02/installing-vcenter-on-linux-technical-preview/#respond">Leave a Comment</a> •
<a href="http://feedproxy.google.com/vcritical">Subscribe to RSS</a> •
<a href="http://feedburner.google.com/fb/a/mailverify?uri=vcritical&loc=en_US">Subscribe via Email</a> •
<a href="http://www.twitter.com/eric_gray">Follow Eric Gray on Twitter</a><br/>

More articles on: <a href="http://www.vcritical.com/tag/linux/" rel="tag">Linux</a>, <a href="http://www.vcritical.com/tag/oracle/" rel="tag">Oracle</a>, <a href="http://www.vcritical.com/tag/pass/" rel="tag">PASS</a>, <a href="http://www.vcritical.com/tag/ssh/" rel="tag">SSH</a>, <a href="http://www.vcritical.com/tag/vcenter/" rel="tag">vCenter</a>, <a href="http://www.vcritical.com/tag/vmware/" rel="tag">VMware</a> • <a href="http://www.vcritical.com/category/virtualizationism/">Browse All Virtualization Content</a><br/>

<a href="http://www.vcritical.com/2009/02/installing-vcenter-on-linux-technical-preview/">Installing vCenter on Linux Technical Preview</a> by <a href="http://www.vcritical.com/about/">Eric Gray</a> © 2009 • <a href="http://www.vcritical.com/">VCritical</a>

</div>]]></content:encoded>
			<wfw:commentRss>http://www.vcritical.com/2009/02/installing-vcenter-on-linux-technical-preview/feed/</wfw:commentRss>
		<slash:comments>30</slash:comments>
		</item>
		<item>
		<title>Get a better font for PuTTY</title>
		<link>http://www.vcritical.com/2009/01/get-a-better-font-for-putty/</link>
		<comments>http://www.vcritical.com/2009/01/get-a-better-font-for-putty/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 21:32:29 +0000</pubDate>
		<dc:creator>Eric Gray</dc:creator>
				<category><![CDATA[Virtualizationism]]></category>
		<category><![CDATA[PuTTY]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://www.vcritical.com/?p=531</guid>
		<description><![CDATA[PuTTY is a popular SSH client for Windows &#8212; it works great and it&#8217;s free.  Out of the box it uses the Courier font, which looks like this: I prefer the appearance of a traditional Linux (X11) console font.  To me, it makes text much easier to read.  A few years ago I came across [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">PuTTY</a> is a popular SSH client for Windows &#8212; it works great and it&#8217;s free.  Out of the box it uses the Courier font, which looks like this:</p>
<p><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-532" title="PuTTY with default Courier font" src="http://www.vcritical.com/wp-content/uploads/2009/01/putty-courier.png" alt="PuTTY with default Courier font" width="500" height="293" /></p>
<p>I prefer the appearance of a traditional Linux (X11) console font.  To me, it makes text much easier to read.  A few years ago I came across a nice-looking Windows version of that font that works great with PuTTY.   <span id="more-531"></span>Observe the difference:<br />
<img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-533" title="PuTTY with MiscFixed SC613 9-point font" src="http://www.vcritical.com/wp-content/uploads/2009/01/putty-miscfixedsc613-9pt.png" alt="PuTTY with MiscFixed SC613 9-point font" width="400" height="237" /></p>
<p>If you like this better, simply download the <a href="http://www.twoevils.org/files/fonts/MISCFS__.TTF">MiscFixedSC613</a> font from April King and drop it into c:\windows\fonts.  When you configure PuTTY, remember that this is a 9-point font <em>only</em>.</p>
<p>While we are on the topic of PuTTY, here is another tip.  Although PuTTY has a sophisticated configuration dialog that allows storing of profiles for hosts, I&#8217;ve found that it is generally easier if I skip all that and launch it the same way I use <strong>ssh</strong> from a Linux machine.  To do this, make sure putty.exe is in your PATH, open the Run dialog and type in <strong>putty user@host</strong>, like so:<strong><br />
</strong></p>
<p><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-534" title="Launching PuTTY from the Run dialog." src="http://www.vcritical.com/wp-content/uploads/2009/01/run-putty.png" alt="Launching PuTTY from the Run dialog." width="347" height="186" /></p>
<p>No muss, no fuss, no empty cans.</p>


<p>Related posts:<ol><li><a href='http://www.vcritical.com/2011/02/get-rid-of-those-esxi-tech-support-mode-warnings/' rel='bookmark' title='Get Rid of those ESXi Tech Support Mode Warnings'>Get Rid of those ESXi Tech Support Mode Warnings</a></li>
<li><a href='http://www.vcritical.com/2009/02/better-console-for-powershell-and-vitk/' rel='bookmark' title='Better console for PowerShell and VITK'>Better console for PowerShell and VITK</a></li>
<li><a href='http://www.vcritical.com/2010/11/microsoft-private-cloud-no-csv-allowed/' rel='bookmark' title='Microsoft Private Cloud: No CSV Allowed!'>Microsoft Private Cloud: No CSV Allowed!</a></li>
<li><a href='http://www.vcritical.com/2009/02/vi-toolkit-for-windows-15-and-the-powershell-prompt/' rel='bookmark' title='VI Toolkit (for Windows) 1.5 and the PowerShell prompt'>VI Toolkit (for Windows) 1.5 and the PowerShell prompt</a></li>
</ol></p><div style="font-family:Verdana; color:#000000; background-color: #C0C0C0; padding: 7px;border: dashed thin">

<a href="http://www.vcritical.com/2009/01/get-a-better-font-for-putty/#respond">Leave a Comment</a> •
<a href="http://feedproxy.google.com/vcritical">Subscribe to RSS</a> •
<a href="http://feedburner.google.com/fb/a/mailverify?uri=vcritical&loc=en_US">Subscribe via Email</a> •
<a href="http://www.twitter.com/eric_gray">Follow Eric Gray on Twitter</a><br/>

More articles on: <a href="http://www.vcritical.com/tag/putty/" rel="tag">PuTTY</a>, <a href="http://www.vcritical.com/tag/ssh/" rel="tag">SSH</a>, <a href="http://www.vcritical.com/tag/technical/" rel="tag">Technical</a> • <a href="http://www.vcritical.com/category/virtualizationism/">Browse All Virtualization Content</a><br/>

<a href="http://www.vcritical.com/2009/01/get-a-better-font-for-putty/">Get a better font for PuTTY</a> by <a href="http://www.vcritical.com/about/">Eric Gray</a> © 2009 • <a href="http://www.vcritical.com/">VCritical</a>

</div>]]></content:encoded>
			<wfw:commentRss>http://www.vcritical.com/2009/01/get-a-better-font-for-putty/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>

