-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
  • 74,764
  • 1
    Please describe what you mean by 'unable to create....using UNetbootin". What error are you getting? See http://askubuntu.com/questions/16277/how-to-create-a-bootable-usb-from-a-iso-file – Ron Sep 11 '15 at 06:32
  • 1
    I am unabel to create boot-able USB stick Using UnetBootin – Muhammad Siddique Sep 11 '15 at 06:53
  • 1
    Can you describe the steps you have taken while trying to create a bootable USB stick using UNetbootin? – C Schilder Sep 11 '15 at 07:22
  • 1
    The answer to your second question is simple... your USB stick is probably FAT32 formatted. – C Schilder Sep 11 '15 at 07:23
  • 1
    FAT 32 has a built-in limitation, which will deny you to copy files 4GB or larger to the USB stick. The 6GB is this one file? If the 6GB are multiple files of less than 4GB you should have no problem copying. – C Schilder Sep 11 '15 at 07:42

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
  • 19,277