Michael Sullivan wrote: > Can anyone help me? Here's my lspci output: Do:
lspci -n | grep 07..: This will give you at least one line corresponding to your modem. One like this (not exactly the same): 00:07.4 0780: 1106:3057 (rev 40) 1106:3057 is in this case my modem (actually it is not. I don't have a modem) It is the PCI-ID for the device. You can do two things. First, check if you already have the module installed: for i in $(modprobe -l); do modinfo $i | grep 3057 && echo $i; done (3057 is the last part of the PCIID above. Replace with your own) In my sistem this gives: zeddmore nbensa # for i in $(modprobe -l); do modinfo $i | grep 3057 && echo $i; done alias: pci:v00001106d00003057sv*sd*bc*sc*i* /lib/modules/2.6.18-gentoo-r3/kernel/drivers/hwmon/via686a.ko alias: pci:v00001106d00003057sv*sd*bc*sc*i* /lib/modules/2.6.18-gentoo-r3/kernel/drivers/i2c/busses/i2c-viapro.ko Modules via686a.ko and i2c-viapro.ko provide support for my "modem" The second this you can do with the PCIID is: search google. Some softmodem are very easy to setup. Not sure about yours. Best regards, Norberto
pgpZHfUuPTB7b.pgp
Description: PGP signature

