[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: [debian-knoppix] PS/2-Maus -> USB-Maus



Am Freitag, 27. Dezember 2002 16:39 schrieb Andreas Kretschmer:
> Moin,
>
> habe hier eine Knoppix-Kiste und wollte dieser eine neue Maus verpassen:
> USB, optisch.
>
> Boote ich in der Knoppix-CD, erkennt er die auch ganz brav, alles
> klappt. Boote ich das von dieser CD mal auf Platte installierte
> Knoppix/Debian, so ist Tastatur und Maus tot, ich komme nur noch via
> Netz auf die Kiste. Habe keinen Plan mehr, woran das nun liegt. Wer
> erleuchtet mich?

Die Module werden vom Installskript automatisch in die /etc/modules 
eingetragen ...

Mein Tipp: Starte Knoppix von CD und führ folgenden Code-Schnippsel aus und 
kopier die darausfolgende /etc/modules auf Platte.

<--snipp-->
# Erzeugen von /etc/modules aus den aktuell geladenen Kernelmodulen
cat <<\EOF >/etc/modules
# /etc/modules: kernel modules to load at boot time.
#
# This file should contain the names of kernel modules that are
# to be loaded at boot time, one per line.  Comments begin with
# a `#', and everything on the line after them are ignored.
EOF
cat /proc/modules | tac | grep -v '\[.*\]' | grep -v cloop |
while read mod x
do
  if [ $mod = apm ] ; then
    echo "apm power_off=1" >>$TMP
  else
    echo $mod >>$TMP
  fi
done
<--snapp-->

Sichere vorher vielleicht noch deine alte /etc/modules, aber es sollte 
eigentlich dann alles wieder laufen :-))

Btw. bei mir hat er die USB-Module auch nachträglich erkannt ... Hmmm :-)

Na ja, du hast erstmal ne Lösung ...

cu

Fabian
>
>
> Andreas
_______________________________________________
debian-knoppix mailing list
debian-knoppix@linuxtag.org
http://mailman.linuxtag.org/mailman/listinfo/debian-knoppix


Reply to: