<?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>system admin life</title> <atom:link href="http://www.systemadmin.ro/feed/" rel="self" type="application/rss+xml" /><link>http://www.systemadmin.ro</link> <description></description> <lastBuildDate>Sun, 18 Mar 2012 18:04:35 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=</generator> <item><title>IIS error: HTTP Error 500.19 &#8211; Internal Server Error</title><link>http://www.systemadmin.ro/2012/03/18/iiserror-500-10-internal-server-error/</link> <comments>http://www.systemadmin.ro/2012/03/18/iiserror-500-10-internal-server-error/#comments</comments> <pubDate>Sun, 18 Mar 2012 18:04:35 +0000</pubDate> <dc:creator>paul</dc:creator> <category><![CDATA[howto]]></category> <category><![CDATA[idiots]]></category> <category><![CDATA[500]]></category> <category><![CDATA[iis]]></category> <category><![CDATA[permissions]]></category> <category><![CDATA[Windows]]></category> <guid
isPermaLink="false">http://www.systemadmin.ro/?p=522</guid> <description><![CDATA[IIS permission error suck. I got this error on a freshly server provided by a company: HTTP Error 500.19 &#8211; Internal Server Error Module IIS Web Core Notification Unknown Handler Not yet determined Error Code 0&#215;80070005 Config Error Cannot read configuration file due to insufficient permissions Config File \\?\E:\inetpub\wwwroot\web.config Requested URL http://localhost:80/iisstart.htm Physical Path Logon [...]]]></description> <content:encoded><![CDATA[<p>IIS permission error suck.</p><p>I got this error on a freshly server provided by a company:</p><p>HTTP Error 500.19 &#8211; Internal Server Error<br
/> Module IIS Web Core<br
/> Notification Unknown<br
/> Handler Not yet determined<br
/> Error Code 0&#215;80070005<br
/> Config Error Cannot read configuration file due to insufficient permissions<br
/> Config File \\?\E:\inetpub\wwwroot\web.config<br
/> Requested URL <a
href="http://localhost/iisstart.htm">http://localhost:80/iisstart.htm</a><br
/> Physical Path<br
/> Logon Method Not yet determined<br
/> Logon User Not yet determined</p><p>I coul find a page with all errors and how to solve them,  but, none worked:</p><p>http://blogs.iis.net/webtopics/archive/2010/03/08/troubleshooting-http-500-19-errors-in-iis-7.aspx</p><p>More testing reveled that moving the wwwroot directory from C drive to another drive, somehow affected the security and the access was denied to read the web.config file even the file was a non-existent one.</p><p>The solution, after some tests, was to not use wwwroot at all for the default web site. Instead, we created an empty directory in inetpub, and, it worked from the first try.</p><p>Also, the old configuration was working if the port 80 was changed to 8080. I have not tried other port, I was too angry to try another (e.g. 81).</p><p>Bugger&#8230;</p><div
class="plus-one-wrap"><g:plusone href="http://www.systemadmin.ro/2012/03/18/iiserror-500-10-internal-server-error/"></g:plusone></div>]]></content:encoded> <wfw:commentRss>http://www.systemadmin.ro/2012/03/18/iiserror-500-10-internal-server-error/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Redirect http to https behind varnish for php services</title><link>http://www.systemadmin.ro/2011/07/21/redirect-http-to-https-behind-varnish-for-php-services/</link> <comments>http://www.systemadmin.ro/2011/07/21/redirect-http-to-https-behind-varnish-for-php-services/#comments</comments> <pubDate>Thu, 21 Jul 2011 17:03:22 +0000</pubDate> <dc:creator>paul</dc:creator> <category><![CDATA[howto]]></category> <category><![CDATA[https]]></category> <category><![CDATA[redirect]]></category> <category><![CDATA[varnish]]></category> <guid
isPermaLink="false">http://www.systemadmin.ro/?p=511</guid> <description><![CDATA[It may happen to want to redirect a site from http to https behind a varnish cache system. Is known the fact that varnish has a lack of redirect procedures, mostly from http to https. A redirect on varnish from http to https looks like this: if (req.http.host ~ "^(www\.)?site\.com$" &#38;&#38; req.url ~ "\/checkout\/cart") { [...]]]></description> <content:encoded><![CDATA[<p>It may happen to want to redirect a site from http to https behind a varnish cache system.</p><p>Is known the fact that varnish has a lack of redirect procedures, mostly from http to https.</p><p>A redirect on varnish from http to https looks like this:</p><pre>if (req.http.host ~ "^(www\.)?site\.com$" &amp;&amp; req.url ~ "\/checkout\/cart") {
       error 750 "https://www.site.com/checkout/cart";</pre><pre>sub vcl_error {
 #redirect to https
 if (obj.status == 750) {
 set obj.http.Location = obj.response;
 set obj.status = 302;
 return(deliver);
 }
 }</pre><p>That will not work!</p><p>Varnish is not aware if the request was made from http (request directly sent to varnish) or https (request sent to pound).</p><p>So, I have found another page suggesting that the redirect can be added to php like this:</p><pre>if (($_SERVER['REQUEST_URI'] == '/admin' || $_SERVER['REQUEST_URI'] ==  '/checkout/cart/') &amp;&amp; !$_SERVER['HTTP_X_FORWARDED_PROTO']){
  header("Location: https://". $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI']);
}elseif (($_SERVER['REQUEST_URI'] != '/admin' &amp;&amp; $_SERVER['REQUEST_URI'] != '/checkout/cart/') &amp;&amp; $_SERVER['HTTP_X_FORWARDED_PROTO']) {
  header("Location: http://". $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI']);
}</pre><p>This code fixes https redirection.<br
/> Any comments are welcome. I am new to varnish.</p><div
class="plus-one-wrap"><g:plusone href="http://www.systemadmin.ro/2011/07/21/redirect-http-to-https-behind-varnish-for-php-services/"></g:plusone></div>]]></content:encoded> <wfw:commentRss>http://www.systemadmin.ro/2011/07/21/redirect-http-to-https-behind-varnish-for-php-services/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Blue Iris Error: 8000274d (OnConnect: 10061), block 0.</title><link>http://www.systemadmin.ro/2011/06/15/blue-iris-error-8000274d-onconnect-10061-block-0/</link> <comments>http://www.systemadmin.ro/2011/06/15/blue-iris-error-8000274d-onconnect-10061-block-0/#comments</comments> <pubDate>Wed, 15 Jun 2011 18:18:08 +0000</pubDate> <dc:creator>paul</dc:creator> <category><![CDATA[idiots]]></category> <category><![CDATA[howto]]></category> <guid
isPermaLink="false">http://www.systemadmin.ro/?p=502</guid> <description><![CDATA[If you upgraded recently, automatically or not, and you can&#8217;t see anything in cameras added to Blue Iris you might have connectivity issues. To debug this, telnet to the ip and port you have using in the camera settings. If telnet is not working stop the firewall to be sure you are not  limited by [...]]]></description> <content:encoded><![CDATA[<p>If you upgraded recently, automatically or not, and you can&#8217;t see anything in cameras added to Blue Iris you might have connectivity issues.</p><p>To debug this, telnet to the ip and port you have using in the camera settings.</p><p>If telnet is not working stop the firewall to be sure you are not  limited by it.  And try again in blue iris.</p><p>If still no luck, open tcpview, reset camera and quickly check the ports blue iris is accessing.</p><p>Compare the port actually used to the one you have setup on the camera. You may find that after the upgrade the ports were changed in blue iris.</p><p>I have found that my video port was replaced with default video port (port 554) and web port was changed to my custom video port.</p><div
class="plus-one-wrap"><g:plusone href="http://www.systemadmin.ro/2011/06/15/blue-iris-error-8000274d-onconnect-10061-block-0/"></g:plusone></div>]]></content:encoded> <wfw:commentRss>http://www.systemadmin.ro/2011/06/15/blue-iris-error-8000274d-onconnect-10061-block-0/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Rotate backups over FTP</title><link>http://www.systemadmin.ro/2011/06/14/rotate-backups-over-ftp/</link> <comments>http://www.systemadmin.ro/2011/06/14/rotate-backups-over-ftp/#comments</comments> <pubDate>Tue, 14 Jun 2011 19:40:37 +0000</pubDate> <dc:creator>paul</dc:creator> <category><![CDATA[howto]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[ubuntu]]></category> <guid
isPermaLink="false">http://www.systemadmin.ro/?p=499</guid> <description><![CDATA[I was looking for a method to rotate old files from external backup account. It looks like is not that easy but a small fuse module can mount the ftp account locally. This allows you to use scripts and tools from local server to search, delele, upload, download files like they were local. To carry [...]]]></description> <content:encoded><![CDATA[<p>I was looking for a method to rotate old files from external backup account.</p><p>It looks like is not that easy but a small fuse module can mount the ftp account locally. This allows you to use scripts and tools from local server to search, delele, upload, download files like they were local.</p><p>To carry out this I have installed curlftpfs:<br
/> <code>apt-get install curlftpfs</code></p><p>Mount the external ftp account:<br
/> <code>curlftpfs -o allow_other username:p4ss@backupserver.external /media/ftpmount/</code></p><p>Notice the <code>-o allow_other</code>, without this no other user than the user used to mount the account will be able to use it.</p><p>Now you can use: rsync, find, cp, vim or du to make whatever you need with the files.</p><div
class="plus-one-wrap"><g:plusone href="http://www.systemadmin.ro/2011/06/14/rotate-backups-over-ftp/"></g:plusone></div>]]></content:encoded> <wfw:commentRss>http://www.systemadmin.ro/2011/06/14/rotate-backups-over-ftp/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Toshiba Tecra A8-PTA83E &#8211; Enable sound on Windows 7</title><link>http://www.systemadmin.ro/2011/05/25/toshiba-tecra-a8-pta83e-enable-sound-on-windows-7/</link> <comments>http://www.systemadmin.ro/2011/05/25/toshiba-tecra-a8-pta83e-enable-sound-on-windows-7/#comments</comments> <pubDate>Wed, 25 May 2011 19:11:03 +0000</pubDate> <dc:creator>paul</dc:creator> <category><![CDATA[idiots]]></category> <category><![CDATA[drivers]]></category> <category><![CDATA[fucking vista]]></category> <category><![CDATA[howto]]></category> <category><![CDATA[toshiba]]></category> <category><![CDATA[Windows]]></category> <guid
isPermaLink="false">http://www.systemadmin.ro/?p=493</guid> <description><![CDATA[After upgrading from Windows Vista or from Windows XP you will find out that the sound doesn&#8217;t work. Like me, you have tried all the drivers available on the internet: XP sound drivers, Vista 32bit or Vista 64bit sound drivers. Still, no luck. On a forum, I have found a post about a tool that [...]]]></description> <content:encoded><![CDATA[<p>After upgrading from Windows Vista or from Windows XP you will find out that the sound doesn&#8217;t work.</p><p>Like me, you have tried all the drivers available on the internet: XP sound drivers, Vista 32bit or Vista 64bit sound drivers. Still, no luck.</p><p>On a <a
title="http://forums.computers.toshiba-europe.com/forums/thread.jspa?messageID=200784" href="http://forums.computers.toshiba-europe.com/forums/thread.jspa?messageID=200784" target="_blank">forum</a>, I have found a post about a tool that enables the sound for Vista.</p><p>The name, obviously, is &#8220;Sound Utility to Turn Mute Off&#8221;.</p><p>The link to the tool:</p><p><a
title="http://www.csd.toshiba.com/cgi-bin/tais/support/jsp/downloadDetail.jsp?soid=1671893&amp;pf=true" href="http://www.csd.toshiba.com/cgi-bin/tais/support/jsp/downloadDetail.jsp?soid=1671893&amp;pf=true" target="_blank">http://www.csd.toshiba.com/cgi-bin/tais/support/jsp/downloadDetail.jsp?soid=1671893&amp;pf=true</a></p><p>Let me know if this helped you, it did worked for me in Windows 7 x64.</p><p>&nbsp;</p><p>EDIT: The step was required only when I have first time installed Windows 7. Second time I have installed Windows 7, the sound was working from the first boot.</p><div
class="plus-one-wrap"><g:plusone href="http://www.systemadmin.ro/2011/05/25/toshiba-tecra-a8-pta83e-enable-sound-on-windows-7/"></g:plusone></div>]]></content:encoded> <wfw:commentRss>http://www.systemadmin.ro/2011/05/25/toshiba-tecra-a8-pta83e-enable-sound-on-windows-7/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>IPv6 ready</title><link>http://www.systemadmin.ro/2011/02/04/ipv6-ready/</link> <comments>http://www.systemadmin.ro/2011/02/04/ipv6-ready/#comments</comments> <pubDate>Fri, 04 Feb 2011 16:15:26 +0000</pubDate> <dc:creator>paul</dc:creator> <category><![CDATA[online]]></category> <category><![CDATA[hosting]]></category> <category><![CDATA[ipv6]]></category> <guid
isPermaLink="false">http://www.systemadmin.ro/?p=481</guid> <description><![CDATA[Starting today I have added an IPv6 to my domain: Name: systemadmin.ro Addresses: 2607:f298:2:121::4fd:e97d So, I&#8217;m ready for IPv6 visits.]]></description> <content:encoded><![CDATA[<p>Starting today I have added an IPv6 to my domain:<br
/> Name:    systemadmin.ro<br
/> Addresses:  2607:f298:2:121::4fd:e97d</p><p>So, I&#8217;m ready for IPv6 visits.</p><div
class="plus-one-wrap"><g:plusone href="http://www.systemadmin.ro/2011/02/04/ipv6-ready/"></g:plusone></div>]]></content:encoded> <wfw:commentRss>http://www.systemadmin.ro/2011/02/04/ipv6-ready/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Shell tools, today is sed&#8217;s day</title><link>http://www.systemadmin.ro/2010/12/04/shell-tools-sed/</link> <comments>http://www.systemadmin.ro/2010/12/04/shell-tools-sed/#comments</comments> <pubDate>Sat, 04 Dec 2010 07:55:54 +0000</pubDate> <dc:creator>paul</dc:creator> <category><![CDATA[shell]]></category> <category><![CDATA[editing]]></category> <category><![CDATA[fun]]></category> <category><![CDATA[howto]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[power]]></category> <category><![CDATA[scripting]]></category> <category><![CDATA[speed]]></category> <guid
isPermaLink="false">http://www.systemadmin.ro/?p=472</guid> <description><![CDATA[When you have to deal with shell scripting and task automation you need powerful tools. I will post some basic usage examples to prove how useful sed can be when you have to modify a large number of files. Here the simple one. You have several files and you want a word replaced in all [...]]]></description> <content:encoded><![CDATA[<p>When you have to deal with shell scripting and task automation you need powerful tools.</p><p>I will post some basic usage examples to prove how useful <code>sed</code> can be when you have to modify a large number of files.</p><p
style="padding-left: 30px;">Here the simple one.<br
/> You have several files and you want a word replaced in all of them.</p><p
style="padding-left: 30px;"><code>sed -i 's/apache2/httpd/g' files*.conf</code></p><p
style="padding-left: 30px;">This will modify the file matching the pattern <code>files*.conf</code> replacing &#8220;apache2&#8243; with &#8220;httpd&#8221;<br
/> Removing -i will print the result on the console.</p><p
style="padding-left: 30px;"><p
style="padding-left: 30px;">Now, the really useful one, the one that will save you a lot of time.<br
/> The problem you have is: 100+ config files that needs to be modified by adding four lines in a special position in the files.</p><p
style="padding-left: 30px;"><code>sed -i '/RewriteEngine/i \<br
/> \n&lt;Location \/aaa&gt;\n\tProxyPass ajp\:\/\/127.0.0.1\:8019\/aaa\n\tProxyPassReverse ajp\:\/\/127.0.0.1\:8019\/aaa\n\&lt;\/Location\&gt;\n' files*.conf</code></p><p
style="padding-left: 30px;">-i will modify the files by adding before &#8220;<code>RewriteEngine" the text:</code></p><p
style="padding-left: 30px;"><code><br
/> </code>empty line<br
/> &lt;Location/aaa&gt;<br
/> &lt;tab&gt;ProxyPass ajp://127.0.0.1:8019/aaa<br
/> &lt;tab&gt;ProxyPassReverse ajp://127.0.0.1:8019/aaa<br
/> &lt;/Location&gt;<br
/> emptyline</p><p
style="padding-left: 30px;"><p>Now think about adding these lines in every single file, one by one, from 1 to 100, each in an exact position, some of the configs having two or more sections to be added.</p><p>Piece of cake with sed.</p><p
style="padding-left: 30px;"><div
class="plus-one-wrap"><g:plusone href="http://www.systemadmin.ro/2010/12/04/shell-tools-sed/"></g:plusone></div>]]></content:encoded> <wfw:commentRss>http://www.systemadmin.ro/2010/12/04/shell-tools-sed/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Customer satisfaction</title><link>http://www.systemadmin.ro/2010/10/28/customer-satisfaction/</link> <comments>http://www.systemadmin.ro/2010/10/28/customer-satisfaction/#comments</comments> <pubDate>Thu, 28 Oct 2010 18:54:18 +0000</pubDate> <dc:creator>paul</dc:creator> <category><![CDATA[personal]]></category> <category><![CDATA[customer]]></category> <category><![CDATA[satisfaction]]></category> <guid
isPermaLink="false">http://www.systemadmin.ro/?p=460</guid> <description><![CDATA[[10/28/2009 2:13:31 PM] Wxxxxx Hxxxxxx: I admire your will power. [10/28/2009 2:25:25 PM] Wxxxxx Hxxxxxx: I understand.  You&#8217;re the sort of person whom I really admire &#8211; people who can do things with their hands. [10/27/2010 11:12:05 AM] Txxxxx Fxxxx: from a certain &#8220;distance&#8221; the time working with you was really cool [10/27/2010 11:12:39 AM] [...]]]></description> <content:encoded><![CDATA[<p>[10/28/2009 2:13:31 PM] Wxxxxx Hxxxxxx: I admire your will power.<br
/> [10/28/2009 2:25:25 PM] Wxxxxx Hxxxxxx: I understand.  You&#8217;re the sort of person whom I really admire &#8211; people who can do things with their hands.</p><p>[10/27/2010 11:12:05 AM] Txxxxx Fxxxx: from a certain &#8220;distance&#8221; the time working with you was really cool<br
/> [10/27/2010 11:12:39 AM] Txxxxx Fxxxx: and I remember you as one of the most .. let&#8217;s say friendly/happy guys there</p><p>Two different guys almost the same time.<br
/> These words made me so happy and fulfilled. You can&#8217;t buy this&#8230;</p><div
class="plus-one-wrap"><g:plusone href="http://www.systemadmin.ro/2010/10/28/customer-satisfaction/"></g:plusone></div>]]></content:encoded> <wfw:commentRss>http://www.systemadmin.ro/2010/10/28/customer-satisfaction/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>trac: already updated: Error binding parameter 3 &#8211; probably unsupported type</title><link>http://www.systemadmin.ro/2010/10/20/trac-already-updated-error-binding-parameter-3-probably-unsupported-type/</link> <comments>http://www.systemadmin.ro/2010/10/20/trac-already-updated-error-binding-parameter-3-probably-unsupported-type/#comments</comments> <pubDate>Wed, 20 Oct 2010 19:35:05 +0000</pubDate> <dc:creator>paul</dc:creator> <category><![CDATA[howto]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[error]]></category> <category><![CDATA[python]]></category> <category><![CDATA[trac]]></category> <category><![CDATA[type]]></category> <category><![CDATA[unsupported]]></category> <guid
isPermaLink="false">http://www.systemadmin.ro/?p=456</guid> <description><![CDATA[I&#8217;m sick today, but, here is a short one. If the user cannot log in into trac after a self password reset and you receive this message: user.name already updated: Error binding parameter 3 - probably unsupported type. all you need is to delete the cached users session in the sqlite database. First make a [...]]]></description> <content:encoded><![CDATA[<p>I&#8217;m sick today, but, here is a short one.</p><p>If the user cannot log in into trac after a self password reset and you receive this message:</p><p><code>user.name already updated: Error binding parameter 3 - probably unsupported type.</code></p><p>all you need is to delete the cached users session in the sqlite database.</p><p><strong>First make a backup:  <code>cp trac.db trac.db-backup</code></strong><br
/> Now you have to find the sessions stored in the database:<br
/> <code>sqlite2 trac.db<br
/> select * from session_attribute;</code></p><p>Find the user with the problems and delete his data:<br
/> <code>DELETE FROM session_attribute WHERE sid = "user.name"; </code></p><p>Now test.<br
/> <strong>Please do backup the database first.</strong></p><div
class="plus-one-wrap"><g:plusone href="http://www.systemadmin.ro/2010/10/20/trac-already-updated-error-binding-parameter-3-probably-unsupported-type/"></g:plusone></div>]]></content:encoded> <wfw:commentRss>http://www.systemadmin.ro/2010/10/20/trac-already-updated-error-binding-parameter-3-probably-unsupported-type/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Windows XP, suddenly &#8220;USB device not recognized&#8221; message</title><link>http://www.systemadmin.ro/2010/09/21/windows-xp-suddenly-usb-device-not-recognized-message/</link> <comments>http://www.systemadmin.ro/2010/09/21/windows-xp-suddenly-usb-device-not-recognized-message/#comments</comments> <pubDate>Tue, 21 Sep 2010 19:15:48 +0000</pubDate> <dc:creator>paul</dc:creator> <category><![CDATA[howto]]></category> <category><![CDATA[idiots]]></category> <category><![CDATA[device not recognized]]></category> <category><![CDATA[drivers]]></category> <category><![CDATA[USB]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[xp]]></category> <guid
isPermaLink="false">http://www.systemadmin.ro/?p=448</guid> <description><![CDATA[USB stopped working, suddenly! F#uck! Nothing on USB is working, but it did! WTF can you do? On MS support the KB articles are not offering a straight to the point solution for this. So, I have searched the internet and after a few searches I have found this article (Google PR 3 page): http://www.online-tech-tips.com/computer-tips/usb-device-not-recognized/ [...]]]></description> <content:encoded><![CDATA[<p>USB stopped working, suddenly! F#uck! Nothing on USB is working, but it did! WTF can you do?</p><p>On MS support the KB articles are not offering a straight to the point solution for this.</p><p>So, I have searched the internet and after a few searches I have found this article (Google PR 3 page):</p><p><a
href="http://www.online-tech-tips.com/computer-tips/usb-device-not-recognized/" target="_blank">http://www.online-tech-tips.com/computer-tips/usb-device-not-recognized/</a></p><p>The answer is:</p><p><strong>UNPLUG YOUR COMPUTER FROM THE POWER SUPPLY!!! and wait a few minutes to have all residual power consumed.</strong></p><p><strong> </strong></p><p>So, I did it.</p><p><strong>And, it worked.</strong></p><p>I had a 3 m USB cable extension for a USB WIFI adapter and, after removing it, is all good. It works!!!</p><p><strong>Later edit:</strong></p><p>This is a bit extreme, it still works if you shutdown the computer, unplug the power cord, push the buttons of the computer a few times, plug-in USB devices and wait for a minute or so.</p><p>One cause of this may be the grounding of the appliances, high density of wireless devices, unshielded USB cable, or, a combination of these.<strong><br
/> </strong></p><div
class="plus-one-wrap"><g:plusone href="http://www.systemadmin.ro/2010/09/21/windows-xp-suddenly-usb-device-not-recognized-message/"></g:plusone></div>]]></content:encoded> <wfw:commentRss>http://www.systemadmin.ro/2010/09/21/windows-xp-suddenly-usb-device-not-recognized-message/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Dynamic page generated in 0.462 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-03-18 20:25:58 -->

