ConsoleKit
From CBLFS
| Download Source: | http://people.freedesktop.org/~mccann/dist/console-kit-0.1.0.tar.gz |
|---|
Introduction to ConsoleKit
ConsoleKit is a system-wide service that tracks seats and sessions.
Dependencies
Required
Non-Multilib
Compile the package:
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var &&
make
Install the package
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var &&
make
Install the package
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var &&
make
Install the package
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var &&
make
Install the package
make install
Configuration
Bootscript
Overwrite the bootscript that was installed with ConsoleKit with the following command:
cat > /etc/rc.d/init.d/ConsoleKit << "EOF"
#!/bin/sh
########################################################################
# Begin $rc_base/init.d/ConsoleKit
#
# Description :
#
# Authors : Joe Ciccone <jciccone@linuxfromscratch.org>
#
# Version : 00.01
#
# Notes :
#
########################################################################
. /etc/sysconfig/rc
. ${rc_functions}
case "${1}" in
start)
boot_mesg "Starting ConsoleKit..."
loadproc /usr/sbin/console-kit-daemon
;;
stop)
boot_mesg "Stopping ConsoleKit..."
killproc /usr/sbin/console-kit-daemon
;;
restart)
${0} stop
sleep 1
${0} start
;;
status)
statusproc /usr/sbin/console-kit-daemon
;;
*)
echo "Usage: ${0} {start|stop|restart|status}"
exit 1
;;
esac
# End $rc_base/init.d/ConsoleKit
EOF
Contents
| Installed Programs: | console-kit-daemon |
|---|---|
| Installed Libraries: | None |
| Installed Directories: | None |
Short Descriptions
| console-kit-daemon | ??? |
|---|