Yeah, I saw that one. Since the server won't live in my pocket it'll
be something that I add to rc.local.
Or earlier in the boot process, like in /etc/rc.securelevel. I was
even a bit more adventurous, I've put this right after the mount
commands and this lines:
# pick up option configuration
. /etc/rc.conf
into /etc/rc:
# START - Mac mini server mode
if [ -x /usr/X11R6/bin/pcitweak ]; then
echo -n "setting server mode: "
/usr/X11R6/bin/pcitweak -w 0:1f:0 -b 0xa4 0x00
/usr/X11R6/bin/pcitweak -r 0:1f:0 -b 0xa4
fi
# END - Mac mini server mode
I did only install xbase40.tgz, nothing else of X (afaik that's
necessary for php5-gd), and "pcitweak" is in xserv40.tgz. Though it's
sufficent to to make "pcitweak" work to copy /usr/X11R6/bin/pcitweak
from the archive or from another machine, everything else it needs is
already there, at least with xbase40.tgz.
Tas.