
 Hallo FELIS!
Danke für Antwort!
Habe  less /etc/hotplug/usb/speedtouch  bei Vers. 4.0.2 und 5.0 eingegeben.
KNOPIX 4.0.2:
#!/bin/sh -e
PATH=/sbin:/bin:/usr/sbin:/usr/bin
export PATH
# ignore device events
[ "$PRODUCT" ] || exit 0
# Add here the command line options for modem_run.
# -k will be automatically added later if needed.
MODEM_RUN_OPTIONS=""
# a PPP peer to call
PPPD_PEER=""
# an interface to start with ifup
NET_IF=""
# you can use this file to change the default configuration
[ -f /etc/default/speedtouch ] && . /etc/default/speedtouch
##############################################################################
# use -k if we are using the kernel space driver
if grep -q -E '^I:.*Driver=speedtch$' /proc/bus/usb/devices; then
  MODEM_RUN_OPTIONS="$MODEM_RUN_OPTIONS -k"
  # kernels >= 2.6.10 have a built-in firmware loader
  case "$(uname -r)" in
    2.[789].*|2.6.[0-9][0-9]*)
      exit 0
      ;;
  esac
fi
if [ -z "$FIRMWARE_FILE" ]; then
  MODEM_REVISION=$(grep '^P: *Vendor=06b9 ProdID=4061 ' /proc/bus/usb/devices | sed -e 's
/.*Rev= *\([^ ]*\)/\1/')
  case "$MODEM_REVISION" in
    0.00|2.00) # old stingray and purple frog
      FIRMWARE_FILE="/usr/local/lib/speedtouch/KQD6_3.012"
      ;;
    4.00) # new grey frog
:                                          
KNOPPIX 5.0
#!/bin/sh -e
PATH=/sbin:/bin:/usr/sbin:/usr/bin
export PATH
# ignore device events
[ "$PRODUCT" ] || exit 0
# Add here the command line options for modem_run.
# -k will be automatically added later if needed.
MODEM_RUN_OPTIONS=""
# a PPP peer to call
PPPD_PEER=""
# an interface to start with ifup
NET_IF=""
# you can use this file to change the default configuration
[ -f /etc/default/speedtouch ] && . /etc/default/speedtouch
##############################################################################
# use -k if we are using the kernel space driver
if grep -q -E '^I:.*Driver=speedtch$' /proc/bus/usb/devices; then
  MODEM_RUN_OPTIONS="$MODEM_RUN_OPTIONS -k"
  # kernels >= 2.6.10 have a built-in firmware loader
  case "$(uname -r)" in
    2.[789].*|2.6.[0-9][0-9]*)
      exit 0
      ;;
  esac
fi
Du schreibst :
"  Naja Du könntest ja auch das usb.agent Script von Knoppix 4.0 nach /etc/hotplug in Knoppix 5.0 kopieren und mit 
"chmod 755 /etc/hotplug/usb.agent"
 ausführbar machen "
Ich bin neu bei Linux und mit den Konsolbefehlen noch nicht vertraut.
Bitte könntest Du mir die für o.a. Vorschalg notwendigen Befehle posten ?
 

 Hallo FELIS!
Danke für Antwort!
Habe  less /etc/hotplug/usb/speedtouch  bei Vers. 4.0.2 und 5.0 eingegeben.
KNOPIX 4.0.2:
#!/bin/sh -e
PATH=/sbin:/bin:/usr/sbin:/usr/bin
export PATH
# ignore device events
[ "$PRODUCT" ] || exit 0
# Add here the command line options for modem_run.
# -k will be automatically added later if needed.
MODEM_RUN_OPTIONS=""
# a PPP peer to call
PPPD_PEER=""
# an interface to start with ifup
NET_IF=""
# you can use this file to change the default configuration
[ -f /etc/default/speedtouch ] && . /etc/default/speedtouch
##############################################################################
# use -k if we are using the kernel space driver
if grep -q -E '^I:.*Driver=speedtch$' /proc/bus/usb/devices; then
  MODEM_RUN_OPTIONS="$MODEM_RUN_OPTIONS -k"
  # kernels >= 2.6.10 have a built-in firmware loader
  case "$(uname -r)" in
    2.[789].*|2.6.[0-9][0-9]*)
      exit 0
      ;;
  esac
fi
if [ -z "$FIRMWARE_FILE" ]; then
  MODEM_REVISION=$(grep '^P: *Vendor=06b9 ProdID=4061 ' /proc/bus/usb/devices | sed -e 's
/.*Rev= *\([^ ]*\)/\1/')
  case "$MODEM_REVISION" in
    0.00|2.00) # old stingray and purple frog
      FIRMWARE_FILE="/usr/local/lib/speedtouch/KQD6_3.012"
      ;;
    4.00) # new grey frog
:                                          
KNOPPIX 5.0
#!/bin/sh -e
PATH=/sbin:/bin:/usr/sbin:/usr/bin
export PATH
# ignore device events
[ "$PRODUCT" ] || exit 0
# Add here the command line options for modem_run.
# -k will be automatically added later if needed.
MODEM_RUN_OPTIONS=""
# a PPP peer to call
PPPD_PEER=""
# an interface to start with ifup
NET_IF=""
# you can use this file to change the default configuration
[ -f /etc/default/speedtouch ] && . /etc/default/speedtouch
##############################################################################
# use -k if we are using the kernel space driver
if grep -q -E '^I:.*Driver=speedtch$' /proc/bus/usb/devices; then
  MODEM_RUN_OPTIONS="$MODEM_RUN_OPTIONS -k"
  # kernels >= 2.6.10 have a built-in firmware loader
  case "$(uname -r)" in
    2.[789].*|2.6.[0-9][0-9]*)
      exit 0
      ;;
  esac
fi
Du schreibst :
"  Naja Du könntest ja auch das usb.agent Script von Knoppix 4.0 nach /etc/hotplug in Knoppix 5.0 kopieren und mit 
"chmod 755 /etc/hotplug/usb.agent"
 ausführbar machen "
Ich bin neu bei Linux und mit den Konsolbefehlen noch nicht vertraut.
Bitte könntest Du mir die für o.a. Vorschalg notwendigen Befehle posten ?
Danke!