Is it possible to create bootable linux on USB drive using windows command line?

4

1

we can create bootable windows 7 on usb drive(here) using windows command line, is it possible to create bootable linux using windows command line? ( i.e. not using any software)

I've entered the following commands in diskpart and copied the linuxmint files in usb falsh drive , but cannot boot from it.

enter image description here enter image description here

abdolahS

Posted 2014-06-30T09:21:23.750

Reputation: 385

Answers

1

With the command diskpart as in the link, I tried with fat32 and it works fine.

  • list disk
  • select disk 1
  • clean
  • create partition primary
  • active
  • format fs=fat32 quick
  • assign
  • exit

You can use the command

xcopy source:*.* /S/E/F destination:\

Umpa

Posted 2014-06-30T09:21:23.750

Reputation: 121

I do the command you said but cannot boot from usb!(for linnuxmint). – abdolahS – 2014-07-01T22:21:46.817

I tried in Ubuntu, can it be a problem with the BIOS boot or UEFI? – Umpa – 2014-07-02T08:50:41.810