<?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; Scenario</title>
	<atom:link href="http://plugable.com/category/scenario/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>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>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>
		<item>
		<title>New DisplayLink Driver Released for Mac OS X Lion (10.7)</title>
		<link>http://plugable.com/2011/06/06/new-displaylink-driver-released-for-mac-os-x-lion-10-7/</link>
		<comments>http://plugable.com/2011/06/06/new-displaylink-driver-released-for-mac-os-x-lion-10-7/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 18:59:34 +0000</pubDate>
		<dc:creator>Bernie Thompson</dc:creator>
				<category><![CDATA[Display]]></category>
		<category><![CDATA[Installing]]></category>
		<category><![CDATA[Laptop Dock]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[News]]></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[amazon:asin=B002PONXAI]]></category>
		<category><![CDATA[amazon:asin=B004AIJE9G]]></category>

		<guid isPermaLink="false">http://plugable.com/?p=2484</guid>
		<description><![CDATA[[Update July 2011: Lion is now out! And DisplayLink has an updated beta 3 driver available at the same location as below. The final version of Lion unfortunately has introduced several significant issues with USB graphics. For the most up to date information, see our support forum at http://support.plugable.com/plugable/topics/osx_lion_and_usb_2_0_display_adapter] DisplayLink has released an updated Mac [...]]]></description>
			<content:encoded><![CDATA[<p>[Update July 2011:  Lion is now out!  And DisplayLink has an updated beta 3 driver available at the same location as below.  The final version of Lion unfortunately has introduced several significant issues with USB graphics.  For the most up to date information, see our support forum at http://support.plugable.com/plugable/topics/osx_lion_and_usb_2_0_display_adapter]</p>
<p>DisplayLink has released an updated Mac driver (1.7 beta 1) with support for Mac OX 10.7 &#8220;Lion&#8221; (both 32 and 64 bit kernels).</p>
<p>The driver is available for download now at <a href="http://displaylink.com/support/mac_downloads.php">http://displaylink.com/support/mac_downloads.php</a> and is compatible with all Plugable USB graphics adapters and docking stations, such as the <a href="http://plugable.com/products/uga-2k-a/">Plugable UGA-2K-A</a>. </p>
<p>DisplayLink&#8217;s release coincided with Apple&#8217;s announcement today at WWDC that the Lion update will be available for purchase next month for $29.  Driver updates from DisplayLink are free.</p>
<p>This new line of DisplayLink drivers (1.7 and later) is critical for all DisplayLink Mac users looking to upgrade to Lion, as the new OS release breaks all older USB graphics drivers.</p>
<p>The new DisplayLink driver release includes other fixes, but retains the same high-level characteristics and limitations of prior Mac driver versions (displays up to 2048&#215;1152 on high-end USB adapters; limit of 4 additional displays via 4 USB adapters; no Quartz Extreme/OpenGL support).</p>
]]></content:encoded>
			<wfw:commentRss>http://plugable.com/2011/06/06/new-displaylink-driver-released-for-mac-os-x-lion-10-7/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>DisplayLink Releases Beta of Windows Server Support (2003, 2008, 2008 R2)</title>
		<link>http://plugable.com/2011/01/03/displaylink-releases-beta-of-windows-server-support-2003-2008-2008-r2/</link>
		<comments>http://plugable.com/2011/01/03/displaylink-releases-beta-of-windows-server-support-2003-2008-2008-r2/#comments</comments>
		<pubDate>Tue, 04 Jan 2011 06:12:56 +0000</pubDate>
		<dc:creator>Bernie Thompson</dc:creator>
				<category><![CDATA[Display]]></category>
		<category><![CDATA[Installing]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[amazon:asin=B003XKBOVI]]></category>
		<category><![CDATA[amazon:asin=B004AIJE9G]]></category>
		<category><![CDATA[amazon:asin=B004D0QC0A]]></category>

		<guid isPermaLink="false">http://plugable.com/?p=1777</guid>
		<description><![CDATA[On Jan 1, 2011, DisplayLink released the first beta of their version 5.6 Windows drivers. The most significant feature in this release is Windows Server support: Windows Server 2003 (32-bit only &#8211; same as DisplayLink&#8217;s XP drivers) Windows Server 2008 (32/64-bit) Windows Server 2008 R2 and derivatives like Windows Multipoint Server 2011 (64-bit, since R2 [...]]]></description>
			<content:encoded><![CDATA[<p>On Jan 1, 2011, DisplayLink released the first beta of their version 5.6 Windows drivers.</p>
<p>The most significant feature in this release is Windows Server support:</p>
<ul>
<li>Windows Server 2003 (32-bit only &#8211; same as DisplayLink&#8217;s XP drivers)</li>
<li>Windows Server 2008 (32/64-bit)</li>
<li>Windows Server 2008 R2 and derivatives like Windows Multipoint Server 2011 (64-bit, since R2 is 64-bit only)</li>
</ul>
<p>Prior to this release, DisplayLink drivers would refuse to install on these server platforms.<br />
<iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=000000&#038;IS2=1&#038;nou=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=plugabltechno-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;asins=B003XKBOVI" style="float:right; padding=10px;width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe><br />
This is great news for several use cases, including:</p>
<ul>
<li>USB terminals in combination with <a href="http://connect.microsoft.com/wms/SelfNomination.aspx?ProgramID=6479&#038;pageType=1">Microsoft Multipoint Server 2011 Beta</a>. We&#8217;ll have much more news on this in coming weeks.</li>
<li>Anyone using Windows Server SKUs as a client PC (common among software developers)</li>
</ul>
<p>On the bug fix side, DisplayLink reports improved stability with more than 3 DisplayLink screens.</p>
<p>This release is compatible with all Plugable USB graphics products, and can be downloaded from <a href="http://displaylink.org/forum/showthread.php?t=572">DisplayLink&#8217;s 5.6 Beta Forum</a>.  We consider the prior release (5.5 M1 dated Dec 3, 2010) to be a critical upgrade because of nVidia and other compatibility improvements.  This one is more of an optional upgrade for the great majority of users on normal client copies of Windows.</p>
]]></content:encoded>
			<wfw:commentRss>http://plugable.com/2011/01/03/displaylink-releases-beta-of-windows-server-support-2003-2008-2008-r2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DisplayLink Releases New 5.5 M1 Windows Driver</title>
		<link>http://plugable.com/2010/12/03/displaylink-releases-new-5-5-m1-windows-driver/</link>
		<comments>http://plugable.com/2010/12/03/displaylink-releases-new-5-5-m1-windows-driver/#comments</comments>
		<pubDate>Sat, 04 Dec 2010 02:24:04 +0000</pubDate>
		<dc:creator>Bernie Thompson</dc:creator>
				<category><![CDATA[Display]]></category>
		<category><![CDATA[News]]></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[Using]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[amazon:asin=B002PONXAI]]></category>
		<category><![CDATA[amazon:asin=B003IE49T8]]></category>
		<category><![CDATA[amazon:asin=B004AIJE9G]]></category>
		<category><![CDATA[amazon:asin=B004D0QC0A]]></category>

		<guid isPermaLink="false">http://plugable.com/?p=1752</guid>
		<description><![CDATA[This release is especially important for users of the latest nVidia drivers (versions later than 258.96) on Windows 7 and Vista, because these recent nVidia drivers conflict with earlier DisplayLink drivers in the area of DirectX functionality. We&#8217;re recommending that affected users download this latest DisplayLink 5.5 M1 (Dec 3, 2010) release or any later [...]]]></description>
			<content:encoded><![CDATA[<p>This release is especially important for users of the latest nVidia drivers (versions later than 258.96) on Windows 7 and Vista, because these recent nVidia drivers <a href="http://plugable.com/2010/11/15/displaylink-and-nvidia-driver-compatibility-update/">conflict with earlier DisplayLink drivers</a> in the area of DirectX functionality.</p>
<p>We&#8217;re recommending that affected users download this latest DisplayLink 5.5 M1 (Dec 3, 2010) release or any later version, available at <a href="http://displaylink.com/support/downloads.php">http://displaylink.com/support/downloads.php</a>  </p>
<p>Note a reboot may be required as the installer removes the prior version, and installs the new.  Please feel free to comment with any experience reports or problems.</p>
<p>Here&#8217;s a rundown of important problems that are intended to be fixed from 5.5 (Sept 29, 2010) to 5.5 M1 (Dec 3, 2010) from the <a href="http://www.displaylink.com/filestore/release_note/DisplayLink-5.5.29194-release_notes.txt">DisplayLink 5.5 M1 release notes</a>. We have some notes from us [in brackets] based on what we&#8217;ve seen from Plugable customers.</p>
<p>These issues have complete or partial fixes in 5.5. M1:</p>
<ul>
<li>Video playback issues on Microsoft Windows 7 with the latest NVIDIA Drivers.  [This is the big incompatibility where nVidia drivers after 258.96 broke DirectX functionality on systems with DisplayLink drivers installed]</li>
<li>DisplayLink Software upgraded through Windows Update will not work correctly after rebooting the system (issue affecting releases R5.3 to R5.4 on Windows update). [This problem has kept the DisplayLink version on Microsoft's Windows Update system to the older version 5.2, meaning that users who simply plug in their device without a manual driver download have been missing fixes for a number of serious known issues.  Now DisplayLink should be able to resume delivering the very latest drivers via Windows Update]</li>
<li>DisplayLink USB monitor could occasionally remain blank after a PC reboot. [we've seen this problem intermittently from several customers. We suspect multiple causes, but hope this resolves most]</li>
<li>Sometimes the DisplayLink icon is missing in the system tray. [this had previously been a sign of larger problems]</li>
</ul>
<p>And other important problems DisplayLink reports fixed, that we haven&#8217;t specifically run across:</p>
<ul>
<li>Blue screen on Windows 7 on some platforms when rebooting after having applied layout changes.</li>
<li>The DisplayLink GUI stops functioning correctly after switching GPU on some ATI/Intel hybrid systems.</li>
<li>Sometimes there are two DisplayLink icons present in the system tray.</li>
<li>Video in Basic Mode not working with the latest Windows updates on both Windows Vista and Windows 7.</li>
</ul>
<p>5.5 M1 is compatible with all Plugable USB graphics devices. Generally DisplayLink does a good regression testing so we&#8217;ve generally had a good experience being aggressive about upgrading to get the latest fixes (when things break, they break more often between DisplayLink releases because of external OS or other main GPU driver changes). So we&#8217;re recommending this release to all Plugable users who are experiencing any of the problems above.</p>
]]></content:encoded>
			<wfw:commentRss>http://plugable.com/2010/12/03/displaylink-releases-new-5-5-m1-windows-driver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two New DisplayLink USB Graphics Adapters</title>
		<link>http://plugable.com/2010/12/02/plugable-adds-to-its-line-of-displaylink-usb-graphics-adapters/</link>
		<comments>http://plugable.com/2010/12/02/plugable-adds-to-its-line-of-displaylink-usb-graphics-adapters/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 16:15:56 +0000</pubDate>
		<dc:creator>Bernie Thompson</dc:creator>
				<category><![CDATA[Display]]></category>
		<category><![CDATA[Evaluating]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Portrait Display]]></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[Windows]]></category>
		<category><![CDATA[amazon:asin=B004AIJE9G]]></category>
		<category><![CDATA[amazon:asin=B004D0QC0A]]></category>

		<guid isPermaLink="false">http://plugable.com/?p=1723</guid>
		<description><![CDATA[Adapter now as low as $44.95 We&#8217;re filling out our line of DisplayLink USB graphics adapters with two new products that offer even better pricing, using DisplayLink&#8217;s most cost-effective mid-range DL-165 chip. 1) Our new UGA-165 completes our USB to VGA/DVI/HDMI family. There are all identical products other than the DisplayLink chip inside the unit: [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_1726" class="wp-caption alignright" style="width: 310px"><a href="http://displaylink.com/displaylink_hardware.php" target="_blank"><img src="http://plugable.com/wp-content/uploads/2010/12/DL-1x5-Table-300x158.png" alt="" title="DL-1x5-Table" width="300" height="158" class="size-medium wp-image-1726" /></a><p class="wp-caption-text">Source: DisplayLink</p></div><br/><strong>Adapter now as low as $44.95</strong>
<p>We&#8217;re filling out our line of DisplayLink USB graphics adapters with two new products that offer even better pricing, using DisplayLink&#8217;s most cost-effective mid-range DL-165 chip.</p>
<p>1) Our new <a href="http://plugable.com/products/uga-165">UGA-165</a> completes our USB to VGA/DVI/HDMI family. There are all identical products other than the DisplayLink chip inside the unit:  UGA-2K-A (DL-195 chip), UGA-165 (DL-165 chip), and UGA-125 (DL-125 chip).</p>
<p>2) Our new <a href="http://plugable.com/products/usb-vga-165/">USB-VGA-165</a> is our most aggressively priced product, hitting the new price point of $44.95, while still being built on DisplayLink&#8217;s mid-range DL-165 chip. We pushed the price point down by supporting VGA connections only (no DVI or HDMI, and no extra converters needed in the box), and with simpler casing and packaging.  </p>
<p>Now with this complete line, we&#8217;re covering the full line of DisplayLink chips, with options from $45-$65.  And we hope to add a higher end option focused on HDMI in the coming months.</p>
<p>If you&#8217;re a current owner of one of our other DisplayLink products, you&#8217;re going to like these new adapters &#8212; same drivers, same performance, same simple setup experience, and new lower price points for connecting even more monitors to your PC!</p>
<p>Here&#8217;s a table with more detail to compare the four adapters head-to-head.</p>
<p><table class="comparison">
<tr>
<td><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=FFFFFF&#038;IS2=1&#038;nou=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=plugabltechno-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;asins=B0038P1TP4" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></td>
<td><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=FFFFFF&#038;IS2=1&#038;nou=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=plugabltechno-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;asins=B004AIJE9G" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></td>
<td><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=FFFFFF&#038;IS2=1&#038;nou=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=plugabltechno-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;asins=B003IE49T8" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></td>
<td><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=FFFFFF&#038;IS2=1&#038;nou=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=plugabltechno-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;asins=B004D0QC0A" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></td>
</tr>
<tr>
<td>Model UGA-2K-A</td>
<td>Model UGA-165</td>
<td>Model UGA-125</td>
<td>Model USB-VGA-165</td>
</tr>
<tr>
<td>USB 2.0 to VGA, DVI, HDMI</td>
<td>USB 2.0 to VGA, DVI, HDMI</td>
<td>USB 2.0 to VGA, DVI, HDMI</td>
<td>USB 2.0 to VGA</td>
</tr>
<tr>
<td>DisplayLink DL-195 Chip</td>
<td>DisplayLink DL-165 Chip</td>
<td>DisplayLink DL-125 Chip </td>
<td>DisplayLink DL-165 Chip</td>
</tr>
<tr>
<td>Modes up to 1920&#215;1200 or 2048&#215;1152 (wide)</td>
<td>Modes up to 1600&#215;1200 or 1920&#215;1080 (wide)</td>
<td>Modes up to 1280&#215;1024 or 1440&#215;900 (wide)</td>
<td>Modes up to 1600&#215;1200 or 1920&#215;1080 (wide)</td>
</tr>
<tr>
<td>Power/Activity LED. Included DVI->VGA and DVI->HDMI Adapters</td>
<td>Power/Activity LED. Included DVI->VGA and DVI->HDMI Adapters</td>
<td>Power/Activity LED. Included DVI->VGA and DVI->HDMI Adapters</td>
<td>No LED. VGA Only. Simpler Packaging</td>
</tr>
<tr>
<td>Supported by latest DisplayLink drivers</td>
<td>Supported by latest DisplayLink drivers</td>
<td>Supported by latest DisplayLink drivers</td>
<td>Supported by latest DisplayLink drivers</td>
</tr>
<tr>
<td><a href="http://plugable.com/products/uga-2k-a/">More info &#8230;</a></td>
<td><a href="http://plugable.com/products/uga-165/">More info &#8230;</a></td>
<td><a href="http://plugable.com/products/uga-125/">More info &#8230;</a></td>
<td><a href="http://plugable.com/products/usb-vga-165/">More info &#8230;</a></td>
</tr>
</table>

]]></content:encoded>
			<wfw:commentRss>http://plugable.com/2010/12/02/plugable-adds-to-its-line-of-displaylink-usb-graphics-adapters/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>DisplayLink and nVidia Driver Compatibility Update</title>
		<link>http://plugable.com/2010/11/15/displaylink-and-nvidia-driver-compatibility-update/</link>
		<comments>http://plugable.com/2010/11/15/displaylink-and-nvidia-driver-compatibility-update/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 01:55:09 +0000</pubDate>
		<dc:creator>Bernie Thompson</dc:creator>
				<category><![CDATA[Display]]></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[Using]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[amazon:asin=B002PONXAI]]></category>
		<category><![CDATA[amazon:asin=B0038P1TP4]]></category>
		<category><![CDATA[amazon:asin=B003IE49T8]]></category>
		<category><![CDATA[amazon:asin=B004AIJE9G]]></category>

		<guid isPermaLink="false">http://plugable.com/?p=1582</guid>
		<description><![CDATA[[updated 12/3 - DisplayLink has released driver version 5.5 M1 (Dec 3, 2010) which appears to resolve all these outstanding nVidia issues. See details ... ] nVidia&#8217;s latest Win7/Vista drivers (October 18, 2010 and later) conflict with existing DisplayLink drivers (version 5.5 Sept 29th and earlier), causing video playback and some 3D applications to not [...]]]></description>
			<content:encoded><![CDATA[<p>[updated 12/3 - DisplayLink has released driver version 5.5 M1 (Dec 3, 2010) which appears to resolve all these outstanding nVidia issues.  <a href="http://plugable.com/2010/12/03/displaylink-releases-new-5-5-m1-windows-driver/">See details ...</a> ]</p>
<p>nVidia&#8217;s latest Win7/Vista drivers (October 18, 2010 and later) conflict with existing DisplayLink drivers (version 5.5 Sept 29th and earlier), causing video playback and some 3D applications to not function. These problems apply to all DisplayLink-based USB graphics products, including ours.</p>
<p>DisplayLink is working to fix the conflicts.  They&#8217;re trying to roll out updated drivers as quickly as possible, but have some work to do yet.</p>
<p>On Nov 15 they made available a maintenance release of the older DisplayLink driver version 5.4, called &#8220;5.4 M1&#8243;, which resolves some of the conflict, but not enough to make the solution workable.</p>
<p>Our recommended solution for now is to use the latest DisplayLink drivers, and stay on or move back to nVidia drivers version 258 or earlier.  For <a href="http://www.nvidia.com/object/win7-winvista-32bit-258.96-whql-driver.html">Windows 7 and Vista 32-bit, you can find the nVidia drivers here</a>. <a href="http://www.nvidia.com/object/win7-winvista-64bit-258.96-whql-driver.html">For 64-bit, find them here</a>.   These drivers do not have any of these these 3D &#038; video playback conflicts.</p>
<p>Our apologies to users affected by these conflicting drivers.  We hope this information helps. Feel free to email support@plugable.com or visit <a href="http://plugable.com/support/">http://plugable.com/support/</a> and post a question if you have any remaining problems. Again, thank you!</p>
<p>[updated 11/23]</p>
]]></content:encoded>
			<wfw:commentRss>http://plugable.com/2010/11/15/displaylink-and-nvidia-driver-compatibility-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto: Adjusting C-Media USB Audio Volume in Windows 7</title>
		<link>http://plugable.com/2010/10/28/howto-adjusting-c-media-usb-audio-volume-in-windows-7/</link>
		<comments>http://plugable.com/2010/10/28/howto-adjusting-c-media-usb-audio-volume-in-windows-7/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 22:01:43 +0000</pubDate>
		<dc:creator>Bernie Thompson</dc:creator>
				<category><![CDATA[Laptop Dock]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[UD-160-A]]></category>
		<category><![CDATA[Using]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[amazon:asin=B002PONXAI]]></category>
		<category><![CDATA[amazon:asin=B004PXPPNA]]></category>

		<guid isPermaLink="false">http://plugable.com/?p=1516</guid>
		<description><![CDATA[The Plugable UD-160-A Universal Docking Station and the Plubable DC-125 Zero Client Docking Station provide 2 channel USB audio via a CM-6300 chip. The CM-6300 is a &#8220;driverless&#8221; solution in that it complies with the USB audio class standard, and uses Microsoft&#8217;s own drivers provided in Windows 7. That also means that the software options [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://plugable.com/products/ud-160-a/">Plugable UD-160-A Universal Docking Station</a> and the <a href="http://plugable.com/products/dc-125/">Plubable DC-125 Zero Client Docking Station</a> provide 2 channel USB audio via a <a href="http://www.cmedia.com.tw/ProductsDetail.aspx?page=p&#038;C1Serno=25&#038;C2Serno=26&#038;C3Serno=0&#038;PSerno=22">CM-6300 chip</a>.  The CM-6300 is a &#8220;driverless&#8221; solution in that it complies with the USB audio class standard, and uses Microsoft&#8217;s own drivers provided in Windows 7.  That also means that the software options for controlling the device are all in the hands of Windows 7 itself.</p>
<p>The UD-160-A and other powered CM-6300 devices can be configured in hardware to deliver high power audio output, so it&#8217;s great even with unpowered speakers.  But for headsets and self-powered speakers, the defaults may be too loud. </p>
<p>For those cases and others, here are some details and tips for adjusting the volume in Windows 7 with USB audio.</p>
<p><a href="http://plugable.com/wp-content/uploads/2010/10/win7-libraries-music-sample-music.png"><img src="http://plugable.com/wp-content/uploads/2010/10/win7-libraries-music-sample-music-300x141.png" alt="" title="win7-libraries-music-sample-music" width="300" height="141" class="alignnone size-medium wp-image-1522" /></a></p>
<p>First off, it helps to bring up some music in Windows Media player so you can hear the affect of your settings changes.  Most Windows 7 installs will have some sample music to play in Libraries->Music->Sample Music</p>
<p><a href="http://plugable.com/wp-content/uploads/2010/10/win7-control-panel-sound-icon.png"><img src="http://plugable.com/wp-content/uploads/2010/10/win7-control-panel-sound-icon-300x188.png" alt="" title="win7-control-panel-sound-icon" width="300" height="188" class="alignnone size-medium wp-image-1517" /></a></p>
<p>Then, go to where the settings are collected &#8212; in the &#8220;Sound&#8221; settings from the Windows 7 Control Panel.</p>
<p><a href="http://plugable.com/wp-content/uploads/2010/10/win7-sound-control-panel-default.png"><img src="http://plugable.com/wp-content/uploads/2010/10/win7-sound-control-panel-default-269x300.png" alt="" title="win7-sound-control-panel-default" width="269" height="300" class="alignnone size-medium wp-image-1518" /></a></p>
<p>This will bring up the list of available audio devices, one of which should be your USB audio device.  By default, Windows 7 makes a new USB audio device the default &#8212; even if it doesn&#8217;t have any speakers attached!  So this is also the place where, if you&#8217;re not actually using your USB or docking station audio, you can select a different audio output (e.g. your laptop&#8217;s built-in audio) and click &#8220;Set Default&#8221; to make it the default for new default sound output and/or for communications (messenger/skype/voip).  Windows will persist this setting.</p>
<p><a href="http://plugable.com/wp-content/uploads/2010/10/win7-control-panel-sound-properties-menu.png"><img src="http://plugable.com/wp-content/uploads/2010/10/win7-control-panel-sound-properties-menu-277x300.png" alt="" title="win7-control-panel-sound-properties-menu" width="277" height="300" class="alignnone size-medium wp-image-1519" /></a></p>
<p>For adjusting the USB audio level, right click on the USB audio device to bring up the context menu and select &#8220;Properties&#8221;.</p>
<p><a href="http://plugable.com/wp-content/uploads/2010/10/win7-sound-properties-levels.png"><img src="http://plugable.com/wp-content/uploads/2010/10/win7-sound-properties-levels-269x300.png" alt="" title="win7-sound-properties-levels" width="269" height="300" class="alignnone size-medium wp-image-1520" /></a></p>
<p>The main volume for the device is in the &#8220;Levels&#8221; tab.  When this audio device is the default device, this level is the same as the Windows master audio volume controls (the one you adjust from the sound icon in the Windows system tray) &#8212; adjusting one will adjust the other.  The default in Windows is a max volume of &#8220;100&#8243;.</p>
<p>For the high-power audio of the Plugable dock, combined with powered speakers, &#8220;100&#8243; is often too loud, and you may find that even setting the level to &#8220;1&#8243; is still too loud.</p>
<p><a href="http://plugable.com/wp-content/uploads/2010/10/win7-sound-properties-custom-loudness.png"><img src="http://plugable.com/wp-content/uploads/2010/10/win7-sound-properties-custom-loudness-269x300.png" alt="" title="win7-sound-properties-custom-loudness" width="269" height="300" class="alignnone size-medium wp-image-1521" /></a></p>
<p>The solution is the &#8220;Custom&#8221; tab which has an optional &#8220;Loudness&#8221; checkbox (provided by the Microsoft USB audio class drivers).  Windows 7 sets this on by default, but in most cases it should be unchecked.  Then, go back to your levels tab and re-adjust the volume to the right and comfortable level.  </p>
<p>For most speaker combinations, you should no longer be having to peg the volume down at &#8220;1&#8243;.</p>
<p>And once you have master volume at a comfortable level &#8211; you also have another means of control. Each application has its own volume, which acts in combination with the Windows master settings.  So if system sounds or media playback are still to loud or not the right relative volume, look within the particular application for its own sound slider (and most applications will persist this setting).</p>
<p>We hope this helps for anyone experiencing audio which is too loud or too quiet with any Plugable or other USB audio devices on Win 7.  Please feel free to comment with any questions or other suggestions.</p>
<p><strong>[Update March 2, 2011]</strong></p>
<p>If you&#8217;re on Windows, and the above steps don&#8217;t help enough, there is a Windows driver solution to bump the volume down further.</p>
<p>This driver replaces Windows&#8217; default USB audio driver, it&#8217;s compatible with the CM6300 in the Plugable Universal Dock. Most functionality doesn&#8217;t apply to the CM6300, but the fine grained control over volume is better and helpful.</p>
<p>Here&#8217;s where you can <a href="http://plugable.com/public/drivers/C-Media-CM6300-Windows-Speaker_-6dB.zip">download the lower-volume CM6300 driver</a>.   Please let us know in the comments if you have any problems or feedback.  Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://plugable.com/2010/10/28/howto-adjusting-c-media-usb-audio-volume-in-windows-7/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

