<?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>Plugable &#187; Platform</title>
	<atom:link href="http://plugable.com/category/platform/feed/" rel="self" type="application/rss+xml" />
	<link>http://plugable.com</link>
	<description>USB Devices - Hubs, Cables, Graphics, Video, Docking, SATA, Keyboards, more</description>
	<lastBuildDate>Fri, 03 Feb 2012 19:55:10 +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>Howto: DisplayLink USB Single Monitor on Linux</title>
		<link>http://plugable.com/2011/12/23/usb-graphics-and-linux/</link>
		<comments>http://plugable.com/2011/12/23/usb-graphics-and-linux/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 23:23:27 +0000</pubDate>
		<dc:creator>jerome</dc:creator>
				<category><![CDATA[DC-125]]></category>
		<category><![CDATA[Display]]></category>
		<category><![CDATA[Installing]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[UD-160-A]]></category>
		<category><![CDATA[udlfb]]></category>
		<category><![CDATA[UGA-165]]></category>
		<category><![CDATA[USB-VGA-165]]></category>
		<category><![CDATA[USB2-HDMI-165]]></category>
		<category><![CDATA[Using]]></category>
		<category><![CDATA[amazon:asin=B0038P1TP4]]></category>
		<category><![CDATA[amazon:asin=B004AIJE9G]]></category>
		<category><![CDATA[amazon:asin=B004PXPPNA]]></category>

		<guid isPermaLink="false">http://plugable.com/?p=3540</guid>
		<description><![CDATA[Unfortunately, Linux doesn&#8217;t support multiple graphics adapters the way Windows does, which means you can&#8217;t just plug in USB graphics adapters and expect them to extend your desktop (the good news is there is progress on this support). What is possible, however, is running a single DisplayLink adapter, or several with a Xinerama or multiseat [...]]]></description>
			<content:encoded><![CDATA[<p>Unfortunately, Linux doesn&#8217;t support multiple graphics adapters the way Windows does, which means you can&#8217;t just plug in USB graphics adapters and expect them to extend your desktop (the good news is <a href="http://www.phoronix.com/scan.php?page=news_item&#038;px=MTAzMjM" target="_blank">there is progress</a> on this support).</p>
<p>What is possible, however, is running a single DisplayLink adapter, or several with a Xinerama or multiseat configuration &#8212; just as long as you don&#8217;t expect to use your main GPU at the same time.</p>
<p>The single-display case is relatively easy to set up, and we&#8217;ll cover that here.</p>
<p>First, make sure you&#8217;re running kernel version 2.6.35 or later (Ubuntu 10.10 or later).  For older kernel versions, you&#8217;ll need to update udlfb and run a modified fbdev X server (not covered in this post).  On these kernel versions, when you plug in your DisplayLink-based USB graphics device, you should get a green screen. This means that at the driver built into the Linux kernel is happy, healthy, and talking to the device.</p>
<p>Second, if you are running Unity Desktop in Ubuntu 11.04 or later, you&#8217;ll need to switch back to Classic Mode so you&#8217;re running straight X.  Here&#8217;s how on Ubuntu: </p>
<p>Click on the power button in the upper right corner (mine looks like a light switch) and choose the last option, System Settings.  Search for Login Screen, Double-click to display, Choose Unlock and enter your password, Select Ubuntu Classic as default session.  </p>
<p>Third, if you&#8217;re running kernel versions between 2.6.35 to 3.1, enable the fb_defio option of udlfb. To do this, create or edit a file like<br />
/etc/modprobe.d/50-displaylink.conf</p>
<p>and add the single line</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">options udlfb <span style="color: #007800;">fb_defio</span>=<span style="color: #000000;">1</span></pre></div></div>

<p>And reboot (or run &#8220;sudo depmod -a&#8221; and unplug/replug your adapter). This will turn on defio (page fault change detection) support. This option is already enabled by default in kernels 3.2+.</p>
<p>Lastly, create an X config file called 60-plugable.conf (or similar) with the following contents and place it in /usr/share/X11/xorg.conf.d (on recent distros; on older distros, make this your xorg.conf):</p>

<div class="wp_syntax"><div class="code"><pre class="xorg_conf" style="font-family:monospace;">&nbsp;
<span style="color: #b1b100;">Section</span> <span style="color: #0000ff;">&quot;Device&quot;</span> 
  <span style="color: #990000;">Identifier</span> <span style="color: #0000ff;">&quot;uga&quot;</span> 
  <span style="color: #990000;">driver</span> <span style="color: #0000ff;">&quot;fbdev&quot;</span> 
  <span style="color: #990000;">Option</span> <span style="color: #0000ff;">&quot;fbdev&quot;</span> <span style="color: #0000ff;">&quot;/dev/fb0&quot;</span> 
<span style="color: #b1b100;">EndSection</span> 
&nbsp;
<span style="color: #b1b100;">Section</span> <span style="color: #0000ff;">&quot;Monitor&quot;</span> 
  <span style="color: #990000;">Identifier</span> <span style="color: #0000ff;">&quot;monitor&quot;</span> 
<span style="color: #b1b100;">EndSection</span> 
&nbsp;
<span style="color: #b1b100;">Section</span> <span style="color: #0000ff;">&quot;Screen&quot;</span> 
  <span style="color: #990000;">Identifier</span> <span style="color: #0000ff;">&quot;screen&quot;</span> 
  <span style="color: #990000;">Device</span> <span style="color: #0000ff;">&quot;uga&quot;</span> 
  <span style="color: #990000;">Monitor</span> <span style="color: #0000ff;">&quot;monitor&quot;</span> 
<span style="color: #b1b100;">EndSection</span> 
&nbsp;
<span style="color: #b1b100;">Section</span> <span style="color: #0000ff;">&quot;ServerLayout&quot;</span> 
  <span style="color: #990000;">Identifier</span> <span style="color: #0000ff;">&quot;default&quot;</span> 
  <span style="color: #990000;">Screen</span> <span style="color: #cc66cc;">0</span> <span style="color: #0000ff;">&quot;screen&quot;</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> 
<span style="color: #b1b100;">EndSection</span></pre></div></div>

<p>Note: if your main GPU creates a /dev/fb0 even when the USB display is not attached, then your USB display is probably getting assigned to /dev/fb1. In that case, change /dev/fb0 in the &#8220;Device&#8221; section above to /dev/fb1</p>
<p>Now, on reboot, you should (hopefully!) see your login come up on your DisplayLink USB attached display!</p>
<p>This kind of simple setup is useful for:</p>
<ul>
<li>Testing or playing with your USB graphics adatper on Linux.</li>
<li>Embedded systems with USB but no GPU.</li>
<li>As a backup method when the main GPU or its driver isn&#8217;t available or working.</li>
<li>Systems where a USB graphics adapter enables higher modes (up to 2048&#215;1152) than the main GPU screen.</li>
</ul>
<p>Please comment if you have any trouble with this single display case.  See our <a href="http://plugable.com/category/project/udlfb/">past posts</a> for additional information about the DisplayLink Linux kernel driver and some more involved setups.</p>
<p>The instructed here work on all <a href="http://plugable.com/products/graphics-adapters/">Plugable USB 2.0 graphics adapters</a> and <a href="http://plugable.com/products/laptop-docking/">Plugable USB 2.0 docking stations and thin clients</a> (and should also generally work on all DisplayLink based products).</p>
]]></content:encoded>
			<wfw:commentRss>http://plugable.com/2011/12/23/usb-graphics-and-linux/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>DisplayLink&#8217;s Latest Windows Drivers (6.1 M0)</title>
		<link>http://plugable.com/2011/12/17/displaylinks-latest-windows-drivers-6-1-m0/</link>
		<comments>http://plugable.com/2011/12/17/displaylinks-latest-windows-drivers-6-1-m0/#comments</comments>
		<pubDate>Sun, 18 Dec 2011 00:21:27 +0000</pubDate>
		<dc:creator>Bernie Thompson</dc:creator>
				<category><![CDATA[DC-125]]></category>
		<category><![CDATA[Installing]]></category>
		<category><![CDATA[UD-160-A]]></category>
		<category><![CDATA[UGA-125]]></category>
		<category><![CDATA[UGA-165]]></category>
		<category><![CDATA[UGA-2K-A]]></category>
		<category><![CDATA[USB-VGA-165]]></category>
		<category><![CDATA[USB2-HDMI-165]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[amazon:asin=B002PONXAI]]></category>
		<category><![CDATA[amazon:asin=B0038P1TP4]]></category>
		<category><![CDATA[amazon:asin=B004D0QC0A]]></category>

		<guid isPermaLink="false">http://plugable.com/?p=3528</guid>
		<description><![CDATA[DisplayLink has had two major updates to their Windows driver package this fall: 6.0 M1 and the newly released 6.1 M0. For Plugable&#8217;s USB 2.0 products with DisplayLink chips, however, we&#8217;re still recommending earlier DisplayLink Windows driver version 5.6 M1 (5.6.31870.0), because of its proven stability. For now, Windows Update will still deliver 5.6 M1 [...]]]></description>
			<content:encoded><![CDATA[<p>DisplayLink has had two major updates to their Windows driver package this fall: 6.0 M1 and the newly released 6.1 M0. </p>
<p>For Plugable&#8217;s USB 2.0 products with DisplayLink chips, however, we&#8217;re still recommending earlier <a href="http://displaylink.com/support/sla.php?fileid=39">DisplayLink Windows driver version 5.6 M1 (5.6.31870.0)</a>, because of its proven stability.  For now, Windows Update will still deliver 5.6 M1 automatically when you plug a Plugable device in.  </p>
<p>Here&#8217;s a little background on why:</p>
<p>DisplayLink&#8217;s newest 6.x drivers work with all DisplayLink chips (USB 2.0 and the coming USB 3.0 generation), but the primary development focus of version 6.x has been on enabling the coming USB 3.0 generation of products.  Perhaps as a result, there are some minor tradeoffs for USB 2.0 generation devices.</p>
<p>Here are the tradeoffs we&#8217;re following:</p>
<p>1) On a few systems, screens may go blank after returning from a reboot or power event. The cause appears to be changes in the way display configuration information is stored with the 6.0 and 6.1 drivers &#8211; Windows and the drivers can get confused, and that confusion will persist across unplugs, reboots, etc (going back to 5.6 M1 is the solution in these cases)<br />
2) The uninstaller on version 6.1 fails to uninstall from Windows&#8217; Programs and Features (as a workaround, you can use the <a href="http://www.displaylink.com/support/ticket.php?id=297">DisplayLink &#8220;cleaner&#8221; utility</a>).<br />
3) 5.6 M1 is the last release where DisplayLink&#8217;s logs are readable. When we hit any strange problems on a customer&#8217;s system, our ability to analyze the logs to find the underlying problems (and solutions) is one of the ways we try to provide better support for Plugable brand devices.</p>
<p>All that said, we run the latest drivers on nearly all of our own systems (so we can stay up to date with the latest developments), and generally they&#8217;re great. So if there are any 6.x features or fixes that are relevant to you, feel free to download and install 6.1 M0 or later to give it a try.  You can always <a href="http://displaylink.com/support/downloads.php">download the latest DisplayLink driver here</a>. And we expect that with one of the coming releases, we&#8217;ll push forward our recommendation to the latest version.</p>
<p>For those considering the latest versions, here&#8217;s the features and fixes DisplayLink has delivered since 5.6 M1 (as of version 6.1 M0). We&#8217;ve cut down the list to just those appear to be relevant to USB 2.0 devices.</p>
<p><strong>New features since 5.6 M1 (as of 6.1 M0): </strong></p>
<p>- Improved video smoothness for DL-1&#215;0, DL-1&#215;5 and DL-3&#215;00 series<br />
- Improved frame rate<br />
- Reduced CPU utilization<br />
- DisplayLink Tray applet enhancements</p>
<p>(Note these are generally subtle improvements)</p>
<p><strong>New fixes since 5.6 M1 (as of 6.1 M0):</strong></p>
<p>Sometimes the DisplayLink screen will remain blank when the device is<br />
re-plugged after having been disconnected during power save. (11708)</p>
<p>Moving a mouse over full-screen video playback causes quality to drop. (12409)</p>
<p>Sometimes DisplayLink screen comes on in clone mode instead of extending when<br />
connecting the device for the very first time. (10217)</p>
<p>Sometimes video may freeze on DisplayLink monitor. (11333)</p>
<p>Other miscellaneous fixes</p>
]]></content:encoded>
			<wfw:commentRss>http://plugable.com/2011/12/17/displaylinks-latest-windows-drivers-6-1-m0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Celluon Magic Cube Laser Projection Keyboard Is Amazing</title>
		<link>http://plugable.com/2011/10/04/the-celluon-laser-projection-keyboard-is-amazing/</link>
		<comments>http://plugable.com/2011/10/04/the-celluon-laser-projection-keyboard-is-amazing/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 00:01:46 +0000</pubDate>
		<dc:creator>Bernie Thompson</dc:creator>
				<category><![CDATA[Evaluating]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[amazon:asin=B005ES6E6W]]></category>

		<guid isPermaLink="false">http://plugable.com/?p=3205</guid>
		<description><![CDATA[There are a bunch of exciting things about the new Celluon Magic Cube Laser Keyboard: It&#8217;s shocking to see a keyboard projected onto any table, and be able to type in thin air (that was also true of its predecessor, the Celluon LaserKey CL850) You can connect to any PC or mobile with either with [...]]]></description>
			<content:encoded><![CDATA[<p>There are a bunch of exciting things about the new Celluon Magic Cube Laser Keyboard:</p>
<ul>
<li>It&#8217;s shocking to see a keyboard projected onto any table, and be able to type in thin air (that was also true of its predecessor, the Celluon LaserKey CL850)</li>
<li>You can connect to any PC or mobile with either with USB or Bluetooth. It uses a battery in wireless mode. That battery charges via its included USB cable</li>
<li>It now has a mouse mode with multi-touch support for Windows 7 (Doesn&#8217;t support Mac or iOS multitouch)</li>
</ul>
<p>But the really important thing about the new Magic Cube is it&#8217;s now driverless:  It uses the standard Bluetooth HID profile and standard USB HID class, so for whatever you connect it to, it just sees a standard USB keyboard or mouse (which have always used HID). No drivers, no fuss.</p>
<p>That makes the new Magic Cube work with nearly all devices out there that can use a standard Bluetooth or USB keyboard: iPad, iPod, iPhone, Windows, Mac, Linux, and lots of other mobiles and devices.  </p>
<p>iOS devices, in particular, are well-matched because the built-in auto-correct is a great help for improving accuracy (which is the main remaining downside of a projection keyboard &#8212; it takes getting used to).</p>
<p>If you&#8217;ve never had the chance to try a laser keyboard, take a look at this video to see it in action.</p>
<p><object width="540" height="360"><param name="movie" value="http://www.youtube.com/v/g0qARDGJj1w?version=3&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/g0qARDGJj1w?version=3&amp;hl=en_US" type="application/x-shockwave-flash" width="540" height="360" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div class="amtap">
<table class="amazon_table">
<tr>
<td><img src="http://ecx.images-amazon.com/images/I/31uYRvaJxTL._SL110_.jpg" width="110" height="70" alt=""/></td>
<td class="amazon_title">Celluon Magic Cube Laser Projection Keyboard and Touchpad</td>
<td class="amazon_detail"><a href="http://plugable.com/products/57206-A-13669">          Product Details        </a></td>
<td/>
<td class="amazon_price">&#36;169.99</td>
<td><a href="http://www.amazon.com/Celluon-Magic-Projection-Keyboard-Touchpad/dp/B005ES6E6W?SubscriptionId=AKIAJ27KPV45VTL2XA5Q&#038;tag=plugabltechno-20&#038;linkCode=xm2&#038;camp=2025&#038;creative=165953&#038;creativeASIN=B005ES6E6W" rel="nofollow"><img src="http://plugable.com/wp-content/uploads/2010/08/buyfromamazon.gif" width="120px" height="43px" style="border-style:none"/></a></td>
</tr>
</table>
</div>
]]></content:encoded>
			<wfw:commentRss>http://plugable.com/2011/10/04/the-celluon-laser-projection-keyboard-is-amazing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plugable DC-125 USB Zero Clients Save Money for K-12</title>
		<link>http://plugable.com/2011/09/28/plugable-dc-125-usb-zero-clients-save-money-for-k-12/</link>
		<comments>http://plugable.com/2011/09/28/plugable-dc-125-usb-zero-clients-save-money-for-k-12/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 01:24:59 +0000</pubDate>
		<dc:creator>Bernie Thompson</dc:creator>
				<category><![CDATA[DC-125]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[Using]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[amazon:asin=B004PXPPNA]]></category>

		<guid isPermaLink="false">http://plugable.com/?p=3125</guid>
		<description><![CDATA[One of our K-12 customers was kind enough to send &#8220;their story&#8221; of deploying Windows Multipoint Server 2011 with Plugable DC-125 Docking Clients, for this 2011-2012 school year. It&#8217;s amazing how few people know about the possibilities of turning one computer into many with simple USB terminals. We&#8217;re hoping more stories like this will get [...]]]></description>
			<content:encoded><![CDATA[<p><em>One of our K-12 customers was kind enough to send &#8220;their story&#8221; of deploying <a href="http://www.microsoft.com/windows/multipoint/" target="_blank">Windows Multipoint Server 2011</a> with <a href="http://plugable.com/products/dc-125/" target="_blank">Plugable DC-125 Docking Clients</a>, for this 2011-2012 school year.  </p>
<p>It&#8217;s amazing how few people know about the possibilities of turning one computer into many with simple USB terminals. We&#8217;re hoping more stories like this will get the word out!</em></p>
<hr/>
<p>To Whom It May Concern:</p>
<p>I want to take a second and thank you for the support you have given me. It is not often I find such good people that take time out of their busy day to help! Thank you so much!</p>
<p>I voluntarily single handedly support a small non-profit K-12 school. A little IT history on that school was that as of early 2009, I started getting involved with the IT Infrastructure. In reviewing their systems, I noted that they were running a Microsoft Small Business Server 2000 to which was only used to serve IP address and keep some files in a fileshare. The server had been installed in 2000 to which had not been maintained since then except for the occasional reboot and update.</p>
<p>In 2009, Microsoft announced that they would discontinue the support of Microsoft Server 2000 in July. Knowing this, I began having meetings communicating to the staff of the impacts of running a server without having support for major things like updates. I helped them decide that we should upgrade the infrastructure to Microsoft Small Business Server 2008 as well as source a new server to run the software.</p>
<p>While the server was on order, we began updating the entire wiring infrastructure of the network cabling to consistently possess at least Cat 5 cable.</p>
<p>I installed the new server as well as setup the ability to use Microsoft Exchange Server, Sharepoint Server, and a file Server. Also, I made sure to install a raid system as well as a nightly backup system. For the first time, the staff had email addresses with the school name! The staff we all very excited to use the new system.</p>
<p>Noting that there were many old computers that were at least 7-10 yrs old, we sourced and installed Microsoft Server 2008 in a Hyper-V session in order to use Terminal Server, now called Remote Desktop Services. On that Terminal Server, I installed all of Microsoft Office 2010 as well as other pertinent programs needed for the school. This allowed a repurposing of all the older computers as well as combining the old computers with new flatscreen monitors. The speed of the Terminal Server made the staff feel like they all had brand new computers!</p>
<p>I had been using the Comcast Modem as a firewall and knew that the firewall needed to be upgraded. The school needed a way to track everyone on the internet as well as the capability to filter the internet. I sourced a smaller used HP DL380 server to run an all-encompassing web filter, spam filter, firewall, routing, etc., named Untangle. This also sped up the internet experience as Untangle has the ability to cache websites.</p>
<p>Next on the list was to revive a computer lab that had not been run in over 2 years. There were several questions to be answered in order to ascertain how the lab was going to be built with these criteria in mind:</p>
<p>· Cost Effective</p>
<p>· Ease of maintenance</p>
<p>· As Energy Efficient as Possible(green)</p>
<p>· Reliable</p>
<p>· Ease of use</p>
<p>With that in mind, we came up with a few options. The first option was to utilize the computers from the old lab with a Terminal Server session. Because the base software of the computers was Windows 2000, they would have to at least be upgraded to Windows XP for security and Microsoft support reasons. Because of the expense and support needed, we decided against doing that option. Specifically we did not meet the goals of:</p>
<p>· Ease of maintenance</p>
<p>· Reliable</p>
<p>· Ease of use</p>
<p>The next option was to utilize &#8220;nettop&#8221; computers, specifically the Foxconn NetBox-nT525 nt525-0H0W-B-A-NA-BOX that we could mount to the back of a monitor. We then sourced 10 refurbished Dell 19&#8243; monitors. I purchase one of the mini computers for test. I installed both Linux Edubuntu as well as Windows 7. The problems with this route are that it did not meet our objectives because:</p>
<p>· Not as cost effective because of the need for 10 computers</p>
<p>· Increased maintenance need</p>
<p>· Having to learn Linux by the staff therefore not easy to use</p>
<p>· No ability to use Remote Desktop into the computers (would have had to install VNC)</p>
<p>The third option was to install a dumb terminal system. Two systems were looked at including Linux Userful and Microsoft Multipoint Server 2011.</p>
<p>I admit that I am not near as intelligent on Linux as I am Microsoft products. For Linux, I know just enough to get me into trouble I think. I can do almost anything I want with any Microsoft OS and almost all software. With Linux, I have to struggle and look up internet blogs to help me with basic functionality. This is the second main reason I chose Microsoft over Linux.</p>
<p>We ultimately chose Microsoft Multipoint Server 2011 and here is why: I guess I could really boil it down to be selfish. Because I need to be able to support the school, I want the capability to remotely connect to any user computer either interfaced with the user or totally without the user in order to solve issues. Also would like to remote to apply updates and normal/general server maintenance.</p>
<p>The server we purchased to run the environment was a Dell R210. It is a 2.93 ghz Xeon Hyperthreaded Quad Core with 16 gb 1333mhz ram. It should be able to do whatever we want in this situation, right? Wrong. I also sourced 5 DC-125 units from Plugable to test the server for the needs of the school.</p>
<p>I then installed Microsoft Multipoint onto the server as well as all the displaylink software required. I tried plugging in a DC-125 to which did not work as expected. I then began troubleshooting.</p>
<p>After 3 weeks of troubleshooting with Dell and Microsoft, I got nowhere near making the system run. I then began consulting with Plugable. They had absolutely phenomenal support. Very quickly we determined the situation was caused by the 1998 technology used by Dell for the video card.</p>
<p>I then sourced an ATI 2270 video card and placed it in the only open slot. It worked! Yeah! If it wasn&#8217;t for Plugable&#8217;s awesome support, I would have had a very expensive paperweight as well as the need to go out an purchase 10 computers with Operating Systems!</p>
<p>Let&#8217;s talk about GREEN! The lab is only running one computer instead of 11. The server is running an LED monitor which is 1/10th the power requirements of LCD. The ATI 2270 video card only uses max 17.5 watts of power. All combined, the lab requires very little power requirements than what would have been.</p>
<p>As for the rest of the criteria, it was all met.</p>
<p>So, this is where we stand in the school, an operating lab based on Microsoft Multipoint OS connected to Active Directory and the internet. Have tested the system with 2 workstations running full screen Hulu and one running full screen YouTube and the frame rates never dropped as well as sound/video never got out of sync. I am extremely happy with this setup!</p>
<p>About me, I am an &#8220;old&#8221; computer guy I guess. Sometimes I still prefer DOS over windows. My favorite computer language is Assembler. <img src='http://plugable.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  95% of everything I have learned has been on my own eventhough I do have a degree in CIS. I don&#8217;t admit readily to others that I know anything but I normally get tasked to fix everyone&#8217;s computer. (I gotta stop doing that or at least charge.) In my home, I am running a full server with exchange, IIS (I can run Apache just fine), and other network technologies which is where I have learned the most and have been doing this for more than 10 yrs. My entire family, internal and extended, all syncs their phones to my exchange server for email, for free. <img src='http://plugable.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>As you can see, I love computing platforms as well as the social aspect. I also love to be on the bleeding edge. Companies like Plugable really go the extra mile to help everyone, especially to support the needs of a non-profit school. I love Plugable and their DC-125!</p>
<hr/>
<em>A big thanks from Plugable to this customer for sharing their story!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://plugable.com/2011/09/28/plugable-dc-125-usb-zero-clients-save-money-for-k-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto: Installing ASIX&#8217;s USB Gigabit Ethernet Driver on Mac OS X Lion 10.7</title>
		<link>http://plugable.com/2011/07/27/howto-asix-usb-gigabit-driver-lion/</link>
		<comments>http://plugable.com/2011/07/27/howto-asix-usb-gigabit-driver-lion/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 07:11:55 +0000</pubDate>
		<dc:creator>Bernie Thompson</dc:creator>
				<category><![CDATA[Installing]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[USB2-E1000]]></category>
		<category><![CDATA[amazon:asin=B003VSTDFG]]></category>

		<guid isPermaLink="false">http://plugable.com/?p=2868</guid>
		<description><![CDATA[If you plug one of our Plugable USB2-E1000 USB 2.0 to Gigabit Ethernet Adapters or others based on the ASIX 88178 chipset into an Mac Lion system, Apple will match it with the Apple Gigabit Ethernet driver that&#8217;s included in Lion. Unfortunately, Apple limits compatibility to Apple brand adapters (even though they use the same [...]]]></description>
			<content:encoded><![CDATA[<p>If you plug one of our <a href="http://plugable.com/products/usb2-e1000/">Plugable USB2-E1000 USB 2.0 to Gigabit Ethernet Adapters</a> or others based on the ASIX 88178 chipset into an Mac Lion system, Apple will match it with the Apple Gigabit Ethernet driver that&#8217;s included in Lion.  </p>
<p>Unfortunately, Apple limits compatibility to Apple brand adapters (even though they use the same ASIX chipset).  And it fails on non-Apple adapters in a confusing way: it will show as &#8220;Connected&#8221; in the Network control panel, but connections out won&#8217;t work &#8212; you&#8217;ll notice it has a self-assigned IP address (169.*), no router, and no DNS server.  It looks something like this:</p>
<p><a href="http://plugable.com/wp-content/uploads/2011/07/lion_asix_88178_apple_driver-copy.jpg"><img src="http://plugable.com/wp-content/uploads/2011/07/lion_asix_88178_apple_driver-copy-300x260.jpg" alt="" title="lion_asix_88178_apple_driver copy" width="300" height="260" class="aligncenter size-medium wp-image-2869" /></a></p>
<p>Fortunately, ASIX has an updated driver which works on Lion (and older versions).  Note that if you had done this before upgrading to Lion, your old driver may be 32-bit.  Lion moves all systems to a 64-bit kernel, so in the case of a Lion upgrade, you may have to uninstall the old driver (uninstaller included in the driver package), and follow the steps below to get ASIX&#8217;s latest driver.</p>
<p>Download the <a href="http://www.asix.com.tw/FrootAttach/driver/AX88178_Macintosh_10.4_10.5_10.6_Driver_v3.5.0_Binary.zip">Plugable USB2-E1000 (ASIX 88178 chipset) driver</a>.</p>
<p>If you&#8217;re downlading with Safari, look for the Download folder the Lion has in your Dock by default.  Click on that to bring up recent downloads, which looks like this:</p>
<p><a href="http://plugable.com/wp-content/uploads/2011/07/lion_asix_driver_downloaded_stack-copy.jpg"><img src="http://plugable.com/wp-content/uploads/2011/07/lion_asix_driver_downloaded_stack-copy-300x197.jpg" alt="" title="lion_asix_driver_downloaded_stack copy" width="300" height="197" class="aligncenter size-medium wp-image-2860" /></a></p>
<p>Open that folder, then click on the &#8220;.dmg&#8221; to open the ASIX driver installer disk image.</p>
<p><a href="http://plugable.com/wp-content/uploads/2011/07/lion_asix_driver_folder-copy.jpg"><img src="http://plugable.com/wp-content/uploads/2011/07/lion_asix_driver_folder-copy-300x136.jpg" alt="" title="lion_asix_driver_folder copy" width="300" height="136" class="aligncenter size-medium wp-image-2861" /></a></p>
<p>The image then shows up on the left side of the window, below your other drives, called &#8220;DISK IMAGE&#8221;. Click on this to open the image, then click on the installer (the icon with the package opening).</p>
<p><a href="http://plugable.com/wp-content/uploads/2011/07/lion_asix_dmg_image-copy.jpg"><img src="http://plugable.com/wp-content/uploads/2011/07/lion_asix_dmg_image-copy-300x135.jpg" alt="" title="lion_asix_dmg_image copy" width="300" height="135" class="aligncenter size-medium wp-image-2859" /></a></p>
<p>You&#8217;re finally out of Lion&#8217;s folders and into the installer proper.</p>
<p><a href="http://plugable.com/wp-content/uploads/2011/07/lion_asix_installer_firstpage-copy.jpg"><img src="http://plugable.com/wp-content/uploads/2011/07/lion_asix_installer_firstpage-copy-300x212.jpg" alt="" title="lion_asix_installer_firstpage copy" width="300" height="212" class="aligncenter size-medium wp-image-2865" /></a></p>
<p>The ASIX 88178 driver isn&#8217;t big (254K)</p>
<p><a href="http://plugable.com/wp-content/uploads/2011/07/lion_asix_driver_installer_2ndpage-copy.jpg"><img src="http://plugable.com/wp-content/uploads/2011/07/lion_asix_driver_installer_2ndpage-copy-300x212.jpg" alt="" title="lion_asix_driver_installer_2ndpage copy" width="300" height="212" class="aligncenter size-medium wp-image-2862" /></a></p>
<p>You will be prompted to let the driver install.</p>
<p><a href="http://plugable.com/wp-content/uploads/2011/07/lion_asix_driver_installer_elevation-copy.jpg"><img src="http://plugable.com/wp-content/uploads/2011/07/lion_asix_driver_installer_elevation-copy-300x161.jpg" alt="" title="lion_asix_driver_installer_elevation copy" width="300" height="161" class="aligncenter size-medium wp-image-2863" /></a></p>
<p>A reboot is required for the newly installed driver to be active.</p>
<p><a href="http://plugable.com/wp-content/uploads/2011/07/lion_asix_driver_installer_reboot-copy.jpg"><img src="http://plugable.com/wp-content/uploads/2011/07/lion_asix_driver_installer_reboot-copy-300x117.jpg" alt="" title="lion_asix_driver_installer_reboot copy" width="300" height="117" class="aligncenter size-medium wp-image-2864" /></a></p>
<p>After the reboot, if you open the Network control panel, you should now see &#8220;Connected&#8221;, but now also with a properly assigned IP address, DNS, etc.  </p>
<p>If that&#8217;s not the case (or something goes awry later), it&#8217;s common on Mac OS X to need a fresh interface for the adapter, which you can create via the network control panel (this creates a new, clean configuration for an adapter).  See the <a href="https://s3.amazonaws.com/plugable/doc/Plugable_ASIX_Mac_Installation_Guide.pdf" target="_blank">ASIX Mac installation guide</a> for details.</p>
<p>And once you have that automatically assigned IP address, you should be done &#8211; open Safari and enjoy!</p>
<p><a href="http://plugable.com/wp-content/uploads/2011/07/lion_successful_asix_install-copy.jpg"><img src="http://plugable.com/wp-content/uploads/2011/07/lion_successful_asix_install-copy-300x260.jpg" alt="" title="lion_successful_asix_install copy" width="300" height="260" class="aligncenter size-medium wp-image-2871" /></a></p>
<p>And if you have a Plugable adapter and have any problems at all, we&#8217;re here to help.  Visit <a href="http://support.plugable.com/">support.plugable.com</a> or email support@plugable.com anytime.  Thanks!</p>
<p><b>Where to Buy</b></p>
<div class="amtap">
<table class="amazon_table">
<tr>
<td><img src="http://ecx.images-amazon.com/images/I/413kaX1OeRL._SL110_.jpg" width="110" height="95" alt=""/></td>
<td class="amazon_title">Plugable USB 2.0 to 10/100/1000 Gigabit Ethernet LAN Network Adapter (ASIX AX88178 Chipset)</td>
<td class="amazon_detail"><a href="http://plugable.com/products/USB2-E1000">          Product Details        </a></td>
<td/>
<td class="amazon_price">&#36;26.95</td>
<td><a href="http://www.amazon.com/Plugable-Gigabit-Ethernet-Network-Adapter/dp/B003VSTDFG?SubscriptionId=AKIAJ27KPV45VTL2XA5Q&#038;tag=plugabltechno-20&#038;linkCode=xm2&#038;camp=2025&#038;creative=165953&#038;creativeASIN=B003VSTDFG" rel="nofollow"><img src="http://plugable.com/wp-content/uploads/2010/08/buyfromamazon.gif" width="120px" height="43px" style="border-style:none"/></a></td>
</tr>
</table>
</div>
]]></content:encoded>
			<wfw:commentRss>http://plugable.com/2011/07/27/howto-asix-usb-gigabit-driver-lion/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Installing a USB Serial Adapter on Mac OS X</title>
		<link>http://plugable.com/2011/07/12/installing-a-usb-serial-adapter-on-mac-os-x/</link>
		<comments>http://plugable.com/2011/07/12/installing-a-usb-serial-adapter-on-mac-os-x/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 22:35:19 +0000</pubDate>
		<dc:creator>Bernie Thompson</dc:creator>
				<category><![CDATA[Installing]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[PL2303-DB9]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[amazon:asin=B00425S1H8]]></category>

		<guid isPermaLink="false">http://plugable.com/?p=2672</guid>
		<description><![CDATA[The easiest way to go about installing our Plugable USB to Serial adapter is by starting with the device. If you want to verify that the adapter and the driver were installed properly click here Connect the device to the Mac. Once connected click on the Apple icon and on ‘About This Mac’ Click on [...]]]></description>
			<content:encoded><![CDATA[<!-- AMTAP: cannot retrieve content from Amazon Web Services or cache --><!-- AMTAP::transform failed --><p>The easiest way to go about installing our <a href="http://plugable.com/products/PL2303-DB9">Plugable USB to Serial adapter</a> is by starting with the device.</p>
<ul>
<li>If you want to verify that the adapter and the driver were installed properly click <a href="#VERIFY">here</a></li>
</ul>
<p>Connect the device to the Mac. Once connected click on the Apple icon and on ‘About This Mac’<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/01.png"><img class="aligncenter size-full wp-image-2675" title="01" src="http://plugable.com/wp-content/uploads/2011/06/01.png" alt="" width="235" height="88" /></a><br />
Click on ‘More Info…’<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/02.png"><img class="aligncenter size-full wp-image-2676" title="02" src="http://plugable.com/wp-content/uploads/2011/06/02.png" alt="" width="314" height="358" /></a><br />
Click on ‘USB’ on the left and on the ‘USB-Serial Controller D’<br />
If all is well you should be seeing something like this:<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/03.png"><img class="aligncenter size-full wp-image-2680" title="03" src="http://plugable.com/wp-content/uploads/2011/06/03.png" alt="" width="519" height="403" /></a><br />
Time to get the driver! Fire up Safari and browse to http://plugable.com/drivers/prolific/ and scroll down to Mac.<br />
Click on the ‘PL2303 MacOSX10.6 dmg v.1.4.0.zip’, the Safari Downloads window should come up:<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/04.png"><img class="aligncenter size-full wp-image-2682" title="04" src="http://plugable.com/wp-content/uploads/2011/06/04.png" alt="" width="614" height="342" /></a><br />
Double click on the md_PL23-3_MacOSX10<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/05.png"><img class="aligncenter size-full wp-image-2684" title="05" src="http://plugable.com/wp-content/uploads/2011/06/05.png" alt="" width="352" height="75" /></a><br />
Now double click on the PL2303_1.4.0.dmg to mount the image<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/06.png"><img class="aligncenter size-full wp-image-2685" title="06" src="http://plugable.com/wp-content/uploads/2011/06/06.png" alt="" width="508" height="161" /></a><br />
Now double click on the PL2303_1.4.0 to start the installation<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/07.png"><img class="aligncenter size-full wp-image-2686" title="07" src="http://plugable.com/wp-content/uploads/2011/06/07.png" alt="" width="291" height="142" /></a><br />
Once the installer comes up click ‘Continue’ to proceed.<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/08.png"><img class="aligncenter size-full wp-image-2687" title="08" src="http://plugable.com/wp-content/uploads/2011/06/08.png" alt="" width="622" height="441" /></a><br />
Then ‘Select a Destination’ click on your desired drive and click ‘Continue’ to move forward<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/10.png"><img class="aligncenter size-full wp-image-2693" title="10" src="http://plugable.com/wp-content/uploads/2011/06/10.png" alt="" width="622" height="440" /></a><br />
Now just click ‘Install’ to continue.<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/11.png"><img class="aligncenter size-full wp-image-2694" title="11" src="http://plugable.com/wp-content/uploads/2011/06/11.png" alt="" width="621" height="441" /></a><br />
You may be asked of your username and password – enter them and click ‘OK’<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/12.png"><img class="aligncenter size-full wp-image-2695" title="12" src="http://plugable.com/wp-content/uploads/2011/06/12.png" alt="" width="445" height="249" /></a><br />
You’ll get a warning about restarting the computer after the installation is complete. This is normal, click ‘Continue Installation‘.<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/13.png"><img class="aligncenter size-full wp-image-2697" title="13" src="http://plugable.com/wp-content/uploads/2011/06/13.png" alt="" width="622" height="443" /></a><br />
Installing should start (takes a couple of minutes to complete)<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/14.png"><img class="aligncenter size-full wp-image-2698" title="14" src="http://plugable.com/wp-content/uploads/2011/06/14.png" alt="" width="620" height="442" /></a><br />
When it’s done you should see this:<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/15.png"><img class="aligncenter size-full wp-image-2702" title="15" src="http://plugable.com/wp-content/uploads/2011/06/15.png" alt="" width="619" height="442" /></a><br />
Click on ‘Restart’ to reboot the Mac.</p>
<p><a name="VERIFY"></a> After you restart, check that everything has installed OK.<br />
On the Mac there are two methods to determine this:</p>
<p><strong>Method 1:</strong><br />
Click on &#8216;Applications&#8217;<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/17.png"><img class="aligncenter size-full wp-image-2706" title="17" src="http://plugable.com/wp-content/uploads/2011/06/17.png" alt="" width="114" height="114" /></a><br />
Click on &#8216;Utilities&#8217;<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/18.png"><img class="aligncenter size-full wp-image-2707" title="18" src="http://plugable.com/wp-content/uploads/2011/06/18.png" alt="" width="152" height="146" /></a><br />
Click on &#8216;Terminal&#8217;<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/19.png"><img class="aligncenter size-full wp-image-2708" title="19" src="http://plugable.com/wp-content/uploads/2011/06/19.png" alt="" width="146" height="144" /></a><br />
Type:<br />
<code>kextstat | grep prolific</code><br />
and:<br />
<code>ioreg -c IOSerialBSDClient | grep usb</code><br />
Your results should be very close to this:<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/16.png"><img class="aligncenter size-full wp-image-2709" title="16" src="http://plugable.com/wp-content/uploads/2011/06/16.png" alt="" width="586" height="173" /></a><br />
<strong>Method 2:</strong><br />
Click on &#8216;System Preferences&#8217;<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/20.png"><img class="aligncenter size-full wp-image-2710" title="20" src="http://plugable.com/wp-content/uploads/2011/06/20.png" alt="" width="170" height="103" /></a><br />
Click on &#8216;Network&#8217;<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/21.png"><img class="aligncenter size-full wp-image-2711" title="21" src="http://plugable.com/wp-content/uploads/2011/06/21.png" alt="" width="668" height="360" /></a><br />
Now click on the &#8216;+&#8217; sign on the bottom left, and then on the &#8216;Select the interface and enter a name for the new Service&#8217; click on &#8216;Interface&#8217; &#8211; you should be seeing the &#8216;USB-Serial Controller D&#8217; there.<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/22.png"><img class="aligncenter size-full wp-image-2712" title="22" src="http://plugable.com/wp-content/uploads/2011/06/22.png" alt="" width="670" height="580" /></a></p>
<p>This will create a &#8220;Network&#8221; interface for a modem or serial port. Because it&#8217;s a serial port, it&#8217;ll say &#8220;Not Configured&#8221; and that&#8217;s normal:</p>
<p><a href="http://plugable.com/wp-content/uploads/2011/07/lion-network-serial-not-configured.png"><img class="alignnone size-medium wp-image-3212" title="lion-network-serial-not-configured" src="http://plugable.com/wp-content/uploads/2011/07/lion-network-serial-not-configured-300x260.png" alt="" width="300" height="260" /></a></p>
<p>From the &#8220;Advanced&#8221; button you can change default settings (usually not needed). And this won&#8217;t change the &#8220;Not Configured&#8221; message &#8211; that&#8217;s still ok.</p>
<p><a href="http://plugable.com/wp-content/uploads/2011/07/lion-network-serial-advanced.png"><img class="alignnone size-medium wp-image-3214" title="lion-network-serial-advanced" src="http://plugable.com/wp-content/uploads/2011/07/lion-network-serial-advanced-300x233.png" alt="" width="300" height="233" /></a></p>
<p>Now finally, you need an application which will talk to the serial port. On Mac, the file which maps to the port is /dev/cu.usbserial. If you have a null modem cable and a terminal program on the other side, the Mac actually has a built-in terminal program called &#8220;screen&#8221; that you can use to test the connection.</p>
<p><a href="http://plugable.com/wp-content/uploads/2011/07/lion-serial-command-line-ioreg-screen.png"><img class="alignnone size-full wp-image-3215" title="lion-serial-command-line-ioreg-screen" src="http://plugable.com/wp-content/uploads/2011/07/lion-serial-command-line-ioreg-screen.png" alt="" width="508" height="128" /></a></p>
<p>Once that is up and connected (and if the serial ports are set to the same baud rate and paramters), you can type on either side and see the characters come across.</p>
<p><strong>Support</strong></p>
<p>USB Serial on the Mac is a real melding of the very new and very old. If you have any trouble, just visit <a href="plugable.com/products/pl2303-db9/support/">plugable.com/products/pl2303-db9/support/</a> to see existing FAQs for <a href="plugable.com/products/pl2303-db9/">Plugable&#8217;s USB Serial adapter</a>.</p>
<p><strong>Where to Buy</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://plugable.com/2011/07/12/installing-a-usb-serial-adapter-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing the Plugable USB to RS-232 DB9 Serial Adapter on Windows 7</title>
		<link>http://plugable.com/2011/07/05/installing-the-plugable-usb-to-rs-232-db9-serial-adapter-on-windows-7/</link>
		<comments>http://plugable.com/2011/07/05/installing-the-plugable-usb-to-rs-232-db9-serial-adapter-on-windows-7/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 09:20:49 +0000</pubDate>
		<dc:creator>Bernie Thompson</dc:creator>
				<category><![CDATA[Installing]]></category>
		<category><![CDATA[PL2303-DB9]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[amazon:asin=B00425S1H8]]></category>

		<guid isPermaLink="false">http://plugable.com/?p=2643</guid>
		<description><![CDATA[Windows 7 will detect and pop up a wizard to install drivers when our Plugable USB to Serial adapter is plugged in, but it&#8217;s also easy (as essential on other operating systems) to install the driver software first. Here&#8217;s how. Get the driver from: http://plugable.com/drivers/prolific/ You’ll want to download the driver and unzip it anywhere [...]]]></description>
			<content:encoded><![CDATA[<p>Windows 7 will detect and pop up a wizard to install drivers when our <a href="http://plugable.com/products/PL2303-DB9">Plugable USB to Serial adapter</a> is plugged in, but it&#8217;s also easy (as essential on other operating systems) to install the driver software first.  Here&#8217;s how.</p>
<p>Get the driver from:  <a href="http://plugable.com/drivers/prolific/">http://plugable.com/drivers/prolific/</a></p>
<p>You’ll want to download the driver and unzip it anywhere on your desktop. Once you have, double click on it to start the installation. </p>
<p>The installation is relatively simple and no questions are asked. When it’s done you should see something like this:<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/win7-01.png"><img src="http://plugable.com/wp-content/uploads/2011/06/win7-01.png" alt="" title="win7-01" width="502" height="381" class="aligncenter size-full wp-image-2645" /></a><br />
Now go ahead and connect the adapter. You should get a pop-up looking like this:<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/win7-02.png"><img src="http://plugable.com/wp-content/uploads/2011/06/win7-02.png" alt="" title="win7-02" width="529" height="170" class="aligncenter size-full wp-image-2646" /></a><br />
Finally Windows should report that the device has been installed:<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/win7-03.png"><img src="http://plugable.com/wp-content/uploads/2011/06/win7-03.png" alt="" title="win7-03" width="526" height="172" class="aligncenter size-full wp-image-2647" /></a><br />
On Device Manager you should be looking at something like this:<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/win7-04.png"><img src="http://plugable.com/wp-content/uploads/2011/06/win7-04.png" alt="" title="win7-04" width="322" height="397" class="aligncenter size-full wp-image-2648" /></a></p>
<ul>
<li>Now, If you want to change the COM port assignment, here&#8217;s <a href="http://plugable.com/2011/07/04/how-to-change-the-com-port-for-a-usb-serial-adapter-on-windows-7/"><strong>how to change the COM port for a USB Serial adapter on Windows 7</strong></a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://plugable.com/2011/07/05/installing-the-plugable-usb-to-rs-232-db9-serial-adapter-on-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change the COM port for a USB Serial adapter on Windows 7</title>
		<link>http://plugable.com/2011/07/04/how-to-change-the-com-port-for-a-usb-serial-adapter-on-windows-7/</link>
		<comments>http://plugable.com/2011/07/04/how-to-change-the-com-port-for-a-usb-serial-adapter-on-windows-7/#comments</comments>
		<pubDate>Mon, 04 Jul 2011 18:13:44 +0000</pubDate>
		<dc:creator>Bernie Thompson</dc:creator>
				<category><![CDATA[PL2303-DB9]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Using]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[amazon:asin=B00425S1H8]]></category>

		<guid isPermaLink="false">http://plugable.com/?p=2783</guid>
		<description><![CDATA[Start by going to the Device Manager. Once there do the following: Expand the Ports ‘(COM&#038; LPT)’ You should be looking at something like this: As you can see Windows has set the port to COM10. However many legacy applications expect the port to be between 1-4. Let’s change that: Right click on the device [...]]]></description>
			<content:encoded><![CDATA[<p>Start by going to the Device Manager. Once there do the following:<br />
Expand the Ports ‘(COM&#038; LPT)’<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/win7-05.png"><img src="http://plugable.com/wp-content/uploads/2011/06/win7-05.png" alt="" title="win7-05" width="298" height="53" class="aligncenter size-full wp-image-2649" /></a><br />
You should be looking at something like this:<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/win7-06.png"><img src="http://plugable.com/wp-content/uploads/2011/06/win7-06.png" alt="" title="win7-06" width="299" height="52" class="aligncenter size-full wp-image-2650" /></a><br />
As you can see Windows has set the port to COM10. However many legacy applications expect the port to be between 1-4. Let’s change that:<br />
Right click on the device and click on ‘Properties’.<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/win7-07.png"><img src="http://plugable.com/wp-content/uploads/2011/06/win7-07.png" alt="" title="win7-07" width="460" height="169" class="aligncenter size-full wp-image-2651" /></a><br />
Click on ‘Port Settings’. Then click on ‘Advanced…’.<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/win7-08.png"><img src="http://plugable.com/wp-content/uploads/2011/06/win7-08.png" alt="" title="win7-08" width="419" height="325" class="aligncenter size-full wp-image-2657" /></a><br />
Once you’re in ‘Advanced Settings for COM10’ on the bottom you can see the ‘COM Port Number: COM10’. Click on that to change it to the lowest possible number (between 1-4).<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/win7-09.png"><img src="http://plugable.com/wp-content/uploads/2011/06/win7-09.png" alt="" title="win7-09" width="635" height="334" class="aligncenter size-full wp-image-2658" /></a><br />
Then click ‘OK’ on all open Property Windows.<br />
Now the device should look like this:<br />
<a href="http://plugable.com/wp-content/uploads/2011/06/win7-10.png"><img src="http://plugable.com/wp-content/uploads/2011/06/win7-10.png" alt="" title="win7-10" width="312" height="66" class="aligncenter size-full wp-image-2659" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://plugable.com/2011/07/04/how-to-change-the-com-port-for-a-usb-serial-adapter-on-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DisplayLink 5.6 M1 Driver on Windows Update</title>
		<link>http://plugable.com/2011/06/24/displaylink-5-6-m1-driver-on-windows-update/</link>
		<comments>http://plugable.com/2011/06/24/displaylink-5-6-m1-driver-on-windows-update/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 21:14:34 +0000</pubDate>
		<dc:creator>Bernie Thompson</dc:creator>
				<category><![CDATA[Display]]></category>
		<category><![CDATA[Installing]]></category>
		<category><![CDATA[Laptop Dock]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[UD-160-A]]></category>
		<category><![CDATA[UGA-125]]></category>
		<category><![CDATA[UGA-165]]></category>
		<category><![CDATA[UGA-2K-A]]></category>
		<category><![CDATA[USB-VGA-165]]></category>
		<category><![CDATA[USB2-HDMI-165]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[amazon:asin=B004AIJE9G]]></category>
		<category><![CDATA[amazon:asin=B004D0QC0A]]></category>
		<category><![CDATA[amazon:asin=B004PXPPNA]]></category>

		<guid isPermaLink="false">http://plugable.com/?p=2731</guid>
		<description><![CDATA[Microsoft&#8217;s Windows Update system has been updated to the latest DisplayLink 5.6 M1 Driver (5.6.31854.0 dated 2011/04/18). If you used Windows Update previously to get your driver, you were getting version 5.5. This update is compatible with and applies to all Plugable USB graphics adapters and docks. This is great news, as this new version [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft&#8217;s Windows Update system has been updated to the latest DisplayLink 5.6 M1 Driver (5.6.31854.0 dated 2011/04/18).  If you used Windows Update previously to get your driver, you were getting version 5.5.</p>
<p>This update is compatible with and applies to all Plugable USB graphics adapters and docks.</p>
<p>This is great news, as this new version includes a few important fixes and features, and many small ones.  Details below.</p>
<h3>Notes</h3>
<ul>
<li>Windows 7 makes Windows Update for hardware automatic, but it can be enabled for Vista and XP also</li>
<li>The update will automatically be triggered by Windows when it sees a new device.  Or for an existing device, you can trigger Windows Update manually, and look for DisplayLink&#8217;s drivers among the &#8220;Optional&#8221; updates.</li>
</ul>
<h3>Important Features/Fixes from 5.5 to 5.6 M1</h3>
<ul>
<li>Fix for software-triggered screen freezes (which required system reboot or service restart)</li>
<li>Support for Windows Server SKUs (with Aero installed and enabled)</li>
<li>Better compatibility with nVidia and ATI GPUs</li>
<li>Improved compatibility with newer DirectX apps</li>
</ul>
<h3>Full changelist from DisplayLink</h3>
<p><img src="http://displaylink.com/images/nav_logo.gif" style="float:right; padding: 10px"/>C1. Fixed issues between R5.6 (5.6.31721.0) and R5.6 M1 (5.6.31854.0)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>If the reboot prompt after install is ignored on Windows XP, then the<br />
DisplayLink monitor set to mirror may display corrupted data. (10953)</p>
<p>After installing DisplayLink software on some systems with switchable graphics<br />
architectures, the main monitor may be dimmed and not responsive until reboot.<br />
(10534)</p>
<p>Monitor details were not being updated in &#8220;Devices and Printers&#8221; folder when<br />
changing the monitors connected to DisplayLink device. (9917)</p>
<p>DisplayLink monitors may flash occasionally when playing fullscreen videos on<br />
several stations. (11173)</p>
<p>On Windows XP after installing DisplayLink drivers several reboot cycles may be<br />
requested. (11079)</p>
<p>C1. Fixed issues between R5.5 (5.5.27797) and R5.6 (5.6.31721.0)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
DisplayLink Software upgraded through Windows Update will not work correctly<br />
after rebooting the system (issue affecting releases R5.3 to R5.4 on Windows<br />
update). (9658)</p>
<p>Blue screen on Windows 7 on some platforms when rebooting after having applied<br />
layout changes. (9631)</p>
<p>The DisplayLink GUI stops functioning correctly after switching GPU on some<br />
ATI/Intel hybrid systems. (10065, 10106)</p>
<p>Sometimes there are two DisplayLink icons present in the system tray. (9807)</p>
<p>Sometimes the DisplayLink icon is missing in the system tray. (9545, 9837)</p>
<p>Video in Basic Mode not working with the latest Windows updates on both Windows<br />
Vista and Windows 7. (1609)</p>
<p>Video playback issues on Microsoft Windows 7 with the latest NVIDIA Drivers.<br />
(10061)</p>
<p>A DisplayLink USB monitor could occasionally remain blank after a PC reboot.<br />
(9622)</p>
<p>DirectX 9 games could crash when running on a primary, non DisplayLink, screen.<br />
(10027)</p>
<p>DisplayLink software fails to install on NVidia Quadro FX 880M graphics card.<br />
(9637)</p>
<p>On Windows 7 Windows Photo Viewer may show corruption when a DisplayLink<br />
monitor is mirroring the main screen. (9612)</p>
<p>On some systems with switchable graphics architectures disconnecting<br />
a DisplayLink monitor may cause main monitor to be switched off. (9750, 9747)</p>
<p>Screen corruption while performing the Aero 3D flip (Windows+tab) interface<br />
effect. (10425)</p>
<p>Blue screen when restarting with a connected DisplayLink screen in Projector<br />
Only mode. (10457)</p>
<p>After a series of layout changes the DisplayLink screens can sometimes freeze<br />
while the DisplayLink GUI loses functionality. (10489)</p>
<p>2 DisplayLink GUIs are shown in the system tray after installation. (10504)</p>
<p>Blue screen when using a DisplayLink device for the first time on some Optimus<br />
configurations. (10700)</p>
<p>On some Optimus configurations, rebooting with a DisplayLink device connected<br />
causes the DisplayLink screens to remain black with a blinking mouse pointer.<br />
(10701, 10702)</p>
<p>Screen corruption when using 3D GUI effects on DisplayLink screens in some<br />
display configurations. (9611, 10425)</p>
<p>Screen corruption on DisplayLink screens while using some applications after a<br />
transition from projector mode to duplicate. (9612)</p>
<p>Video in Basic Mode not working with the latest Windows updates on both Windows<br />
Vista and Windows 7. (1609)</p>
<p>In rare scenarios a DisplayLink monitor may freeze. (10230)</p>
<p>DisplayLink USB monitor could occasionally remain blank after a PC reboot.<br />
(9622)</p>
<p>Blue screen when playing video on multiple clients. (6309, 9442)</p>
<p>SRC Shell application crashed when playing video clip. (10212)</p>
<p>When the logon screen is displayed, occasionally the DisplayLink displays are<br />
frozen and only updated by the mouse pointer. (10044)</p>
<p>On some switchable systems the main screen flashes continuously after<br />
installing the DisplayLink driver or after connecting the DisplayLink device.<br />
(10653)</p>
<p>Corruption is shown while moving the cursor near the edge of a window on top of<br />
 a Windows Media Player window. (10752)</p>
<p>Incorrect/missing Windows Update error reporting from the DisplayLink GUI.<br />
(10523)</p>
<p>Sometimes a Windows XP computer with DisplayLink drivers installed will hang<br />
while starting. (9607)</p>
<p>On some nVidia Optimus systems the DisplayLink display will remain black<br />
immediately after installing the DisplayLink drivers. A reboot recovers from<br />
this issue. (10785)</p>
<p>On some machines Windows falls into endless reboot loop after installation of<br />
DisplayLink drivers. (10918)</p>
<p>Timing not compliant with the CEA861D specification. (10952)</p>
]]></content:encoded>
			<wfw:commentRss>http://plugable.com/2011/06/24/displaylink-5-6-m1-driver-on-windows-update/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Plugable UGA-2K-A $57.50 (through July 4th)</title>
		<link>http://plugable.com/2011/06/23/plugable-uga-2k-a-57-50-through-july-4th/</link>
		<comments>http://plugable.com/2011/06/23/plugable-uga-2k-a-57-50-through-july-4th/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 00:16:56 +0000</pubDate>
		<dc:creator>Bernie Thompson</dc:creator>
				<category><![CDATA[Display]]></category>
		<category><![CDATA[Evaluating]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[UGA-2K-A]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://plugable.com/?p=2704</guid>
		<description><![CDATA[We&#8217;re sorry, the UGA-2K-A has gone out of stock. ETA July 15, 2011 Through July 4th 2011, we&#8217;re temporarily lowering the price of our Plugable UGA-2K-A USB Graphics Adapter to $57.50 (normally $64.50). If you know how great 2 or 3 monitors are, and have wanted to add another (up to 6 on Windows; 4 [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color:red">We&#8217;re sorry, the UGA-2K-A has gone out of stock. ETA July 15, 2011</span></p>
<p>Through July 4th 2011, we&#8217;re temporarily lowering the price of our <a href="http://plugable.com/products/uga-2k-a/">Plugable UGA-2K-A USB Graphics Adapter</a> to $57.50 (normally $64.50).</p>
<p>If you know how great 2 or 3 monitors are, and have wanted to add another (up to 6 on Windows; 4 on Mac), this is a great time to do it.  </p>
<p>More independent USB-attached displays for Independence Day. Yea!</p>
]]></content:encoded>
			<wfw:commentRss>http://plugable.com/2011/06/23/plugable-uga-2k-a-57-50-through-july-4th/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

