Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Does not recognise any drive on Mac OS X El Capitan #46

Closed
Joris-van-der-Wel opened this issue Nov 28, 2015 · 46 comments
Closed

Does not recognise any drive on Mac OS X El Capitan #46

Joris-van-der-Wel opened this issue Nov 28, 2015 · 46 comments

Comments

@Joris-van-der-Wel
Copy link

The drive list remains empty. Mounting / Unmounting the thumbdrive (before launching unetbootin) does not make a difference.

@eldergabriel
Copy link

What filesystem is your usb thumbdrive formatted as? If it's ntfs, it will not be listed (if I recall correctly). This issue is discussed further here.

@Joris-van-der-Wel
Copy link
Author

That was indeed the issue. After formatting to fat32 I can now select the disk. Thanks

@jcrben
Copy link

jcrben commented Dec 13, 2015

@Joris-van-der-Wel you should close this

although it would be better if the system notified the user somehow rather than just loading an empty list

@jaakla
Copy link

jaakla commented Aug 11, 2016

How exactly do you you format to fat32 in El Capitan? Disk Utility provides FAT and ExFat as options, but no fat32.

@Joris-van-der-Wel
Copy link
Author

I think I just used windows to format it (when I got home)

@jaakla
Copy link

jaakla commented Aug 12, 2016

Yes, that was also the only thing what worked for me finally, after I tried many times different formatting methods with diskutil and Disk Utility app on mac.

@timrettop
Copy link

I've formatted the USB stick as FAT32 in my Windows env, however I still cannot get it to be detected in unetbootin on mac. Is there an older version that you used, or the latest?

@gkovacs
Copy link
Member

gkovacs commented Sep 2, 2016

@timrettop are you certain it's formatted as FAT32, not exFAT or so? anyhow, if you are certain it is actually formatted as FAT32, you could try the targetdrive option as described at https://sourceforge.net/p/unetbootin/wiki/commands/

so once you have determined which drive you want (run diskutil list) then do

sudo /Volumes/UNetbootin/unetbootin.app/Contents/MacOS/unetbootin targetdrive=/dev/disk2s1

(replacing /dev/disk2s1 with the USB drive)

@matfin
Copy link

matfin commented Sep 8, 2016

This is still an issue. I am using OSX El Capitan (10.11.6) and I have tried formatting my USB thumb drive using Disk Util and Windows itself as FAT32. The drive is not appearing in the list.

When attempting to run UNetbootin from the command line, the GUI launches and the same problem occurs.

@matfin
Copy link

matfin commented Sep 8, 2016

In actual fact, the following command seems to be doing something

sudo /Applications/unetbootin.app/Contents/MacOS/unetbootin targetdrive=/dev/disk2 method=diskimage isofile="~/Downloads/windows81/Win8.1_English_x64.iso" installtype=USB

What I am trying to do is create a bootable usb so I can install Windows 8.1 on my Intel NUC 6i5YSK.

... and it seems UNetbootin has hung having extracted 506 of 2096 files.

@tomibgt
Copy link

tomibgt commented Sep 15, 2016

This Yosemite Disk Utility patched to work on El Capitan helped with me: http://www.insanelymac.com/forum/files/file/480-disk-utility-patched-v2

Apparently the El Capitan Disk Utility FAT-formatting does something Unetbootin doesn't like.

@matfin
Copy link

matfin commented Sep 15, 2016

I was able to get the USB installer disk made but when I booted into it, I couldn't get the installer to work. There could be hundreds of reasons why this was happening. What I ended up doing was using bootcamp assistant on an older iMac, where you can create a USB install from a Windows 8.1 iso and it worked perfectly.

@Mahdisadjadi
Copy link

Mahdisadjadi commented Sep 20, 2016

I figured out if you rename the USB stick to FAT32 and format via Disk Utility to MS-DOS (FAT) with GUID scheme, the name shows up in unetbootin.

@randomInteger
Copy link

Mahdisadjadi Dude you just helped me out. I was really frustrated, trying to figure out why unetbootin would not recognize a USB drive I am formatting to use for an ESX5.0 install (testing legacy VMs..ugh) and your steps were the ONLY ones that worked, after trying dozens.

@crw
Copy link

crw commented Sep 20, 2016

@Mahdisadjadi holy smokes, that worked for me too. wth? Thanks for the tip!

@crw
Copy link

crw commented Sep 21, 2016

I would argue this issue should be re-opened. I can confirm that formatting as FAT32 on Windows 10 did NOT make the drive recognizable. Only following the instructions in #46 (comment) solved the issue.

@randomInteger
Copy link

New issue filed @crw.

@michaelqyee
Copy link
Contributor

@crw , @Mahdisadjadi , do you guys still have the USB drives you used for this? Can you confirm that if they are NOT named with "FAT" or "Microsoft" in the drive name, they do not appear on the drop down menu for unetbootin?

If they do not appear, could you please run and paste the results of the commands "diskutil list" and "system_profiler SPStorageDataType" in Terminal? I'm trying to figure out if there is an alternative to the way that unetbootin currently determines whether a drive is FAT formatted on Macs that would address your issues.

@crw
Copy link

crw commented Sep 24, 2016

Confirmed that renaming the same USB to "FUBAR" made it not show up in the list. I renamed the drive FAT32 before running the following commands. I hope this helps!

$ diskutil list
[...]
/dev/disk5 (external, physical):
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:                            FAT32                  *4.0 GB     disk5

crw@monkey:~ $ system_profiler SPStorageDataType
Storage:
    [...]
    FAT32:

      Available: 3.33 GB (3,325,419,520 bytes)
      Capacity: 4.04 GB (4,035,407,872 bytes)
      Mount Point: /Volumes/FAT32
      File System: MS-DOS FAT32
      Writable: Yes
      Ignore Ownership: Yes
      BSD Name: disk5
      Volume UUID: D09B2B6A-617E-33CD-AF2C-E8B406EE6360
      Physical Drive:
          Device Name: USB Flash Drive
          Media Name: USB 2.0 USB Flash Drive Media
          Protocol: USB
          Internal: No
          Partition Map Type: Unknown

@michaelqyee
Copy link
Contributor

