Headless Tiger
This page is for my notes on running non-Server Mac OS X 10.4 (Tiger) remotely via ssh. Feel free to add information in the comments.
Before You Say Goodbye
Things to set while you still have physical access:
- turn on remote login (ssh)
- set to never sleep
What else?
Server Software Setup
Postfix
Note that inet_interfaces is set twice in main.cf so change the second one, not the first (or get rid of one altogether)
Open up port 25. My rule is:
allow ip from any to any dst-port 25 in
Common Tasks
Software Updates
The command is softwareupdate.
You can list available updates with:
sudo softwareupdate -l
The following will install the recommended updates:
sudo softwareupdate -i -r
You can also install specific updates. See
man softwareupdate
Mounting Disk Images
The command is hdiutil.
To mount a disk image:
hdiutil attach SomeDiskImage.dmg
Although I haven't tried it, I believe the disk image can be referenced by URI.
To unmount:
hdiutil detach /Volumes/SomeDiskImage/
Installing Packages
The command is installer.
For example, to install the Xcode Tools package on the main volumne:
sudo installer -pkg XcodeTools.mpkg -target /Volumes/Macintosh\ HD/
Comments (6)
James Tauber on July 16, 2005:
extra88 on July 16, 2005:
<a href="http://www.afp548.com/articles/system/headlessg5.html">AFP548.com | Headless Xserve G5 installation instructions</a>
This has refreshed my memory a little. You can find more information about it by searching for "ard" and "kickstart." It brings up pages like this <a href="http://docs.info.apple.com/article.html?artnum=108030">Apple article on ARD</a>.
Evan on July 18, 2005:
carsten whimster on July 18, 2005:
MacMedix on Sept. 15, 2005:
So if you later need to attach a monitor, you won't have to reboot to get the mac to recognize & use the monitor.
If it's a Mac Mini, you might want to allow the hard drive to spin down when possible. This is in the energy saver, but is NOT sleep. Look for the checkbox at the bottom. Those Mac Mini's use 2.5" laptop drives, and don't seem to do well spinning 24/7.
MacMedix
Add a Comment
Last Modified: March 3, 2006
Author: jtauber
extra88 on July 15, 2005: