<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Clone bootable USB stick in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/clone-bootable-usb-stick/m-p/4753869#M59570</link>
    <description>If the USB sticks (source and new) are of the same size simply dd the whole disk:&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/sdc of=/dev/sdd&lt;BR /&gt;&lt;BR /&gt;If they're different sized, your dd should still generally work but the bigger USB stick will waste space.&lt;BR /&gt;</description>
    <pubDate>Thu, 17 Feb 2011 16:23:03 GMT</pubDate>
    <dc:creator>Alzhy</dc:creator>
    <dc:date>2011-02-17T16:23:03Z</dc:date>
    <item>
      <title>Clone bootable USB stick</title>
      <link>https://community.hpe.com/t5/operating-system-linux/clone-bootable-usb-stick/m-p/4753867#M59568</link>
      <description>Hello&lt;BR /&gt;&lt;BR /&gt;I'd like to create an image of bootable USB stick and setup on other USB sticks?&lt;BR /&gt;There are 2 partitions on this USB stick and one it's bootable.</description>
      <pubDate>Thu, 17 Feb 2011 01:13:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/clone-bootable-usb-stick/m-p/4753867#M59568</guid>
      <dc:creator>'chris'</dc:creator>
      <dc:date>2011-02-17T01:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: Clone bootable USB stick</title>
      <link>https://community.hpe.com/t5/operating-system-linux/clone-bootable-usb-stick/m-p/4753868#M59569</link>
      <description>Hi chris&lt;BR /&gt;&lt;BR /&gt;Never tried that, but I suppose you could create same partition on the second USB  (same or bigger partition size) using fdisk, and do not forget to mark 1st partition on the target USB as bootable.&lt;BR /&gt;&lt;BR /&gt;Then&lt;BR /&gt;&lt;BR /&gt;Suppose your first partition on the original usb is sdb1 and the second is sdb2&lt;BR /&gt;and&lt;BR /&gt;&lt;BR /&gt;The partition on the copy USB is sdc1 and scd2&lt;BR /&gt;&lt;BR /&gt;proceed as follows &lt;BR /&gt;&lt;BR /&gt;# dd if=/dev/sdb1 of=/dev/sdc1 &lt;BR /&gt;# dd if=/dev/sdb2 of=/dev/sdc2&lt;BR /&gt;&lt;BR /&gt;Also if you do not have a free USB slot for the second USB you could use a files instead of partitions in an additional step... like&lt;BR /&gt;&lt;BR /&gt;# dd if=/dev/sdb1 of='my_USB_partition1'&lt;BR /&gt;# dd if=/dev/sdb2 of='my_USB_partition2'&lt;BR /&gt;followed by&lt;BR /&gt;# dd if='my_USB_partition1' of=/dev/sdc1&lt;BR /&gt;# dd if='my_USB_partition2' of=/dev/sdc2&lt;BR /&gt;&lt;BR /&gt;As stated above have not tried this do not see why this should not work !&lt;BR /&gt;&lt;BR /&gt;enjoy, life.&lt;BR /&gt;&lt;BR /&gt;Jean-Pierre Huc&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 17 Feb 2011 09:23:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/clone-bootable-usb-stick/m-p/4753868#M59569</guid>
      <dc:creator>Huc_1</dc:creator>
      <dc:date>2011-02-17T09:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: Clone bootable USB stick</title>
      <link>https://community.hpe.com/t5/operating-system-linux/clone-bootable-usb-stick/m-p/4753869#M59570</link>
      <description>If the USB sticks (source and new) are of the same size simply dd the whole disk:&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/sdc of=/dev/sdd&lt;BR /&gt;&lt;BR /&gt;If they're different sized, your dd should still generally work but the bigger USB stick will waste space.&lt;BR /&gt;</description>
      <pubDate>Thu, 17 Feb 2011 16:23:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/clone-bootable-usb-stick/m-p/4753869#M59570</guid>
      <dc:creator>Alzhy</dc:creator>
      <dc:date>2011-02-17T16:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: Clone bootable USB stick</title>
      <link>https://community.hpe.com/t5/operating-system-linux/clone-bootable-usb-stick/m-p/4753870#M59571</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Both solutions by the other posters are right. I am adding some info here. You may try using cfdisk or gparted instead fdisk for partitioning. fdisk is slightly unfriendly IMO.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;--Lucifer</description>
      <pubDate>Thu, 17 Feb 2011 18:49:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/clone-bootable-usb-stick/m-p/4753870#M59571</guid>
      <dc:creator>Lucifer Megacruel</dc:creator>
      <dc:date>2011-02-17T18:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: Clone bootable USB stick</title>
      <link>https://community.hpe.com/t5/operating-system-linux/clone-bootable-usb-stick/m-p/4753871#M59572</link>
      <description>&lt;!--!*#--&gt;Hello Chris,&lt;BR /&gt;&lt;BR /&gt;To create a pure clone of two ext3 formatted disks, I used as already mentionned&lt;BR /&gt;$ dd if=/dev/sda of=/dec/sdb bs=4096&lt;BR /&gt;&lt;BR /&gt;However I had to change the partition labels of the cloned device with &lt;BR /&gt;$ e2label /dev/sdbx &lt;LABEL&gt;&lt;BR /&gt;and the UUID using&lt;BR /&gt;$ uuidgen to generate an UUID&lt;BR /&gt;and&lt;BR /&gt;$ tune2fs /dev/sdbx -U &lt;THE uuidgen="" uuid=""&gt;&lt;BR /&gt;so that the two disks could co-exist on the same computer.&lt;BR /&gt;&lt;BR /&gt;In the hope this can help you.&lt;BR /&gt;Philippe&lt;BR /&gt;&lt;/THE&gt;&lt;/LABEL&gt;</description>
      <pubDate>Fri, 18 Feb 2011 07:05:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/clone-bootable-usb-stick/m-p/4753871#M59572</guid>
      <dc:creator>Ph Vouters</dc:creator>
      <dc:date>2011-02-18T07:05:52Z</dc:date>
    </item>
  </channel>
</rss>

