This is what happen..! RSS

This is the personal web page of Bernard Bolduc.

I write about stuff that I find cool. This is my own opinion, nobody else. I might write about security, tech and gadget. Take every thing with a grain of salt.

DISCLAIMER

I don't tell you to hack your employer, but you may find information that might help you. This is for educational purpose. If you can do it, you probably need to fix it. If nobody tell you how it's done, how can you fix it. This is why I may write about it.

Archive

Mar
20th
Fri
permalink

Creating a USB key boot drive

Like every good unix person, I like to run some flavor of Linux on my PC computer.  So since I got the cool Vaio P, I wanted to try the lates and greates Ubuntu release.  I didn’t want to trash my Windows partition or repartition everything to make some space for Linux.

Here comes the Ubuntu USB key.

It’s all specified on there website.  You can make your key in Linux with dd, you can use some other program on Windows.  Well I didn’t have a Linux computer, Cygwin with dd didn’t work for me and I had a shit load of problems with OS X.  Here’s how I finally made it work on OS X.

These are my notes.

  1. Plug your usb key and verify which drive it is.
    • diskutil list
  2. Unmount your usb key.
    • diskutil unmountDisk /dev/disk1
  3. Copy your image file on the key.
    • dd if=image.file of=/dev/disk1 bs=1m
  4. Eject your usb key.
    • diskutil eject /dev/disk1
  5. Here you go, you’re done.
Comments (View)
blog comments powered by Disqus