it installed new /System/Library/StartupItems/NFS/NFS and /private/etc/rc
also i want to start web proxy server, so I put
/usr/local/squid/sbin/squid
in
/private/etc/rc :
#/System/Library/StartupItems/squid/squid start
/usr/local/squid/sbin/squid
SystemStarter -gr ${VerboseFlag} ${SafeBoot}
squid would not start
either of these 2 commands
/System/Library/StartupItems/squid/squid start
/usr/local/squid/sbin/squid
would start squid
/System/Library/StartupItems/squid:
used 16 available 10547832
drwxr-xr-x 7 root wheel 238 Jan 26 14:58 .
drwxr-xr-x 35 root wheel 1190 Mar 19 13:18 ..
drwxr-xr-x 17 root wheel 578 Dec 29 20:34 Resources
-rw-r--r-- 1 root wheel 118 Jan 22 17:29 StartupParameters.plist
-rw-r--r-- 1 root wheel 110 Sep 17 2003 StartupParameters.plist~
-rwxr-xr-x 1 root wheel 687 Jan 26 14:58 squid
-rwxr-xr-x 1 root wheel 686 Jan 22 17:16 squid~
/System/Library/StartupItems/squid/squid:
#!/bin/sh
##
# start squid proxy web server
##
. /etc/rc.common
StartService ()
{
CheckForNetwork
# if [ "${NETWORKUP}" = "-NO-" ]; then exit; fi
if ! pid=$(GetPID squid); then
ConsoleMessage "Starting squid proxy web server"
/usr/local/squid/sbin/squid
fi
}
StopService ()
{
if pid=$(GetPID squid); then
ConsoleMessage "Stopping squid proxy web server"
kill -TERM "${pid}"
else
echo "squid is not running."
fi
}
RestartService ()
{
if pid=$(GetPID squid); then
ConsoleMessage "Restarting squid proxy web server"
kill -HUP "${pid}"
else
StartService
fi
}
RunService "$1"
also
apt-get install xemacs-sumo-pkg installs all xemacs packages together
Thank you very much.
If you have any questions, please don't hesitate to contact me.
Thanks, G Camij Toschian,
gct@cory.eecs.berkeley.edu, EECS Instructional & Electronics Support Group
/ 386 Cory Hall / 510 643-6138
http://www-inst.eecs.berkeley.edu/~gct
Please don't send me attachment files.
Please include a meaningful subject in your email.
------------------------------------------------------------------------
The following was automatically added to this message by the list server:
For information about MAGNet, its meetings and events, and its
mailing list, including information on subscribing and unsubscribing,
see the MAGNet Web site at <http://magnet.berkeley.edu/>.
Received on Tue Mar 23 10:47:59 2004
This archive was generated by hypermail 2.1.8 : Tue Mar 23 2004 - 10:47:59 PST