Bubble Foundry


Posts tagged with: USB

How to make a bootable USB drive in OS X
This is for my own reference, since I keep referring to the Ubuntu guide. Optional: convert an ISO to an IMG hdiutil convert image.iso -format UDRW -o image.img Find the USB stick drive name diskutil list Unmount it: diskutil unmountDisk /dev/diskN Use dd to actually write the image: sudo dd if=image.img of=/dev/diskN bs=1m Eject the […] Read more – ‘How to make a bootable USB drive in OS X’.
Installing Android Apps via USB using the Android SDK
I had some trouble installing an Android app I was testing today over the internet so I used the SDK. I’m working with a tester with a Windows machine who didn’t have the SDK, so I wrote up the steps so they could do the same. It’s essentially the same on OS X or Linux. […] Read more – ‘Installing Android Apps via USB using the Android SDK’.