Mac OS X: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 57: | Line 57: | ||
fi | fi | ||
</pre> | </pre> | ||
== Write Bootable Image to Thumb Drive == | |||
# Run diskutil list to get the current list of devices | |||
# Insert your flash media | |||
# Run diskutil list again and determine the device node assigned to your flash media (e.g. /dev/disk2) | |||
# Run diskutil unmountDisk /dev/diskN (replace N with the disk number from the last command) | |||
# Execute sudo dd if=/path/to/downloaded.img of=/dev/diskN bs=1m | |||
# Run diskutil eject /dev/diskN and remove your flash media when the command completes | |||
Revision as of 06:09, 25 August 2009
http://www.denis.lemire.name/images/posts/leopard.png
Convert icns to PNG
sips -s format png Dictionary.icns --out ~/Desktop/Dictionary_icon
Ripping a DVD
hdiutil makehybrid -udf -udf-volume-name DISTRUBIA_WS -o distrubia.iso ~/Desktop/DISTURBIA_WS
Ripping a Data CD/DVD
- drutil status
- diskutil unmountDisk /dev/disk1
- dd if=/dev/disk1 of=file.iso bs=2048
Enabling Time Machine to use Unsupported Devices
defaults write com.apple.systempreferences TMShowUnsupportedNetworkVolumes 1
Removing DS_Store Files
find . -type f -name ".DS_Store" -print0 | xargs -0 rm -f find . -type f -name "._.DS_Store" -print0 | xargs -0 rm -f
Remotely Enable or Disable Screen Sharing
To enable screen sharing:
$ cd /Library/Preferences $ echo -n enabled > com.apple.ScreenSharing.launchd
To disable screen sharing:
$ cd /Library/Preferences $ rm com.apple.ScreenSharing.launchd
Keyboard Shortcuts
- Shift-Control-Eject - Sleep display
Force Safari to Always Open New Window Links in a Tab
defaults write com.apple.Safari TargetedClicksCreateTabs -bool true
Fix screen Environment
Setup .bashrc as follows:
if [ -e /etc/bashrc ]; then . /etc/bashrc fi if [ -e /etc/profile ]; then . /etc/profile fi
Write Bootable Image to Thumb Drive
- Run diskutil list to get the current list of devices
- Insert your flash media
- Run diskutil list again and determine the device node assigned to your flash media (e.g. /dev/disk2)
- Run diskutil unmountDisk /dev/diskN (replace N with the disk number from the last command)
- Execute sudo dd if=/path/to/downloaded.img of=/dev/diskN bs=1m
- Run diskutil eject /dev/diskN and remove your flash media when the command completes