Mac OS X: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 10: | Line 10: | ||
defaults write com.apple.systempreferences TMShowUnsupportedNetworkVolumes 1 | 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 | |||
Revision as of 18:20, 26 February 2008
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
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