Bonjour Aldo et tous.
Suite à ton message voici ce que donne tes instructions:
# whereis brltty
brltty: 
/sbin/brltty 
/etc/brltty 
/etc/brltty.conf 
/etc/brltty.conf~ 
/lib/brltty 
/usr/include/brltty 
/usr/share/man/man1/brltty.1.gz

Il existe à l'imade de Debian un répertoire /etc/rcS.d/
ls -l /etc/rcS.d/*brltt*   renvoie:
lrwxrwxrwx 1 root root 16 2006-10-29 16:38 /etc/rcS.d/S25brltty
-> ../init.d/brltty

Il y a bien un lien vers un script shell dont le contenu est:
#! /bin/sh

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/sbin/brltty
NAME=brltty
DESC='Braille terminal driver'
PIDFILE=/var/run/$NAME.pid

test -f $DAEMON || exit 0

# Comment the following line to enable brltty.
exit 0

set -e

case "$1" in
  start)
        echo -n "Starting $DESC: "
        start-stop-daemon --start --oknodo \
                --pidfile $PIDFILE --startas $DAEMON -- -P $PIDFILE
        echo "$NAME."
        ;;
  stop)
        echo -n "Stopping $DESC: "
        start-stop-daemon --stop --quiet --oknodo --retry 5 --pidfile $PIDFILE
        echo "$NAME."
        ;;
  restart|force-reload)
        echo -n "Restarting $DESC: "
        start-stop-daemon --stop --quiet --retry 5 --pidfile $PIDFILE
        start-stop-daemon --start --quiet \
                --pidfile $PIDFILE --startas $DAEMON -- -P $PIDFILE
        echo "$NAME."
        ;;
  *)
        N=/etc/init.d/$NAME
        echo "Usage: $N {start|stop|restart|force-reload}" >&2
        exit 1
        ;;
esac

exit 0

Je n'ai aucune idée de ce que cela peut vouloir dire concrètement.
Amitiés. A+


_______________________________________________
Liste de diffusion CarrefourBLinuX 
    [email protected]
    http://lists.freearchive.org/mailman/listinfo/carrefourblinux
Fiches EDU : http://blinuxwiki.pbwiki.com/FichesEdu
Signets : http://fr.groups.yahoo.com/group/carrefourblinux/links/
Archives : http://lists.freearchive.org/pipermail//carrefourblinux
Anciennes archives (Yahoogroupes) :
    http://fr.groups.yahoo.com/group/carrefourblinux/messages
Rechercher : http://lists.freearchive.org/cgi-bin/search.cgi
Pour s'inscire par courriel : 
    'mailto:[EMAIL PROTECTED]'
Pour se desinscrire par courriel : 
    'mailto:[EMAIL PROTECTED]'

Répondre à