This is helpful. I think I coded up a fix, but I'm having trouble with the build process of the app, so I'm going to need to do some more digging - may take a few days. Once I do get it built, I may ask you to test it out (since I can't reproduce the issue myself and will only be able to test a happy path situation).

@gkovacs
Copy link
Member

gkovacs commented Sep 25, 2016

@michaelqyee what issue are you having with the build process? do the instructions at https://sourceforge.net/p/unetbootin/wiki/compile/ not work? (I updated the OSX build section with the version of Qt I use for static builds, as qt4's default installer doesn't work on some newer versions of OSX)

@michaelqyee
Copy link
Contributor

@gkovacs I'll preface this by saying I have never built a Mac application before, so some of this experience is conflated with my own inexperience.

I was following the Statically Linked Version instructions for Mac OSX on the link that you provided. Because I'm running on El Capitan, I wasn't able to install qt-mac-carbon-opensource-4.7.2.dmg, so I instead used Homebrew (brew install qt4). I modified the qmake-mac and build-mac scripts to reference the qt libraries installed by Homebrew, and when I ran the ./build-mac script, it threw warnings about creating objects that had conflicting versions (10.5 vs 10.7). I then modified g++-macx.conf to change the -mmacosx-version-min flag to 10.7 instead of 10.5, which eliminated those warnings.

After that, the build ran successfully without errors, but the application created was recognized as incomplete. I think this is because the actual executable isn't created for me:
screen shot 2016-09-25 at 9 06 48 am

This is the build output (after increasing the verbosity of g++):

Michael-Yees-MacBook-Air:unetbootin michaelyee$ ./build-mac 
Updating 'unetbootin.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_am.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_ar.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_ast.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_bg.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_bn.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_pt_BR.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_cs.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_ur.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_da.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_es.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_et.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_el.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_eo.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_eu.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_fi.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_fo.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_gl.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_hr.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_ru.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_ro.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_tr.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_de.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_he.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_hu.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_id.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_it.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_lt.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_lv.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_zh_CN.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_zh_TW.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_fr.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_ja.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_vi.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_uk.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_be.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_pt.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_ms.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_ml.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_nan.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_nb.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_nl.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_nn.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_ca.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_sk.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_sl.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_sr.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_sv.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_sw.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_pl.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_fa.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating 'unetbootin_si.ts'...
    Found 559 source text(s) (0 new and 559 already existing)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin.qm'...
    Generated 0 translation(s) (0 finished and 0 unfinished)
    Ignored 559 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_am.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_ar.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_ast.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_bg.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_bn.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_pt_BR.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_cs.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_ur.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_da.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_es.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_et.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_el.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_eo.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_eu.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_fi.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_fo.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_gl.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_hr.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_ru.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_ro.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_tr.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_de.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_he.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_hu.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_id.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_it.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_lt.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_lv.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_zh_CN.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_zh_TW.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_fr.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_ja.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_vi.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_uk.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_be.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_pt.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_ms.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_ml.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_nan.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_nb.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_nl.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_nn.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_ca.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_sk.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_sl.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_sr.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_sv.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_sw.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_pl.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_fa.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
Updating '/Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin_si.qm'...
    Generated 174 translation(s) (174 finished and 0 unfinished)
    Ignored 385 untranslated source text(s)
g++ -c -v -pipe -O2 -arch x86_64 -Xarch_x86_64 -mmacosx-version-min=10.7 -Wall -W -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/local/Cellar/qt/4.8.7_2/mkspecs/macx-g++ -I. -I/usr/local/Cellar/qt/4.8.7_2/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/lib/QtNetwork.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/lib/QtNetwork.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/lib/QtGui.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/lib/QtGui.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/include -I. -I. -I. -F/usr/local/Cellar/qt/4.8.7_2/lib -o main.o main.cpp
Apple LLVM version 7.3.0 (clang-703.0.31)
Target: x86_64-apple-darwin15.6.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
 "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.7.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -disable-free -disable-llvm-verifier -main-file-name main.cpp -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -masm-verbose -munwind-tables -target-cpu core2 -target-linker-version 264.3.102 -v -dwarf-column-info -coverage-file /Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/main.o -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -D QT_NO_DEBUG -D QT_GUI_LIB -D QT_NETWORK_LIB -D QT_CORE_LIB -D QT_SHARED -I /usr/local/Cellar/qt/4.8.7_2/mkspecs/macx-g++ -I . -I /usr/local/Cellar/qt/4.8.7_2/lib/QtCore.framework/Versions/4/Headers -I /usr/local/Cellar/qt/4.8.7_2/lib/QtCore.framework/Versions/4/Headers -I /usr/local/Cellar/qt/4.8.7_2/lib/QtNetwork.framework/Versions/4/Headers -I /usr/local/Cellar/qt/4.8.7_2/lib/QtNetwork.framework/Versions/4/Headers -I /usr/local/Cellar/qt/4.8.7_2/lib/QtGui.framework/Versions/4/Headers -I /usr/local/Cellar/qt/4.8.7_2/lib/QtGui.framework/Versions/4/Headers -I /usr/local/Cellar/qt/4.8.7_2/include -I . -I . -I . -F/usr/local/Cellar/qt/4.8.7_2/lib -O2 -Wall -W -fdeprecated-macro -fdebug-compilation-dir /Users/michaelyee/Documents/Development/unetbootin/src/unetbootin -ferror-limit 19 -fmessage-length 147 -stack-protector 1 -fblocks -fobjc-runtime=macosx-10.7.0 -fencode-extended-block-signature -fcxx-exceptions -fexceptions -fmax-type-align=16 -fdiagnostics-show-option -fcolor-diagnostics -vectorize-loops -vectorize-slp -o main.o -x c++ main.cpp
clang -cc1 version 7.3.0 (clang-703.0.31) default target x86_64-apple-darwin15.6.0
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.2.1/i686-apple-darwin10/x86_64"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.0.0"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.0.0/i686-apple-darwin8/"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.0.0/backward"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/local/include"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/Library/Frameworks"
ignoring duplicate directory "/usr/local/Cellar/qt/4.8.7_2/lib/QtCore.framework/Versions/4/Headers"
ignoring duplicate directory "/usr/local/Cellar/qt/4.8.7_2/lib/QtNetwork.framework/Versions/4/Headers"
ignoring duplicate directory "/usr/local/Cellar/qt/4.8.7_2/lib/QtGui.framework/Versions/4/Headers"
ignoring duplicate directory "."
ignoring duplicate directory "."
ignoring duplicate directory "."
#include "..." search starts here:
#include <...> search starts here:
 /usr/local/Cellar/qt/4.8.7_2/mkspecs/macx-g++
 .
 /usr/local/Cellar/qt/4.8.7_2/lib/QtCore.framework/Versions/4/Headers
 /usr/local/Cellar/qt/4.8.7_2/lib/QtNetwork.framework/Versions/4/Headers
 /usr/local/Cellar/qt/4.8.7_2/lib/QtGui.framework/Versions/4/Headers
 /usr/local/Cellar/qt/4.8.7_2/include
 /usr/local/Cellar/qt/4.8.7_2/lib (framework directory)
 /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.2.1
 /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.2.1/backward
 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/include
 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
 /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include
 /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks (framework directory)
End of search list.
g++ -c -v -pipe -O2 -arch x86_64 -Xarch_x86_64 -mmacosx-version-min=10.7 -Wall -W -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/local/Cellar/qt/4.8.7_2/mkspecs/macx-g++ -I. -I/usr/local/Cellar/qt/4.8.7_2/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/lib/QtNetwork.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/lib/QtNetwork.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/lib/QtGui.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/lib/QtGui.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/include -I. -I. -I. -F/usr/local/Cellar/qt/4.8.7_2/lib -o unetbootin.o unetbootin.cpp
Apple LLVM version 7.3.0 (clang-703.0.31)
Target: x86_64-apple-darwin15.6.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
 "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.7.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -disable-free -disable-llvm-verifier -main-file-name unetbootin.cpp -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -masm-verbose -munwind-tables -target-cpu core2 -target-linker-version 264.3.102 -v -dwarf-column-info -coverage-file /Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/unetbootin.o -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -D QT_NO_DEBUG -D QT_GUI_LIB -D QT_NETWORK_LIB -D QT_CORE_LIB -D QT_SHARED -I /usr/local/Cellar/qt/4.8.7_2/mkspecs/macx-g++ -I . -I /usr/local/Cellar/qt/4.8.7_2/lib/QtCore.framework/Versions/4/Headers -I /usr/local/Cellar/qt/4.8.7_2/lib/QtCore.framework/Versions/4/Headers -I /usr/local/Cellar/qt/4.8.7_2/lib/QtNetwork.framework/Versions/4/Headers -I /usr/local/Cellar/qt/4.8.7_2/lib/QtNetwork.framework/Versions/4/Headers -I /usr/local/Cellar/qt/4.8.7_2/lib/QtGui.framework/Versions/4/Headers -I /usr/local/Cellar/qt/4.8.7_2/lib/QtGui.framework/Versions/4/Headers -I /usr/local/Cellar/qt/4.8.7_2/include -I . -I . -I . -F/usr/local/Cellar/qt/4.8.7_2/lib -O2 -Wall -W -fdeprecated-macro -fdebug-compilation-dir /Users/michaelyee/Documents/Development/unetbootin/src/unetbootin -ferror-limit 19 -fmessage-length 147 -stack-protector 1 -fblocks -fobjc-runtime=macosx-10.7.0 -fencode-extended-block-signature -fcxx-exceptions -fexceptions -fmax-type-align=16 -fdiagnostics-show-option -fcolor-diagnostics -vectorize-loops -vectorize-slp -o unetbootin.o -x c++ unetbootin.cpp
clang -cc1 version 7.3.0 (clang-703.0.31) default target x86_64-apple-darwin15.6.0
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.2.1/i686-apple-darwin10/x86_64"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.0.0"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.0.0/i686-apple-darwin8/"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.0.0/backward"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/local/include"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/Library/Frameworks"
ignoring duplicate directory "/usr/local/Cellar/qt/4.8.7_2/lib/QtCore.framework/Versions/4/Headers"
ignoring duplicate directory "/usr/local/Cellar/qt/4.8.7_2/lib/QtNetwork.framework/Versions/4/Headers"
ignoring duplicate directory "/usr/local/Cellar/qt/4.8.7_2/lib/QtGui.framework/Versions/4/Headers"
ignoring duplicate directory "."
ignoring duplicate directory "."
ignoring duplicate directory "."
#include "..." search starts here:
#include <...> search starts here:
 /usr/local/Cellar/qt/4.8.7_2/mkspecs/macx-g++
 .
 /usr/local/Cellar/qt/4.8.7_2/lib/QtCore.framework/Versions/4/Headers
 /usr/local/Cellar/qt/4.8.7_2/lib/QtNetwork.framework/Versions/4/Headers
 /usr/local/Cellar/qt/4.8.7_2/lib/QtGui.framework/Versions/4/Headers
 /usr/local/Cellar/qt/4.8.7_2/include
 /usr/local/Cellar/qt/4.8.7_2/lib (framework directory)
 /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.2.1
 /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.2.1/backward
 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/include
 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
 /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include
 /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks (framework directory)
End of search list.
unetbootin.cpp:684:56: warning: unused parameter 'typeselectIndex' [-Wunused-parameter]
void unetbootin::on_typeselect_currentIndexChanged(int typeselectIndex)
                                                       ^
unetbootin.cpp:2985:38: warning: unused parameter 'voldrive' [-Wunused-parameter]
QString unetbootin::getlabel(QString voldrive, QString diskutilinfo)
                                     ^
unetbootin.cpp:4031:41: warning: unused parameter 'text' [-Wunused-parameter]
void unetbootin::logText(const QString &text)
                                        ^



3 warnings generated.
/usr/local/Cellar/qt/4.8.7_2/bin/moc -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/local/Cellar/qt/4.8.7_2/mkspecs/macx-g++ -I. -I/usr/local/Cellar/qt/4.8.7_2/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/lib/QtNetwork.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/lib/QtNetwork.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/lib/QtGui.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/lib/QtGui.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/include -I. -I. -I. -F/usr/local/Cellar/qt/4.8.7_2/lib -D__APPLE__ -D__GNUC__ unetbootin.h -o moc_unetbootin.cpp
g++ -c -v -pipe -O2 -arch x86_64 -Xarch_x86_64 -mmacosx-version-min=10.7 -Wall -W -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/local/Cellar/qt/4.8.7_2/mkspecs/macx-g++ -I. -I/usr/local/Cellar/qt/4.8.7_2/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/lib/QtNetwork.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/lib/QtNetwork.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/lib/QtGui.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/lib/QtGui.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.7_2/include -I. -I. -I. -F/usr/local/Cellar/qt/4.8.7_2/lib -o moc_unetbootin.o moc_unetbootin.cpp
Apple LLVM version 7.3.0 (clang-703.0.31)
Target: x86_64-apple-darwin15.6.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
 "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.7.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -disable-free -disable-llvm-verifier -main-file-name moc_unetbootin.cpp -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -masm-verbose -munwind-tables -target-cpu core2 -target-linker-version 264.3.102 -v -dwarf-column-info -coverage-file /Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/moc_unetbootin.o -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -D QT_NO_DEBUG -D QT_GUI_LIB -D QT_NETWORK_LIB -D QT_CORE_LIB -D QT_SHARED -I /usr/local/Cellar/qt/4.8.7_2/mkspecs/macx-g++ -I . -I /usr/local/Cellar/qt/4.8.7_2/lib/QtCore.framework/Versions/4/Headers -I /usr/local/Cellar/qt/4.8.7_2/lib/QtCore.framework/Versions/4/Headers -I /usr/local/Cellar/qt/4.8.7_2/lib/QtNetwork.framework/Versions/4/Headers -I /usr/local/Cellar/qt/4.8.7_2/lib/QtNetwork.framework/Versions/4/Headers -I /usr/local/Cellar/qt/4.8.7_2/lib/QtGui.framework/Versions/4/Headers -I /usr/local/Cellar/qt/4.8.7_2/lib/QtGui.framework/Versions/4/Headers -I /usr/local/Cellar/qt/4.8.7_2/include -I . -I . -I . -F/usr/local/Cellar/qt/4.8.7_2/lib -O2 -Wall -W -fdeprecated-macro -fdebug-compilation-dir /Users/michaelyee/Documents/Development/unetbootin/src/unetbootin -ferror-limit 19 -fmessage-length 147 -stack-protector 1 -fblocks -fobjc-runtime=macosx-10.7.0 -fencode-extended-block-signature -fcxx-exceptions -fexceptions -fmax-type-align=16 -fdiagnostics-show-option -fcolor-diagnostics -vectorize-loops -vectorize-slp -o moc_unetbootin.o -x c++ moc_unetbootin.cpp
clang -cc1 version 7.3.0 (clang-703.0.31) default target x86_64-apple-darwin15.6.0
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.2.1/i686-apple-darwin10/x86_64"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.0.0"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.0.0/i686-apple-darwin8/"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.0.0/backward"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/local/include"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/Library/Frameworks"
ignoring duplicate directory "/usr/local/Cellar/qt/4.8.7_2/lib/QtCore.framework/Versions/4/Headers"
ignoring duplicate directory "/usr/local/Cellar/qt/4.8.7_2/lib/QtNetwork.framework/Versions/4/Headers"
ignoring duplicate directory "/usr/local/Cellar/qt/4.8.7_2/lib/QtGui.framework/Versions/4/Headers"
ignoring duplicate directory "."
ignoring duplicate directory "."
ignoring duplicate directory "."
#include "..." search starts here:
#include <...> search starts here:
 /usr/local/Cellar/qt/4.8.7_2/mkspecs/macx-g++
 .
 /usr/local/Cellar/qt/4.8.7_2/lib/QtCore.framework/Versions/4/Headers
 /usr/local/Cellar/qt/4.8.7_2/lib/QtNetwork.framework/Versions/4/Headers
 /usr/local/Cellar/qt/4.8.7_2/lib/QtGui.framework/Versions/4/Headers
 /usr/local/Cellar/qt/4.8.7_2/include
 /usr/local/Cellar/qt/4.8.7_2/lib (framework directory)
 /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.2.1
 /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.2.1/backward
 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/include
 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
 /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include
 /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks (framework directory)
End of search list.
g++ -headerpad_max_install_names -arch x86_64 -all_load -Xarch_x86_64 -mmacosx-version-min=10.7 -o unetbootin.app/Contents/MacOS/unetbootin main.o unetbootin.o moc_unetbootin.o   -F/usr/local/Cellar/qt/4.8.7_2/lib -L/usr/local/Cellar/qt/4.8.7_2/lib -framework QtGui -L/usr/local/opt/openssl/lib -L/usr/local/Cellar/qt/4.8.7_2/lib -F/usr/local/Cellar/qt/4.8.7_2/lib -framework QtCore -framework QtNetwork 
...............................................................................................................
created: /Users/michaelyee/Documents/Development/unetbootin/src/unetbootin/release/unetbootin-mac-628.dmg

I will go ahead and revert everything except for my changes and try again with the version of Qt you provided, but please let me know if you see anything awry with my approach.

@gkovacs
Copy link
Member

gkovacs commented Sep 25, 2016

@michaelqyee yeah don't use homebrew's version of qt4 because the builds it creates aren't statically linked (ie, they won't run on systems that don't have Qt4 installed). I believe I actually use the g++ from XCode's Command Line Tools not the one installed by homebrew, I suspect that might be the issue. I updated the build instructions again on the wiki, hopefully those instructions should work?

@michaelqyee
Copy link
Contributor

@gkovacs sorry for the delay. I had some issues with the qt archive you provided; my computer was complaining about the object files not being compiled for the correct processor type (i386 vs x86_64), so I deleted all of the object files and recompiled. During the make step, though, I realized that the Makefiles for the WebKit stuff never got remade.

Do you have any tips on how to regenerate those Makefiles (e.g., qt4-mac/src/3rdparty/webkit/Source/Makefile.WebKit)? At first glance, it doesn't seem to be connected to the configure script in the qt4-mac directory, but I could be wrong.

@mp19uy
Copy link

mp19uy commented Oct 29, 2016

I formated my usb stick with Disk Utility to MS-DOS (FAT) with GUID scheme, BUT I didn't changed the name (it was set to "Unknown").
Then I opened unetbootin and it was still unrecongized.
The I read @Mahdisadjadi solution (which only differed from my previous attempt in changing the name of the stick to "FAT32"), I tried that and it worked. I'm perplexed that the name of the usb stick matters to unetbootin to recognize the stick. What's going on there?

@michaelqyee
Copy link
Contributor

@gkovacs I'm still having trouble with the build process - I'm unable to create the qt4 artifacts. I could just submit the code changes I have without testing, but that seems irresponsible. Are you opposed to changing to qt5? I can try it out to see if it helps; the process seems to be fairly straightforward: https://wiki.qt.io/Transition_from_Qt_4.x_to_Qt5.

@andreasbossard
Copy link

@gkovacs This is still an issue. You need to change the name of the USB stick to "FAT32", then it will be recognized by unetbootin. This issue should not be marked as "closed".

@sjgadsby
Copy link

sjgadsby commented Jan 4, 2017

This issue still affects the official build, unetbootin-mac-625.dmg, available from the UNetbootin web site homepage. On OS X 10.11.6 (El Capitan) UNetbootin 625 did not recognize my FAT32, GUID scheme flash drive until I renamed that drive "FAT32".
Until this bug is squashed, adding the simple workaround to the FAQ "My USB stick/hard drive isn't detected, what should I do?" would help Mac users.

@AlbertVeli
Copy link

Works for me, tried it with MBR (probably works with guid too according to comments above) partitions and MS-DOS (FAT) for the USB device from the OS X Disk Utility, this formats the partition as FAT32. Also, the partition name has to be in upper case. After that the USB device shows up in unetbootin for OS X (Sierra, 10.12.2). Tested with unetbootin-mac-625.dmg.

@skylarmb
Copy link

skylarmb commented Feb 4, 2017

Worth noting that ExFAT is detected fine as long as I use GUID partition map.

@intcreator
Copy link

I reformatted my drive with Disk Utility (MS-DOS (FAT) with GUID scheme) and for good measure renamed the disk "FAT32", but I had to restart UNetbootin in order for the disk to be recognized.

@yantaq
Copy link

yantaq commented Apr 12, 2017

renaming the disk "FAT32" worked for me as well.

1 similar comment
@mdonnellyli
Copy link

renaming the disk "FAT32" worked for me as well.

@prashcr
Copy link

prashcr commented Apr 23, 2017

Following @Mahdisadjadi's advice fails with error message "could not open device" and corrupts my USB on macOS Sierra 10.12.4.

Formatting to exFAT with GUID scheme and all-caps name worked for me

@pateketrueke
Copy link

Yeah, "FAT32" does the trick! 🎉

@UtsavSingh
Copy link

I was having trouble with same thing.Even though I formatted so many times, problem still persisted. Then I tried complete Format on my USB in FAT32 mode (DONOT QUICK FORMAT). After that everything worked perfectly but yeah @Mahdisadjadi`s renaming does work too.

@marekmurawski
Copy link

I've made countless tries based on the suggestions above with microSD card inserted into Mac's internal card reader. No success at all.

After using External USB card reader unetbootin 647 finally found the drive.

@qwertychouskie
Copy link
Contributor

Internal card readers show themselves differently than external ones. Internal ones actually present themselves as card readers (/dev/mmcblkX), while external ones present themselves as USB drives (/dev/sdX). This should probably be added to the FAQ.

@faultysugar
Copy link

I created an internal partition on my macbook 2016 with FAT32 format, but it was not recognized in unetbootin, even it was named to "FAT32". How can I get it to work?

@gkovacs
Copy link
Member

gkovacs commented May 8, 2017

@supersugerlo you can use the targetdrive option if you know which drive letter it is https://github.com/unetbootin/unetbootin/wiki/commands#targetdrive it doesn't show the internal drives intentionally in the dropdown menu to ensure that people don't accidentally nuke their bootcamp installs

@Eugenius73094
Copy link

I've tried out all of above suggestions here to recognise the USB in Unetbootin (inc. naming USB "FAT32", GUID scheme and erasing as MS-DOS FAT) in my mac OS 10.10.5 but none work. As a non technical user I'm confused by https://github.com/unetbootin/unetbootin/wiki/commands#targetdrive
Do I paste this into Terminal and then specify the correct drive I identified via diskutil list? As a non tech person would appreciate detailed instructions as none of the suggestions have worked.

@Eugenius73094
Copy link

I also tried doing this on Windows10 machine but couldn't get it to work there either.

@kperdomo
Copy link

kperdomo commented Jun 26, 2017

As @Eugenius73094 said, in OSx 10.10.5 it won't detect the drive even if the stick is renamed to FAT32. What did work for me though was launching unetbootin from the command line and specifying the target drive by parameter, something like this:

/Users/kperdomo/Desktop/unetbootin.app/Contents/MacOS/unetbootin installtype=USB targetdrive=/dev/disk2s2

where /dev/disk2s2 is the stick's device name

@idoan
Copy link

idoan commented Jul 8, 2017

I am using OSx 10.11.6, El Capitan, and only @kperdomo's command line parameter passing worked for me, none of the others did.

@michaelqyee
Copy link
Contributor

I think if you name your drive "External FAT", you'll be able to see your external drive. I submitted a pull request that I believe will fix this here: 5759172

@MatthewScheuerman
Copy link

Using "External", with ExFAT has been the only method I have been able to get working.

External

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests