From ab0a4cb3d0422956708a63b87a8072e764fc38cb Mon Sep 17 00:00:00 2001 From: Marcel Bischoff Date: Sun, 18 Oct 2015 17:41:58 +0200 Subject: [PATCH] Add Disk Images category and move entries --- README.md | 40 +++++++++++++++++++++++++--------------- 1 file changed, 25 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 8196680..01bc257 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ If you want to contribute, you are highly encouraged to do so. Please read the [ - [Vim](#vim) - [Xcode](#xcode) - [Disks and Volumes](#disks-and-volumes) + - [Disk Images](#disk-images) - [Documents](#documents) - [Finder](#finder) - [Files and Folders](#files-and-folders) @@ -219,21 +220,6 @@ The only reliable way to do this is by sending an AppleScript command to Finder. osascript -e 'tell application "Finder" to eject (every disk whose ejectable is true)' ``` -#### Make Volume OS X Bootable -```bash -bless --folder "/path/to/mounted/volume/System/Library/CoreServices" --bootinfo --bootefi -``` - -#### Mount Disk Image -```bash -hdiutil attach /path/to/diskimage.dmg -``` - -#### Unmount Disk Image -```bash -hdiutil detach /dev/disk2s1 -``` - #### Repair File Permissions You don't have to use the Disk Utility GUI for this. ```bash @@ -251,6 +237,30 @@ bless --mount "/path/to/mounted/volume" --setBoot diskutil list ``` +### Disk Images + +#### Disable Disk Image Verification +```bash +defaults write com.apple.frameworks.diskimages skip-verify -bool true && \ +defaults write com.apple.frameworks.diskimages skip-verify-locked -bool true && \ +defaults write com.apple.frameworks.diskimages skip-verify-remote -bool true +``` + +#### Make Volume OS X Bootable +```bash +bless --folder "/path/to/mounted/volume/System/Library/CoreServices" --bootinfo --bootefi +``` + +#### Mount Disk Image +```bash +hdiutil attach /path/to/diskimage.dmg +``` + +#### Unmount Disk Image +```bash +hdiutil detach /dev/disk2s1 +``` + ## Documents