Showing posts with label hd. Show all posts


Disk Maker is an application programmed with AppleScript that you can use with Mac OS X 10.6, 10.7 and OS X 10.8 to burn a DVD or build a bootable drive from Mac OS X Lion or OS X Mountain Lion Installation program. As soon as you launch the application, it tries to find the OS X Install program with Spotlight. Then, it proposes to build a DVD or create a bootable install disk.
To burn the DVD, you’ll need a SuperDrive and a writable DVD (single layer, 4,7 GB for Lion, or dual-Layer, 8,5 DVD-R). To build a bootable disk, you’ll need an 8 GB (minimum) USB thumb key drive, a USB or Firewire drive or an SD-Card.
WARNING! Lion DiskMaker will erase the volume or the drive you chose, according to the options you chose. Don’t forget to backup your data first!

Windows uses the NTFS hard drive format for its hard drives. Mac OS X can read files on NTFS hard drives, but it can't write files to them, which is a glaring omission. Attempting to drag a file into an NTFS drive in Mac OS X will only result in your mouse cursor turning into an error sign. Since most Hackintoshes dual-boot Windows and Mac OS X, being unable to share files between hard drives can lead to problems with file management. Fortunately, you can enable NTFS writing on Mac OS X with relatively little trouble. Read past the break for more.

LAST UPDATED: July 28, 2012 (Mountain Lion support)

NTFS-3G (Free)

NTFS-3G is a Mac app that enables reading & writing to NTFS drives on Mac OS X Snow Leopard for free. You need to install the Macfuse driver as well, for NTFS-3G to work. Once you've installed both NTFS-3G and Macfuse, you'll be able to write files to your Windows hard drives flawlessly.

Unfortunately, development of the Macfuse driver has stopped, so there will likely never be any official support for newer versions of Mac OS X. In Mac OS X Lion and Mountain Lion, you'll instead have to install the OSXFuse driver, a replacement for Macfuse.

However, even with OSXFuse, NTFS-3G does not work fully in Lion and Mountain Lion; you will still get mounting errors every time your computer boots. To fix these errors, you'll have to install this patch for NTFS-3G.




MBR, GPT, and APM. (These are the ones Apple's Disk Utility can create.)
 
MBR (Master Boot Record) is used historically by Windows (and, therefore, by most computer manufacturers). I'm not certain if you can boot a Mac from an MBR disk; I don't think so.

GPT (GUID Partition Table) is generally used in conjunction with Intel's EFI BIOS replacement. As such, it is mostly used by Apple currently in their Intel Macs. Any Mac running 10.4 or above can read a GPT disk; only Intel Macs can boot from them. If a computer has EFI, you can boot Windows on a GPT disk.

APM (Apple Partition Map) is what Apple used before the Intel switch. It's been used since 1989 in the Macintosh SE. Intel Macs can boot from and read APM disks.

I'd say the assertion you made in the question ("GPT is more useful than MBR") is incorrect: you can certainly boot more computers with an MBR disk than one using GPT. GPT is the way of the future, but it may take awhile for the major PC manufacturers to switch to EFI from BIOS.

Your Time Machine disk is almost certainly uses GPT, but that's totally irrelevant as you'll never boot from it.

  • Intel-based Macs all use EFI, and can only boot from GPT drives.
  • Booting from MBR is supported by all non-Mac x86 PCs. Booting from a GPT disk requires UEFI firmware.
    (This requirement doesn't apply for using MBR/GPT on data disks; in that case, only OS support is necessary.)
  • The MBR is 512 bytes in size; GPT can grow depending on partition count.
  • MBR uses the obsolete cylinder-head-sector addressing format, apparently.
  • There is only one MBR per disk. GPT keeps a backup copy.
  • MBR limits the whole disk to 2 TiB; in GPT the disk can be up to 16 EiB or 8 ZiB.
  • MBR is limited to four primary partitions. GPT can have 128 partitions.
  • To get around the 4-partition limit, the fourth partition in MBR is often an "extended partition", pointing to a linked list of "logical partition" records scattered between actual data, introducing even more weak points. GPT doesn't need such workarounds.
  • The boot loader is part of the MBR. (Sort of. Almost all bootloaders are too large to fit, so the part in MBR just loads a stage-2 bootloader from a partition.) There can only be one bootloader in the MBR, resulting in conflicts when installing dual-boot systems. Also, the MBR bootloader code seems to be specific to the x86 architecture.
    On the other hand, GPT uses a dedicated FAT32 partition for bootloaders (potentially multiple) and other EFI tools. The partition contents can be easily managed from any OS.
  • MBR partitions have a one byte long "type" code, which is too small to be useful, so the type often has to be guessed by the OS. Windows NT introduced a four-byte unique ID, but this is non-standard.
    In GPT, each partition has a type GUID, an unique GUID for identifying the partition itself, and a textual name.

source




MBR, GPT, and APM. (These are the ones Apple's Disk Utility can create.)
 
MBR (Master Boot Record) is used historically by Windows (and, therefore, by most computer manufacturers). I'm not certain if you can boot a Mac from an MBR disk; I don't think so.

GPT (GUID Partition Table) is generally used in conjunction with Intel's EFI BIOS replacement. As such, it is mostly used by Apple currently in their Intel Macs. Any Mac running 10.4 or above can read a GPT disk; only Intel Macs can boot from them. If a computer has EFI, you can boot Windows on a GPT disk.

APM (Apple Partition Map) is what Apple used before the Intel switch. It's been used since 1989 in the Macintosh SE. Intel Macs can boot from and read APM disks.

I'd say the assertion you made in the question ("GPT is more useful than MBR") is incorrect: you can certainly boot more computers with an MBR disk than one using GPT. GPT is the way of the future, but it may take awhile for the major PC manufacturers to switch to EFI from BIOS.

Your Time Machine disk is almost certainly uses GPT, but that's totally irrelevant as you'll never boot from it.

  • Intel-based Macs all use EFI, and can only boot from GPT drives.
  • Booting from MBR is supported by all non-Mac x86 PCs. Booting from a GPT disk requires UEFI firmware.
    (This requirement doesn't apply for using MBR/GPT on data disks; in that case, only OS support is necessary.)
  • The MBR is 512 bytes in size; GPT can grow depending on partition count.
  • MBR uses the obsolete cylinder-head-sector addressing format, apparently.
  • There is only one MBR per disk. GPT keeps a backup copy.
  • MBR limits the whole disk to 2 TiB; in GPT the disk can be up to 16 EiB or 8 ZiB.
  • MBR is limited to four primary partitions. GPT can have 128 partitions.
  • To get around the 4-partition limit, the fourth partition in MBR is often an "extended partition", pointing to a linked list of "logical partition" records scattered between actual data, introducing even more weak points. GPT doesn't need such workarounds.
  • The boot loader is part of the MBR. (Sort of. Almost all bootloaders are too large to fit, so the part in MBR just loads a stage-2 bootloader from a partition.) There can only be one bootloader in the MBR, resulting in conflicts when installing dual-boot systems. Also, the MBR bootloader code seems to be specific to the x86 architecture.
    On the other hand, GPT uses a dedicated FAT32 partition for bootloaders (potentially multiple) and other EFI tools. The partition contents can be easily managed from any OS.
  • MBR partitions have a one byte long "type" code, which is too small to be useful, so the type often has to be guessed by the OS. Windows NT introduced a four-byte unique ID, but this is non-standard.
    In GPT, each partition has a type GUID, an unique GUID for identifying the partition itself, and a textual name.

source