Finalement xconsole a refait son apparition dans mon kde 3.1 Quelqu'un sait 
comment s'en d�barasser ? Les fichiers de config ont l'air d'avoir chang� 
depuis ce que j'ai vu dans les archives de la liste du mois d'aout. Pour info 
voici le contenu de /etc/inittab

#
# inittab       This file describes how the INIT process should set up
#               the system in a certain run-level.
#
# Author:       Miquel van Smoorenburg, <[EMAIL PROTECTED]>
#               Modified for RHS Linux by Marc Ewing and Donnie Barnes
#

# Default runlevel. The runlevels used by Mandrake Linux are:
#   0 - halt (Do NOT set initdefault to this)
#   1 - Single user mode
#   2 - Multiuser, without NFS (The same as 3, if you do not have networking)
#   3 - Full multiuser mode
#   4 - unused
#   5 - X11
#   6 - reboot (Do NOT set initdefault to this)
#
id:5:initdefault:

# System initialization.
si::sysinit:/etc/rc.d/rc.sysinit

l0:0:wait:/etc/rc.d/rc 0
l1:1:wait:/etc/rc.d/rc 1
l2:2:wait:/etc/rc.d/rc 2
l3:3:wait:/etc/rc.d/rc 3
l4:4:wait:/etc/rc.d/rc 4
l5:5:wait:/etc/rc.d/rc 5
l6:6:wait:/etc/rc.d/rc 6

# Things to run in every runlevel.
ud::once:/sbin/update

# Trap CTRL-ALT-DELETE
ca::ctrlaltdel:/sbin/shutdown -t3 -r now

# When our UPS tells us power has failed, assume we have a few minutes
# of power left.  Schedule a shutdown for 2 minutes from now.
# This does, of course, assume you have powerd installed and your
# UPS connected and working correctly.
pf::powerfail:/sbin/shutdown -f -h +2 "Power Failure; System Shutting Down"

# If power was restored before the shutdown kicked in, cancel it.
pr:12345:powerokwait:/sbin/shutdown -c "Power Restored; Shutdown Cancelled"


# Run gettys in standard runlevels
1:2345:respawn:/sbin/mingetty tty1
2:2345:respawn:/sbin/mingetty tty2
3:2345:respawn:/sbin/mingetty tty3
4:2345:respawn:/sbin/mingetty tty4
5:2345:respawn:/sbin/mingetty tty5
6:2345:respawn:/sbin/mingetty tty6

et de /etc/rc.d/rc5.d/S30dm

#!/bin/sh
#---------------------------------------------------------------
# Project         : Mandrake Linux
# Module          : initscripts
# File            : dm
# Version         : $Id: dm,v 1.2 2002/08/26 22:03:07 flepied Exp $
# Author          : Frederic Lepied
# Created On      : Wed May 29 22:10:40 2002
#---------------------------------------------------------------
# chkconfig: 5 30 09
# description: This startup script launches the graphical display manager.
#---------------------------------------------------------------

# Source function library.
. /etc/rc.d/init.d/functions

ret=0

case $1 in
    start)
        echo -n "Starting display manager: "
        /etc/X11/prefdm &

        success "display manager startup"
        ret=$?
        echo
        if [ $ret = 0 ]; then
            touch /var/lock/subsys/dm
        fi
        ;;

    stop)
        echo -n "Stopping display manager: "
        if [ -r /var/lock/subsys/dm ]; then
            kill `cat /var/lock/subsys/dm` > /dev/null 2>&1
        fi
        ret=$?
        echo
        if [ $ret = 0 ]; then
            success "display manager shutdown"
            rm -f /var/lock/subsys/dm
        else
            failure "display manager shutdown"
        fi
        ;;

    status)
        status dm
        ;;

    reload)
        ;;

    restart)
        $0 stop
        $0 start
        ret=$?
        ;;
    *)
        echo "Usage: $(basename $0) start|stop|restart|status"
        exit 0
        ;;
esac

exit $ret

# dm ends here


-- 
Nicolas DEGAND

Vous souhaitez acquerir votre Pack ou des Services MandrakeSoft?
Rendez-vous sur "http://www.mandrakestore.com";

Répondre à