본문 바로가기
카테고리 없음

Program For Mac Like Unetbootin Reddit

by quilobamasapu 2021. 4. 16.
Posted by6 years ago
  1. Program For Mac Like Unetbootin Reddit Soccer
  2. Program For Mac Like Unetbootin Reddit Swagbucks

Like LiLi above, Unetbootin can even automatically download a Linux distro.iso file, which is handy if you feel the itch to distro hop but don’t know exactly which flavor to try. Remember that to boot from a USB on a Mac you will need to hold down the Alt/Option’ key during boot. Popular Alternatives to Rufus for Windows, Linux, Mac, Android, Android Tablet and more. Explore 25+ apps like Rufus, all suggested and ranked by the AlternativeTo user community. Rufus Alternatives and Similar Software - AlternativeTo.net. Compared to its competitors, while trying to keep the software as user-friendly and clean as possible, it also lacks the ability to perform more advanced tweaking, available in something like Rufus.

Archived

Popular Alternatives to Rufus for Windows, Linux, Mac, Android, Android Tablet and more. Explore 25+ apps like Rufus, all suggested and ranked by the AlternativeTo user community. UNetbootin is compatible with Windows, Mac, and Linux. 2 Etcher: Etcher is an image burning software that is Open-source, free, and has a modern user interface.

  1. Compared to its competitors, while trying to keep the software as user-friendly and clean as possible, it also lacks the ability to perform more advanced tweaking, available in something like Rufus.
  2. UNetbootin will download the Ubuntu ISO, convert it to an image format the Mac can use, create the boot chain needed by the installer for the Mac OS, and then copy it to the USB flash drive. UNetbootin can be downloaded from the UNetbootin github site.

EDIT 2: Semi-solution seems to be found! Not working for me, but working for others:

more detailed discussion: http://www.reddit.com/r/linux4noobs/comments/1656mk/beginner_question_making_usbbootable_for_mac_os_x/c7t3r7y

EDIT: Been trying everything people throwing at me, so it might be time to throw in the towel. Goodbye OS X, thank you for breaking my heart.....back to windows!

Hello all!

So I've followed the instructions here: http://www.ubuntu.com/download/help/create-a-usb-stick-on-mac-osx

with additional help from: http://crazedmonkey.com/blog/links/convert-iso-to-img-using-hdiutil-under-mac-os-via-installationfromusbstick-for-ubuntu.html

However, at the end of the process it says the usb drive is no longer recognizable. Once I reboot and press alt I can only boot from mac HD.

Any suggestions or advice? I've tried this a few different times looking all over forums and no success.

I'm running a 2009 Macbook pro with OS X 10.5.8

Any help is much appreciated.

Program For Mac Like Unetbootin Reddit Soccer

Edit: I'm using a 2GB old Kingston flash drive.

15 comments
Active1 year, 5 months ago
Program For Mac Like Unetbootin Reddit

what's the best way to get an ISO 'burned' to a USB stick on a Mac? Restoring using Disk Utility does not work.

The ISO is ubuntu mini.iso. It is the minimalist install ISO for installing ubuntu. It needs to be bootable on a PC. I am trying to install ubuntu on a PC that has no CD-ROM. The only other computer I have around is a macbook.

Tamara Wijsman
51k25 gold badges166 silver badges248 bronze badges
Jason MarcellJason Marcell
6382 gold badges8 silver badges13 bronze badges

8 Answers

Directly from the How to install Ubuntu on MacBook using USB Stick page(my formatting):

  1. Download the desired file
  2. Open the Terminal (in /Applications/Utilities/ or query Terminal in Spotlight)
  3. Convert the .iso file to .img using the convert option of hdiutil (e.g., hdiutil convert -format UDRW -o ~/path/to/target.img ~/path/to/ubuntu.iso)
  4. Note: OS X tends to put the .dmg ending on the output file automatically. Remove the .dmg extension as necessary, mv ~/path/to/target.img{.dmg,}
  5. Run diskutil list to get the current list of devices
  6. Insert your flash media
  7. Run diskutil list again and determine the device node assigned to your flash media (e.g. /dev/disk2)
  8. Run diskutil unmountDisk /dev/diskN (replace N with the disk number from the last command; in the previous example, N would be 2)
  9. Execute sudo dd if=/path/to/downloaded.img of=/dev/rdiskN bs=1m (replace /path/to/downloaded.img with the path where the image file is located; for example, ./ubuntu.img or ./ubuntu.dmg).
  10. Using /dev/rdisk instead of /dev/disk may be faster.
    • If you see the error dd: Invalid number '1m', you are using GNU dd. Use the same command but replace bs=1m with bs=1M.
    • If you see the error dd: /dev/diskN: Resource busy, make sure the disk is not in use. Start Disk Utility.app and unmount (don't eject) the drive.
  11. Run diskutil eject /dev/diskN and remove your flash media when the command completes
  12. Restart your Mac and hold down Alt while the Mac is restarting to choose the USB stick

Note: On newer Macs you might have to install an EFI boot manager to boot from USB.

See also: Download Ubuntu Desktop.

ScottReddit
17.2k11 gold badges46 silver badges92 bronze badges
l0b0l0b0
5,7313 gold badges26 silver badges41 bronze badges

Program For Mac Like Unetbootin Reddit Swagbucks

I had a very similar problem that none of these answered.

It's worth checking out UNetbootin. It will create a bootable USB disk on a Mac for a PC.

slhck
171k49 gold badges476 silver badges492 bronze badges
Al-kAl-k

There is no need to convert the ISO to an IMG. I wasn't willing to convert an image first. This has easier steps, outlined below.

Program for mac like unetbootin reddit swagbucks

Start by listing the current disks and volumes:

Now unmount the current volume for the disk you are about to overwrite. (X = Drive number, in my case was 1):

Now dd the iso directly to the usb (again replace X with drive number of your USB drive):

Done!

Dan PowerDan Power

This is a very old question but still benefits from updated answers.

Etcher is now the solution recommended by Ubuntu to burn iso images to a USB drive.

Etcher makes the process almost painless if you are not comfortable with the command line. It's only 3 steps and worked on the first try for me.

iafiiafi
  1. Ensure the USB Key is properly formatted (Master Boot Record, FAT32 - if necessary NTFS using NTFS-3G)
  2. You can try using the Restore feature in Disk Utility by clicking on the USB key's volume, then clicking on the Restore tab and choosing the ISO to restore onto it.
  3. If step 2 fails, you can do this manually by running ditto or cp -r; eg. ditto /Volumes/NAME_OF_MOUNTED_ISO /Volumes/NAME_OF_USB_KEY or cp -r /Volumes/NAME_OF_MOUNTED_ISO /Volumes/NAME_OF_USB_KEY to manually copy all the files (including hidden ones)
ChealionChealion
22.6k7 gold badges61 silver badges71 bronze badges

The way to do this using DiskUtility is to first format the drive using Diskutility and then copy over the files from the mounted iso to the newly formated drive using cp -R. Ex: cp -R /Volumes/mounted_iso/* /Volumes/formated_drive/

When formatting be sure to pick the ntfs file system and make the disk bootable by picking the correct option from the Options menu in the erase tab.

neeshneesh

Unetbootin is a tool that installs ISOs on USB keys, or you can use dropdown menus to select distributions right there in the tool.

Slightly easier than doing dd on the command line yourself.

Simon Sheehan
7,79612 gold badges45 silver badges69 bronze badges
RyanWilcoxRyanWilcox

I've user SuperDuper for this task before. It does the job and not much else. Like a good program should :-) The full version is not free ($30) but you get what you need for free:

You can download SuperDuper! v2.6.2 right now and back up and clone your drives for free— forever!

Per WiklanderPer Wiklander

Not the answer you're looking for? Browse other questions tagged macusb-flash-driveiso-imagebootable-media or ask your own question.

댓글