<?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>Admins Goodies &#187; usb</title>
	<atom:link href="http://adminsgoodies.com/tag/usb/feed/" rel="self" type="application/rss+xml" />
	<link>http://adminsgoodies.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Fri, 17 May 2013 16:34:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>rsync from linux host to fat32</title>
		<link>http://adminsgoodies.com/rsync-from-linux-host-to-fat32/</link>
		<comments>http://adminsgoodies.com/rsync-from-linux-host-to-fat32/#comments</comments>
		<pubDate>Thu, 17 Jan 2013 17:34:02 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[General Questions]]></category>
		<category><![CDATA[fat]]></category>
		<category><![CDATA[fat32]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://adminsgoodies.com/rsync-from-linux-host-to-fat32/</guid>
		<description><![CDATA[i like to backup my linux based NAS (small files like picutres) to an attached USB Disk with FAT32. For this i like to use rsync. I know, that this will not work correct per default. rsync will sync the files again and again. I found this question and answers: How can I use rsync with a FAT file system? But, even if I use the --modify-window=1 and --size-only option, all files are processed again. [...]]]></description>
				<content:encoded><![CDATA[<h3 class="pq"><img src="http://adminsgoodies.com/imgs/question.png" alt="Question" /></h3>
<p>i like to backup my linux based NAS (small files like picutres) to an attached USB Disk with FAT32.<br />
For this i like to use rsync.</p>
<p>I know, that this will not work correct per default. rsync will sync the files again and again.<br />
I found this question and answers: <a href="http://serverfault.com/questions/54949/how-can-i-use-rsync-with-a-fat-file-system">How can I use rsync with a FAT file system?</a></p>
<p>But, even if I use the <code>--modify-window=1</code> and <code>--size-only</code> option, all files are processed again. The log looks like, rsync tries to set permission/ownership on fat32, which will fail.<br />
<code>rsync: chown "&lt;filename&gt;" failed: Operation not permitted (1)</code></p>
<p>Question is: is there a way to disable the &#8220;chown&#8221; command?</p>
<p>//Edit:</p>
<p>currently I use the following command: <code>rsync -a --modify-window=1 --size-only /data/ /mnt/backup/. &amp;</code></p>
<div class="author">Asked by <a href="http://serverfault.com/users/154900/the-bndr" target="_blank">The Bndr</a></div>
<h3 class="pa"><img src="http://adminsgoodies.com/imgs/answer.png" alt="Answer" /></h3>
<p>Just don&#8217;t use the options for syncing owner/group. If you are using the <code>--archive</code>/<code>-a</code> option this includes those two, so instead specify the flags individually and leave those out. Check the man page for a list of what <code>--archive</code> implies.</p>
<div class="author">Answered by <a href="http://serverfault.com/users/5221/david-spillett" target="_blank">David Spillett</a></div>
<p class="ref-link">Check <a href="http://serverfault.com/questions/470046/rsync-from-linux-host-to-fat32" target="_blank">more discussion</a> of this question.</p>
]]></content:encoded>
			<wfw:commentRss>http://adminsgoodies.com/rsync-from-linux-host-to-fat32/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to mount USB on ESXi 4.1?</title>
		<link>http://adminsgoodies.com/how-to-mount-usb-on-esxi-4-1/</link>
		<comments>http://adminsgoodies.com/how-to-mount-usb-on-esxi-4-1/#comments</comments>
		<pubDate>Tue, 01 Jan 2013 17:33:32 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[General Questions]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[usb]]></category>
		<category><![CDATA[vmware-esxi]]></category>

		<guid isPermaLink="false">http://adminsgoodies.com/how-to-mount-usb-on-esxi-4-1/</guid>
		<description><![CDATA[This is what I tried but it doesn&#8217;t work : Connect with SSH # /etc/init.d/usbarbitrator stop # fdisk -l &#124;grep Disk Disk /dev/disks/mpx.vmhba40:C0:T0:L0: 4022 MB, 4022337024 bytes # ls /dev/disks/mpx.vmhba40:C0:T0:L0* /dev/disks/mpx.vmhba40:C0:T0:L0 /dev/disks/mpx.vmhba40:C0:T0:L0:4 # mkdir /mnt/usb # mount /dev/disks/mpx.vmhba40:C0:T0:L0 /mnt/usb mount: mounting /dev/disks/mpx.vmhba40:C0:T0:L0 on /mnt/usb failed: No such file or directory Also tried with /dev/disks/mpx.vmhba40:C0:T0:L0:4, with /mnt/usb/, always the same error message. Then I checked # ls -l /vmfs/volumes, but it wasn&#8217;t there either The version [...]]]></description>
				<content:encoded><![CDATA[<h3 class="pq"><img src="http://adminsgoodies.com/imgs/question.png" alt="Question" /></h3>
<p>This is what I tried but it doesn&#8217;t work :</p>
<ol>
<li>Connect with SSH</li>
<li><code># /etc/init.d/usbarbitrator stop</code></li>
<li>
<p><code># fdisk -l |grep Disk</code></p>
<p>Disk /dev/disks/mpx.vmhba40:C0:T0:L0: 4022 MB, 4022337024 bytes</p>
</li>
<li>
<p><code># ls /dev/disks/mpx.vmhba40:C0:T0:L0*</code></p>
<p>/dev/disks/mpx.vmhba40:C0:T0:L0<br />
/dev/disks/mpx.vmhba40:C0:T0:L0:4</p>
</li>
<li>
<p><code># mkdir /mnt/usb</code></p>
</li>
<li>
<p><code># mount /dev/disks/mpx.vmhba40:C0:T0:L0 /mnt/usb</code></p>
<p>mount: mounting /dev/disks/mpx.vmhba40:C0:T0:L0 on /mnt/usb failed: No such file or directory</p>
</li>
<li>
<p>Also tried with /dev/disks/mpx.vmhba40:C0:T0:L0:4, with /mnt/usb/, always the same error message.</p>
</li>
<li>Then I checked <code># ls -l /vmfs/volumes</code>, but it wasn&#8217;t there either</li>
</ol>
<p>The version of ESXi is 4.1&#8230;<br />
USB Key is FAT32 as far as I know.</p>
<p>Any help or advice would be appreciated !</p>
<div class="author">Asked by <a href="http://serverfault.com/users/59404/db-ch" target="_blank">db_ch</a></div>
<h3 class="pa"><img src="http://adminsgoodies.com/imgs/answer.png" alt="Answer" /></h3>
<p>Looking at this <a href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1036340" rel="nofollow">VMware KB</a> article it looks like it should be a FAT 16 formatted USB drive</p>
<blockquote>
<p>The USB key or disk device media is formatted with a FAT16 partition<br />
  and is of maximum size 2GB</p>
</blockquote>
<p>Update:<br />
Looking at this <a href="http://www.virtuallyghetto.com/2012/03/how-to-access-usb-storage-in-esxi-shell.html" rel="nofollow">blog post</a> the drive would need to be FAT16, Which would make sense to me as VMware made ESXi as small footprint they can which would mean not including unneeded things in the kernel such as file system drivers.</p>
<div class="author">Answered by <a href="http://serverfault.com/users/146850/epaphus" target="_blank">Epaphus</a></div>
<p class="ref-link">Check <a href="http://serverfault.com/questions/461435/how-to-mount-usb-on-esxi-4-1" target="_blank">more discussion</a> of this question.</p>
]]></content:encoded>
			<wfw:commentRss>http://adminsgoodies.com/how-to-mount-usb-on-esxi-4-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure the UPS apcupsd demon to run a script?</title>
		<link>http://adminsgoodies.com/configure-the-ups-apcupsd-demon-to-run-a-script/</link>
		<comments>http://adminsgoodies.com/configure-the-ups-apcupsd-demon-to-run-a-script/#comments</comments>
		<pubDate>Tue, 01 Jan 2013 17:33:03 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[General Questions]]></category>
		<category><![CDATA[apcupsd]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[shell-scripting]]></category>
		<category><![CDATA[ups]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://adminsgoodies.com/configure-the-ups-apcupsd-demon-to-run-a-script/</guid>
		<description><![CDATA[I have a ups connected to a Linux server with a usb cable, i installed apcupsd demon and i was wondering how to instruct it to run a shell script i created when a special condition occurs? i.e. the battery is 25% percent or the time left is 10 minutes so this condition can run the script? Asked by BluesRhythm Solved by creating a custom shell script and place it under /ect/apcupsd with the exact [...]]]></description>
				<content:encoded><![CDATA[<h3 class="pq"><img src="http://adminsgoodies.com/imgs/question.png" alt="Question" /></h3>
<p>I have a ups connected to a Linux server with a usb cable, i installed apcupsd demon and i was wondering how to instruct it to run a shell script i created when a special condition occurs?<br />
i.e. the battery is 25% percent or the time left is 10 minutes so this condition can run the script?</p>
<div class="author">Asked by <a href="http://serverfault.com/users/148547/bluesrhythm" target="_blank">BluesRhythm</a></div>
<h3 class="pa"><img src="http://adminsgoodies.com/imgs/answer.png" alt="Answer" /></h3>
<p>Solved by creating a custom shell script and place it under /ect/apcupsd with the exact name of doshutdown which is triggered when a configured condition is met (either the remaining time of the battery or the remaining percentage &#8211; both based on the ups calculations) , the script contains my desired actions and if it ends with exit 0 so the shut down sequence will continue by the apcups demon after the script finishes and make the script ends with exit 99 to makes the shell script actions the only responder when the configured conditions met. </p>
<div class="author">Answered by <a href="http://serverfault.com/users/148547/bluesrhythm" target="_blank">BluesRhythm</a></div>
<p class="ref-link">Check <a href="http://serverfault.com/questions/459046/configure-the-ups-apcupsd-demon-to-run-a-script" target="_blank">more discussion</a> of this question.</p>
]]></content:encoded>
			<wfw:commentRss>http://adminsgoodies.com/configure-the-ups-apcupsd-demon-to-run-a-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>USB device goes to “Unknown device” randomly</title>
		<link>http://adminsgoodies.com/usb-device-goes-to-unknown-device-randomly/</link>
		<comments>http://adminsgoodies.com/usb-device-goes-to-unknown-device-randomly/#comments</comments>
		<pubDate>Thu, 12 Jul 2012 16:34:11 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[General Questions]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[scanner]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://adminsgoodies.com/usb-device-goes-to-unknown-device-randomly/</guid>
		<description><![CDATA[We have a kiosk that uses a bio scanner from m2sys (usb device). It scans your palm to recognize you. Every so often, maybe 1-3 times a day, the bio scanner will become an unknown device. We are unable to see any patterns or commonalities. When we unplug and plug it back in, it becomes available again. We have custom software that uses the bio scanner&#8217;s software to communicate with it. We&#8217;ve added a crap [...]]]></description>
				<content:encoded><![CDATA[<h3 class="pq"><img src="http://adminsgoodies.com/imgs/question.png" alt="Question" /></h3>
<p>We have a kiosk that uses a bio scanner from m2sys (usb device). It scans your palm to recognize you. Every so often, maybe 1-3 times a day, the bio scanner will become an unknown device. We are unable to see any patterns or commonalities. When we unplug and plug it back in, it becomes available again.</p>
<p>We have custom software that uses the bio scanner&#8217;s software to communicate with it. We&#8217;ve added a crap load of logging on everything but there doesn&#8217;t seem to be any pattern of when the thing shuts off. We have these devices deployed to multiple locations (100+) and they are all seeing the issues but we can not reproduce it here, at the main office. </p>
<p>I&#8217;ve evaluated the software and I don&#8217;t see anything. I&#8217;m thinking it&#8217;s a driver or hardware issue (but we can&#8217;t reproduce the issues here in the main office) or maybe environmental interference of some sort like from scan guns, automatic doors, microwaves or something else. </p>
<p>Any ideas would be welcome. I&#8217;m looking for possible causes of the usb device becoming unknown or ways to figure out what the cause is.</p>
<ul>
<li>no other usb devices have this issue, only the scanner</li>
<li>We&#8217;ve contacted the manufacturer and they blame our software</li>
<li>We&#8217;re getting help from Microsoft, but they haven&#8217;t found anything</li>
<li>OS is embedded XP</li>
<li><a href="http://www.m2sys.com/palm-vein-reader.htm" rel="nofollow">http://www.m2sys.com/palm-vein-reader.htm</a></li>
</ul>
<div class="author">Asked by <a href="http://serverfault.com/users/127855/ilovepapertowels" target="_blank">ILovePaperTowels</a></div>
<h3 class="pa"><img src="http://adminsgoodies.com/imgs/answer.png" alt="Answer" /></h3>
<p>This is almost always a hardware problem.  If Windows finds the device ID, it will search a table of known drivers for device IDs supported, and bind the driver to the device.  However, broken devices often fail to identify correctly.</p>
<p>It is possible that the device momentarily lost power and came up improperly, or that it is not receiving sufficient power (which can make the logic in it unstable and error-prone).</p>
<p>Try a different USB port and also try connecting it through a hub.</p>
<p>It may also be a driver bug (unlikely), or a hardware bug, or a USB hub issue (unlikely).  Personally, I would press further on the device manufacturer.</p>
<p>Also verify what the device ID is in the properties panel when it is an unknown device.  If it is right, you have a driver or OS issue.  If it is wrong or unknown, it&#8217;s almost certainly a hardware issue.</p>
<p>If you can&#8217;t replicate the issue, I&#8217;d strongly suspect power issues.  The USB hub would solve this, as it has a power insert.</p>
<div class="author">Answered by <a href="http://serverfault.com/users/126699/falcon-momot" target="_blank">Falcon Momot</a></div>
<p class="ref-link">Check <a href="http://serverfault.com/questions/406596/usb-device-goes-to-unknown-device-randomly" target="_blank">more discussion</a> of this question.</p>
]]></content:encoded>
			<wfw:commentRss>http://adminsgoodies.com/usb-device-goes-to-unknown-device-randomly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Performance issues with self-built NAS</title>
		<link>http://adminsgoodies.com/performance-issues-with-self-built-nas/</link>
		<comments>http://adminsgoodies.com/performance-issues-with-self-built-nas/#comments</comments>
		<pubDate>Thu, 03 May 2012 00:33:08 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[General Questions]]></category>
		<category><![CDATA[external-hdd]]></category>
		<category><![CDATA[gigabit-ethernet]]></category>
		<category><![CDATA[nas]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://adminsgoodies.com/performance-issues-with-self-built-nas/</guid>
		<description><![CDATA[I set up a little NAS system for my personal use. It&#8217;s an Ubuntu system running on a fan-less Atom-powered mini ATX mainboard which I extended with a usb3 pci card to get best possible performance for the whole system. There are 2 USB3 external drives which I write to using Gigabit ethernet. I get ~12 Mb/s writing to the NAS and roughly 75 when reading. (I&#8217;m good with that reading rate.) The Ubuntu is [...]]]></description>
				<content:encoded><![CDATA[<h3 class="pq"><img src="http://adminsgoodies.com/imgs/question.png" alt="Question" /></h3>
<p>I set up a little NAS system for my personal use. It&#8217;s an Ubuntu system running on a fan-less Atom-powered mini ATX mainboard which I extended with a usb3 pci card to get best possible performance for the whole system. There are 2 USB3 external drives which I write to using Gigabit ethernet.</p>
<p>I get ~12 Mb/s writing to the NAS and roughly 75 when reading. (I&#8217;m good with that reading rate.)</p>
<p>The Ubuntu is running on a usb pendrive and is rather slow in terms of write operations, but writing to the pendrive should not be involved in the process &#8211; right?</p>
<p>I set up a web server on my computer and used wget to pull a large file into /dev/null. I copied with 70Mb/s and more which is good. Writing to the usb mount instead gives me the ~13 Mb/s I already saw from the smb transfer.</p>
<p>When I connect the external drives directly to my computer I get insane writing speeds.<br />
Could you guys give me a hint as to how to find the bottleneck?</p>
<div class="author">Asked by <a href="http://serverfault.com/users/119283/niksac" target="_blank">Niksac</a></div>
<h3 class="pa"><img src="http://adminsgoodies.com/imgs/answer.png" alt="Answer" /></h3>
<p>This was totally a filesystem issue.<br />
The Linux ntfs-3g driver is just to slow to perform at reasonable speed.<br />
Bot HDDs are now formatted with EXT4 and the speed increased to more than 70mb / S.</p>
<p>I wanted ntfs to be able to quickly connect the drives to my Windows PC which now needs a plugin to handle the EXT4 Drives.</p>
<div class="author">Answered by <a href="http://serverfault.com/users/119283/niksac" target="_blank">Niksac</a></div>
<p class="ref-link">Check <a href="http://serverfault.com/questions/384513/performance-issues-with-self-built-nas" target="_blank">more discussion</a> of this question.</p>
]]></content:encoded>
			<wfw:commentRss>http://adminsgoodies.com/performance-issues-with-self-built-nas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>linux usb port monitoring</title>
		<link>http://adminsgoodies.com/linux-usb-port-monitoring/</link>
		<comments>http://adminsgoodies.com/linux-usb-port-monitoring/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 08:33:16 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[General Questions]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[port]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://adminsgoodies.com/linux-usb-port-monitoring/</guid>
		<description><![CDATA[I want a bash script to monitor USB ports of a linux server to detect when an external hard drive is plugged in and removed. When a USB external drive is plugged in or removed, a text file is generated in some temp file about usb drive specs and time. Asked by Kashif You probably already have udev running on your system, and it is monitoring connect/disconnect events. With the proper configuration it can trigger [...]]]></description>
				<content:encoded><![CDATA[<h3 class="pq"><img src="http://adminsgoodies.com/imgs/question.png" alt="Question" /></h3>
<p>I want a bash script to monitor USB ports of a linux server to detect when an external hard drive is plugged in and removed.</p>
<p>When a USB external drive is plugged in or removed, a text file is generated in some temp file about usb drive specs and time. </p>
<div class="author">Asked by <a href="http://serverfault.com/users/115079/kashif" target="_blank">Kashif</a></div>
<h3 class="pa"><img src="http://adminsgoodies.com/imgs/answer.png" alt="Answer" /></h3>
<p>You probably already have udev running on your system, and it is monitoring connect/disconnect events.  With the proper configuration it can trigger scripts to run, but it is primarily designed to create the device nodes.</p>
<p>On a Debian/Ubuntu system take a look at the existing rules in <code>/lib/udev/rules.d</code>, and /etc/udev/rules.d`.  See the <strong>Run</strong> section of the udev man page, for details about executing a task.</p>
<p>See:</p>
<ul>
<li><a href="http://linux.die.net/man/8/udev" rel="nofollow">http://linux.die.net/man/8/udev</a></li>
<li><a href="http://linux.die.net/man/8/udevadm" rel="nofollow">http://linux.die.net/man/8/udevadm</a></li>
</ul>
<div class="author">Answered by <a href="http://serverfault.com/users/984/zoredache" target="_blank">Zoredache</a></div>
<p class="ref-link">Check <a href="http://serverfault.com/questions/378675/linux-usb-port-monitoring" target="_blank">more discussion</a> of this question.</p>
]]></content:encoded>
			<wfw:commentRss>http://adminsgoodies.com/linux-usb-port-monitoring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monitor USB port without physically plugin hard drive</title>
		<link>http://adminsgoodies.com/monitor-usb-port-without-physically-plugin-hard-drive/</link>
		<comments>http://adminsgoodies.com/monitor-usb-port-without-physically-plugin-hard-drive/#comments</comments>
		<pubDate>Wed, 11 Apr 2012 22:33:38 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[General Questions]]></category>
		<category><![CDATA[ports]]></category>
		<category><![CDATA[shell-scripting]]></category>
		<category><![CDATA[usb]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://adminsgoodies.com/monitor-usb-port-without-physically-plugin-hard-drive/</guid>
		<description><![CDATA[I have to design a program to monitor USB ports of a linux server to detect when an external hard drive is plugged in and removed. Now I have one confusion in my mind about it. I have my own VPS. so if i design a program then how can i check it without physically plugging external drive as i&#8217;m working on vps. does it mean that there is no other way except that I [...]]]></description>
				<content:encoded><![CDATA[<h3 class="pq"><img src="http://adminsgoodies.com/imgs/question.png" alt="Question" /></h3>
<p>I have to design a program to monitor USB ports of a linux server to detect when an external hard drive is plugged in and removed. </p>
<p>Now I have one confusion in my mind about it. I have my own VPS. so if i design a program then how can i check it without physically plugging external drive as i&#8217;m working on vps. does it mean that there is no other way except that I install OS on my own computer at home and then plugin hard drive myself and check it? </p>
<p>actually I have to develop this program for 3 different OS thats why I&#8217;m asking. </p>
<div class="author">Asked by <a href="http://serverfault.com/users/115079/kashif" target="_blank">Kashif</a></div>
<h3 class="pa"><img src="http://adminsgoodies.com/imgs/answer.png" alt="Answer" /></h3>
<p>If I were you I would check it on a physical machine. </p>
<p>It&#8217;s not a high cost and you will be assured that it actually works properly.</p>
<div class="author">Answered by <a href="http://serverfault.com/users/86280/lucas-kauffman" target="_blank">Lucas Kauffman</a></div>
<p class="ref-link">Check <a href="http://serverfault.com/questions/378382/monitor-usb-port-without-physically-plugin-hard-drive" target="_blank">more discussion</a> of this question.</p>
]]></content:encoded>
			<wfw:commentRss>http://adminsgoodies.com/monitor-usb-port-without-physically-plugin-hard-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>USB SCSI enclosure?</title>
		<link>http://adminsgoodies.com/usb-scsi-enclosure/</link>
		<comments>http://adminsgoodies.com/usb-scsi-enclosure/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 21:50:12 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[General Questions]]></category>
		<category><![CDATA[scsi]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://adminsgoodies.com/usb-scsi-enclosure/</guid>
		<description><![CDATA[We&#8217;ve got a stack of SCSI HDDs from a very old server that recently bit the dust. There&#8217;s some chance that there is salvageable and valuable data on the drives. Are there USB enclosures akin to the SATA and IDE enclosures that are so common today that accept SCSI drives? If such a device isn&#8217;t available, what would be the best strategy for recovering the data from these drives? Asked by Josh Such cables do [...]]]></description>
				<content:encoded><![CDATA[<h3 class="pq"><img src="http://adminsgoodies.com/imgs/question.png" alt="Question" /></h3>
<p>We&#8217;ve got a stack of SCSI HDDs from a very old server that recently bit the dust.  There&#8217;s some chance that there is salvageable and valuable data on the drives.  Are there USB enclosures akin to the SATA and IDE enclosures that are so common today that accept SCSI drives?   If such a device isn&#8217;t available, what would be the best strategy for recovering the data from these drives?</p>
<div class="author">Asked by <a href="http://serverfault.com/users/108309/josh" target="_blank">Josh</a></div>
<h3 class="pa"><img src="http://adminsgoodies.com/imgs/answer.png" alt="Answer" /></h3>
<p>Such cables do exist, though I don&#8217;t know of any enclosures.</p>
<p>The problem with <em>server</em> SCSI hard-drives is that nearly all of the time they were attached to a RAID card, and that makes them not universally mountable without the family of RAID card they were originally attached to. If they&#8217;re old enough, finding the right hardware to get at the data can be quite hard (it&#8217;s useful to keep a dinosaur or two in the parts closet for just this reason). And if you don&#8217;t have the full disk-set you can be very much out of luck. </p>
<p><em>Really</em> old SCSI drives were attaching to old, crotchety RAID cards that didn&#8217;t have much in the way of forwards or backwards compatibility, so you may need the exact model of card they attached to. It really depends on what that old RAID card was, though. </p>
<div class="author">Answered by <a href="http://serverfault.com/users/3038/sysadmin1138" target="_blank">sysadmin1138</a></div>
<p class="ref-link">Check <a href="http://serverfault.com/questions/353616/usb-scsi-enclosure" target="_blank">more discussion</a> of this question.</p>
]]></content:encoded>
			<wfw:commentRss>http://adminsgoodies.com/usb-scsi-enclosure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing/hiding the option to “safely remove USB devices” via GPO and registry</title>
		<link>http://adminsgoodies.com/removinghiding-the-option-to-%e2%80%9csafely-remove-usb-devices%e2%80%9d-via-gpo-and-registry/</link>
		<comments>http://adminsgoodies.com/removinghiding-the-option-to-%e2%80%9csafely-remove-usb-devices%e2%80%9d-via-gpo-and-registry/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 17:51:10 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[General Questions]]></category>
		<category><![CDATA[group-policy]]></category>
		<category><![CDATA[registry]]></category>
		<category><![CDATA[usb]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://adminsgoodies.com/removinghiding-the-option-to-%e2%80%9csafely-remove-usb-devices%e2%80%9d-via-gpo-and-registry/</guid>
		<description><![CDATA[I ave already gone through http://serverfault.com/questions/12833/how-to-prevent-windows-from-safely-removing-hardware and it has a registry based solution for WinXP, however what I am after is: 1. a GPO based solution 2. windows 7, 2003 and 2008 as well thanks UPD: tried [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesMYDEVICE] "DisableRemovable"=dword:00000001 doesn&#8217;t work for me Asked by dyasny Tried removing though GPO and other ways, apparently the driver itself simply blovks anything the registry sets. Spoken to the driver developer, and he&#8217;s going to apply some changes. [...]]]></description>
				<content:encoded><![CDATA[<h3 class="pq"><img src="http://adminsgoodies.com/imgs/question.png" alt="Question" /></h3>
<p>I ave already gone through <a href="http://serverfault.com/questions/12833/how-to-prevent-windows-from-safely-removing-hardware">http://serverfault.com/questions/12833/how-to-prevent-windows-from-safely-removing-hardware</a> and it has a registry based solution for WinXP, however what I am after is:<br />
1. a GPO based solution<br />
2. windows 7, 2003 and 2008 as well</p>
<p>
thanks</p>
<p>
UPD: tried</p>
<pre><code>[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesMYDEVICE] 
"DisableRemovable"=dword:00000001 
</code></pre>
<p>doesn&#8217;t work for me</p>
<div class="author">Asked by <a href="http://serverfault.com/users/13543/dyasny" target="_blank">dyasny</a></div>
<h3 class="pa"><img src="http://adminsgoodies.com/imgs/answer.png" alt="Answer" /></h3>
<p>Tried removing though GPO and other ways, apparently the driver itself simply blovks anything the registry sets. Spoken to the driver developer, and he&#8217;s going to apply some changes. So there was no actual solution for my case.</p>
<div class="author">Answered by <a href="http://serverfault.com/users/13543/dyasny" target="_blank">dyasny</a></div>
<p class="ref-link">Check <a href="http://serverfault.com/questions/138339/removing-hiding-the-option-to-safely-remove-usb-devices-via-gpo-and-registry" target="_blank">more discussion</a> of this question.</p>
]]></content:encoded>
			<wfw:commentRss>http://adminsgoodies.com/removinghiding-the-option-to-%e2%80%9csafely-remove-usb-devices%e2%80%9d-via-gpo-and-registry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converter for input (composite USB) and output (2x PS2)</title>
		<link>http://adminsgoodies.com/converter-for-input-composite-usb-and-output-2x-ps2/</link>
		<comments>http://adminsgoodies.com/converter-for-input-composite-usb-and-output-2x-ps2/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 20:00:14 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[General Questions]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[kvm-switch]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://adminsgoodies.com/converter-for-input-composite-usb-and-output-2x-ps2/</guid>
		<description><![CDATA[It seems there are plenty of PS/2 to USB converters but want we need is a composite USB input and 2x PS/2 outputs (keyboard and mouse). An example application: a server without USB ports but 2x PS/2 ports. KVM cable is a VGA and composite USB (i.e. single USB cable for keyboard/mouse). Does such product even exist? The thing to watch for is that a lot of devices are designed to be &#8216;converted&#8217; so those [...]]]></description>
				<content:encoded><![CDATA[<h3 class="pq"><img src="http://adminsgoodies.com/imgs/question.png" alt="Question" /></h3>
<p>It seems there are plenty of PS/2 to USB converters but want we need is a composite USB input and 2x PS/2 outputs (keyboard and mouse).<br />
An example application: a server without USB ports but 2x PS/2 ports. KVM cable is a VGA and composite USB (i.e. single USB cable for keyboard/mouse).<br />
Does such product even exist?</p>
<h3 class="pa"><img src="http://adminsgoodies.com/imgs/answer.png" alt="Answer" /></h3>
<p>The thing to watch for is that a lot of devices are <em>designed</em> to be &#8216;converted&#8217; so those USB -&gt; PS/2 converters which come with a lot of mice nowadays are actually dumb pin converters with the actual conversion being performed by the mouse itself. In other words, they&#8217;re not converters as such and won&#8217;t work with just any device.</p>
<p>I&#8217;m afraid I&#8217;ve not seen the style of device you&#8217;re after, though &#8211; it&#8217;d require some decent electronics.</p>
<p>For example, this here:</p>
<p><a href="http://www.ebuyer.com/124082-startech-usb-to-ps-2-keyboard-adapter-plug-usb-keyboard-into-ps-2-port-gc46fmkey" rel="nofollow">http://www.ebuyer.com/124082-startech-usb-to-ps-2-keyboard-adapter-plug-usb-keyboard-into-ps-2-port-gc46fmkey</a></p>
<p>Would rely on the keyboard switching to &#8216;PS/2&#8242; mode.</p>
<p class="ref-link">Check <a href="http://serverfault.com/questions/322055/converter-for-input-composite-usb-and-output-2x-ps2" target="_blank">more discussion</a> of this question.</p>
]]></content:encoded>
			<wfw:commentRss>http://adminsgoodies.com/converter-for-input-composite-usb-and-output-2x-ps2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
