Mac OS X: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 8: | Line 8: | ||
hdiutil makehybrid -udf -udf-volume-name DISTRUBIA_WS -o distrubia.iso ~/Desktop/DISTURBIA_WS | 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 == | == Enabling Time Machine to use Unsupported Devices == | ||
Revision as of 22:52, 8 September 2008
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