Difference between revisions of "Macintosh Notes"

From Simson Garfinkel
Jump to navigationJump to search
m
Line 1: Line 1:
Notes on the Macintosh
Notes on the Macintosh


I do most of my work on Macs because I like having a full Unix operating system, I like having well-integrated graphical tools, I like having hardware that's highly integrated with the software, and I like having other people worry about the system administration. The Mac is a great system, but I've also found that there are some programs that make it a lot easier to use:
I do most of my work on Macs because I like having a full Unix operating system, I like having well-integrated graphical tools, I like having hardware that's highly integrated with the software, and I like having other people worry about the system administration.  


* [http://www.macports.org/ MacPorts], a nice port management system for Open Source ports on the Mac.
From here you might find the following useful:
* EMACS on MacOS: [http://aquamacs.org/ Aquamacs] [http://members.shaw.ca/akochoi-emacs/ Emacs 21 for MacOS] [http://emacs-app.sf.net/ Emacs.app]
 
* [http://iterm.sourceforge.net/ iterm] (better Terminal)
* [[Notes on Setting up a Macintosh]]
* [http://www.inf.unibz.it/~franconi/mac-emacs/ Enhanced Carbon Emacs] (ECE) plugin
* [http://www.linkbackproject.org/ LinkBack Framework]; you want the Keynote plug-in  (doesn't work with Keynote '09)
* [http://www.shirt-pocket.com/SuperDuper/SuperDuperDescription.html SuperDuper!], an easy-to-use backup system for the Mac which makes bootable drives.


Other places to look for cool Mac stuff:
Other places to look for cool Mac stuff:

Revision as of 21:50, 4 March 2011

Notes on the Macintosh

I do most of my work on Macs because I like having a full Unix operating system, I like having well-integrated graphical tools, I like having hardware that's highly integrated with the software, and I like having other people worry about the system administration.

From here you might find the following useful:

Other places to look for cool Mac stuff:

LaTeX on the Mac

Option #1: teTeX through MacPorts

 sudo port install teTeX

Option #2: TUG's MacTex install

 http://tug.org/mactex/

Other things you may want:

Fixing a corrupt cache

If your mac prints this:

dyld: shared cached file was build against a different libSystem.dylib, ignoring cache
dyld: shared cached file was build against a different libSystem.dylib, ignoring cache
dyld: shared cached file was build against a different libSystem.dylib, ignoring cache

Try this:

 sudo update_dyld_shared_cache -force

Backing up a Mac

Although there are some nice programs like Carbon Copy Cloner and SuperDuper! for backing up Macs, here is an easy way to clone /dev/disk0s2 to /dev/disk1s2:

 #!/bin/sh
 asr --source /dev/disk0s2 --target /dev/disk1s2 --erase --noprompt 
 disktool -n disk1s2 backup

Changing the UID of a user

 dscl . -change /Users/bob UniqueID 501 1000
 chown -R 1000 /Users/bob

Create and mount an image on the mac

 hdiutil create -size 1m foo.dmg -fs HFS+ -volname NIST1 -attach -plist
 hdiutil detach /Volumes/NIST1/

Disable a MacOS Service

Briefly, to turn a service off (in this case com.apple.wikid)

  1. sudo launchctl (you will get a prompt - launchd%)
  2. list (gets a list of all the services)
  3. stop com.apple.wikid (stops the wikid service)
  4. unload com.apple.wikid (removes the wikid service from launchd)

See Also