-7

I am unable to create a Bootable USB for Gentoo, using Netbootin on Ubuntu.

How can I create a bootable USB using the gentoo.iso file?

Thomas Ward
  • 78,878

2 Answers2

1

To avoid your copying problem reformat your USB stick to NTFS file system which does not have this 4GB limitation.

1

GUI solution

$ sudo apt-get install usb-creator-gtk
$ usb-creator-gtk

Command Line solution

Replace sdx by the usb device:

$ sudo dd if=<file_name>.iso of=/dev/sdx
Martin Thoma
  • 20,535