Pack some tricks for your tech bag from my USB Tutorials section. From hardware tweaks to software hacks, I bet you’ll find something here.

DIY: How To Get Power From USB For Any USB Gadget Project

Written by Richard Blanchard on September 24th, 2010. Posted in USB Hacks, USB Tutorials

Here is a 7 minute video on how to wire up any USB port and suck the power right out for that USB gadget you dreamed up at 3am.  For DIY projects, USB hacking is one of the most popular forms of taking something ordinary and making something unique.  So if you’ve never tried a hack or USB tutorial, this is a great building block for yourself.  Enjoy!

Source: YouTube.

USB Laser Duck Solves Lack of Laser Ducks

Written by Richard Blanchard on August 19th, 2010. Posted in USB Tutorials

I think we can all agree there are not enough USB laser ducks out there.  To help solve this problem we came across a nice USB laser duck tutorial to take any rubber ducky and turn it into a zombie, creepy laser duck.

I don’t think Ernie will be to pleased to hear the news.

USB duck

The USB hack is fairly simple and the ideal project for a young kid looking to do something cool for the first time.  All you need is a USB cable, rubber duck and some diodes.

You’ll need to solder the diodes to the USB cable, then mount the laser eyes correctly and securely into the rubber ducky.  If the concept doesn’t make sense, you can jump over to Instructables and get the play-by-play.

I think one way to increase the coolness would be stuffing the entire USB cable into the duck body.  Either that, or take another Instructable where you can increase the laser intensity to pop balloons, burn paper and more… but do it with a bit of caution and common sense.

Video.

DIY: iPad Cork Sleeve

Written by Richard Blanchard on July 11th, 2010. Posted in USB Tutorials

Don’t dismiss this post because you think a cork sleeve would be cheezy for your $700 iPad.  It’s not.  This tutorial helps you create a well designed, cool looking, durable cork case.

Sure, cork isn’t very strong, but with added cloth and fleece the end result creates a strong sleeve and something which will protect your iPad and last for quit some time.

cork ipad sleeve

The materials are not difficult to find and should run you about $20 at most.

Bobber does an excellent job of point out the details and making sure you don’t miss the important steps for making a quality DIY iPad sleeve.  He includes a ton of well documented pictures, after all, nothing is better than a picture for projects you’ve never tried.

Full tutorial here.

How To: Duct Tape USB Holder / Wallet

Written by Richard Blanchard on July 6th, 2010. Posted in Hand Crafted USB, USB News, USB Tutorials

I’ve seen some USB holders at Staples and Office Max for over $20 dollars and that’s just for a fancy pouch to place your USB sticks while on-the-go.  What about a DIY duct tape USB holder?  You get the satisfaction of making it yourself, save yourself some cash and a hint of coolness to your storage devices.

usb duct tape holder wallet

Granted the duct tape approach is more in tune with kids, but lets give this a quick review.

In four simple steps you can do this exact project.

Step 1 – Grab some materials, that being a ruler, knife, duct tape, thumb drives and creativity.

Step 2 – Make the back plane duct tape which is very similar to making a duct tape wallet.

Step 3 – Add the pockets.  In the picture you can see the USBs are parallel with each other, I would recommend staggering them so the thickness is reduced when folding.

Step 4 – Put the finishing touches on there with some clean lines of duct tape, patterns and custom designs.

For the full tutorial and loads more pictures visit Instructables.

How To: Use Physical Lock To Enable / Disable USB Ports

Written by Richard Blanchard on July 2nd, 2010. Posted in Security, USB Tutorials

I came across this very interesting USB hack from TechOat the other day.  The concept of this modification is taking the key of a power box in your computer and turning that into the physical on/off switch for USB communication.

The premise is disassembling the wires of the USB cable and port and weaving that into the circuit of a locking switch on your PC.  I think this illustration shows it best:

USB lock on off

What I particularly like about this USB hack, is the physical requirement to have the key in order to work the USB port.  This type of security [more fun then practical] for USB devices in general is much better than a Truecrypt type solution as that only protects the device, not the system.

So what you need includes:

Small USB thumb drive
USB extension cable or USB socket and plug with cable
Locking switch DPST
Plastic box

The rest is just elbow grease to get it working, for the specific details and tutorial, jump here.

USB lock enable disable

How To: USB Steampunk a Flash Drive

Written by Richard Blanchard on July 1st, 2010. Posted in Flash Storage, Hand Crafted USB, USB Tutorials

Here at GetUSB.info we love the USB steampunk drive.  We’ve reported on at least a dozen of them over the past couple years and I’m sure we’ve missed three times that many.  Today we are tipping you off to a great tutorial on how to USB steampunk your own flash drive.

Instructables has a very detailed, 9 page tutorial on how to steampunk your own gear.  It gives you a list of material, a detailed process, good and creative guidelines along with plenty of pictures and resources.

USB steampunk flash drive

It’s my goal to actually do this over the July 4th weekend [2010] and post my result.  Lets hope for the best!

To give you an idea of the scope of project considering the following list of materials and tools.  If it fits into your abilities, then give it a shot!

How To: Remove a Virus From a USB Stick

Written by Richard Blanchard on June 25th, 2010. Posted in USB Tutorials

How To: Remove a Virus From a USB Stick

The easiest way to remove any virus from a USB stick is this: format it!  Be sure to use the Full Format function, not the quick format function.In the very unlikely event you get an error messages saying you cannot format the drive because it’s being used by another program, or for some reason you have data on there you don’t want to format off, then you can try the following.

Before I start however, let me explain the fundamental concept of what we are trying to do.

With most virus’ they make it very hard to delete the files so they can spread their infection.  To do this, they use several files and ping each other so they appear to be in constant use.  This is why you see the error “being used by another program cannot delete or format.”  So what we need to do, is stop that process.  In addition, programmers put in attributes to make it hard to delete as well.  For example they set the file attribute to Archive, or System File so we’ll need to remove those attributes too.

So lets start:  In Windows go to START > RUN.  In the field type cmd

This will open the DOS command prompt.  Here you should be at the C drive root.  If not type cd\ and click return.  You will then be at the C:\ root.

USB root

Next type the drive letter of your flash drive.  In my example that is drive letter F.  You can find the drive letter of your flash drive by going to START > MY COMPUTER > and look for the “Removable Disk“Next, type the drive letter, so for me, type f: and hit enter.

After you are in the drive letter of the flash drive, type dir/w/a

This will list all the files in your flash drive, regardless of it’s attributes of being hidden, System file or archive.

Now we should look for suspicious files such as anything listed as a .exe file or a .inf file.  Specifically anything with a autorun.inf should be deleted.  Some other popular ones are Ravmon.exe, svchost.exe, Heap41a and pagefile.pif.

If you see any of these, then lets remove all the file attributes and try and delet them.

To remove all attributes do the following:

In the DOS command prompt type attrib -r -a -s -h *.*  This command will remove all attributes for all files.

Now we can delete the files.  You do this by typing del filename [be sure to include the exentions too, for example type del autorun.inf and hit enter.

This should do the trick if you’d like to remove problem files without running the Full Format function.

USB Benchmark Software

Created for testing read / write speeds of a USB device. Free download.

Copyright ©

Copyright © 2011 by
USB Powered Gadgets and more...
All rights reserved.

Sponsor: Pocket Desktop

Pocket Desktop is a sponsored advertiser on GetUSB.info. The Pocket Desktop USB ensures your privacy while online and off. Keeping the sites you visit, the files you use and the people you chat with private and confidential, no matter what computer you use.