4

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
  • 475

1 Answers1

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
  • 121