Difference between revisions of "ConsoleKit"

From CBLFS
Jump to navigationJump to search
(Required)
(Bootscript is nolonger needed in newer versions.)
Line 82: Line 82:
  
 
  make install
 
  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
 
chmod -v 754 /etc/rc.d/init.d/ConsoleKit
 
 
Link it into the run-levels:
 
 
for link in /etc/rc.d/rc{{0,1,6}.d/K27,{2,3,4,5}.d/S23}ConsoleKit; do
 
  ln -sfv ../init.d/ConsoleKit $link;
 
done
 
  
 
= Contents =
 
= Contents =

Revision as of 13:03, 31 August 2008

Download Source: http://people.freedesktop.org/~mccann/dist/ConsoleKit-0.4.1.tar.gz

Introduction to ConsoleKit

ConsoleKit is a system-wide service that tracks seats and sessions.

Project Homepage: http://www.freedesktop.org/wiki/Software/ConsoleKit

Dependencies

Required

Optional

Configuration Information

If you would like to build the Linux-PAM module then pass the following to configure:

--enable-pam-module

Non-Multilib

Compile the package:

CPPFLAGS="-I$XORG_PREFIX/include" \
./configure --prefix=/usr --sysconfdir=/etc \
    --localstatedir=/var --libexecdir=/usr/lib/ConsoleKit &&
make

Install the package:

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
CPPFLAGS="-I$XORG_PREFIX/include" \
./configure --prefix=/usr --sysconfdir=/etc \
    --localstatedir=/var --libexecdir=/usr/lib/ConsoleKit &&
make

Install the package:

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
CPPFLAGS="-I$XORG_PREFIX/include" \
./configure --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib32 \
    --localstatedir=/var --libexecdir=/usr/lib32/ConsoleKit \
    --with-pam-module-dir=/lib32/security &&
make

Install the package:

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
CPPFLAGS="-I$XORG_PREFIX/include" \
./configure --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib64 \
    --localstatedir=/var --libexecdir=/usr/lib64/ConsoleKit \
    --with-pam-module-dir=/lib64/security &&
make

Install the package:

make install

Contents

Installed Programs: ck-list-sessions console-kit-daemon
Installed Libraries: libck-connector.{so,a,la}
Installed Directories: /usr/lib/ConsoleKit