LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   Problems installing my Motorola SB4220 thourgh the usb port (https://www.linuxquestions.org/questions/slackware-14/problems-installing-my-motorola-sb4220-thourgh-the-usb-port-307154/)

Jenny81 03-28-2005 04:54 PM

Problems installing my Motorola SB4220 thourgh the usb port
 
Hi, I have a problem trying to get my Motorola SB4220 cable modem through the usb port, I need to use the usb port instead of the ethernet card because I have to use the ethernet card to be conected to my local lan, since the pc with linux on it is the gateway, I have tried reading guides about how to configure your usb cable modem throught your usb port but I was not able to find one for Slackware, the ones I found were for Debian and Red Hat, I tried them but it gets to a point where I have to configurate certain files that Slackware dont have. I would really like if some could help me, thank you very much in advance.

win32sux 03-28-2005 05:34 PM

welcome to LQ!!!

=)

please post a link to the docs you are referring to so we can take a look at them...


Jenny81 03-28-2005 08:05 PM

Thank you for answering so quickly
 
Here are some of the pages I went thourgh trying to get the modem to work
http://www.linux.com/howtos/Motorola...em/index.shtml
http://iglu.org.il/amit/cable/
http://www.linux-usb.org/USB-guide/x332.html
Evrything went fine using the guide that is in the first link here, I have usb support in the kernel and also CDCEther support since I was able to load the module using modprobe but then it said to edit a file called /etc/network/interfaces but I dont have that file in Slackware so that is the part I think I got stalled, thank you very much for your help.

win32sux 03-29-2005 01:26 AM

Re: Thank you for answering so quickly
 
Quote:

Originally posted by Jenny81
but then it said to edit a file called /etc/network/interfaces but I dont have that file in Slackware so that is the part I think I got stalled
on slackware you'd use the /etc/rc.d/rc.inet1.conf file... for example, on my box i have two interfaces:

eth0 is my internet interface, it's connected to my cable modem (via ethernet)...

eth1 is my lan interface...

for my internet interface i use DHCP and for my local one i have a static ip of 192.168.0.1...

my /etc/rc.d/rc.inet1.conf looks like this:

Code:

# /etc/rc.d/rc.inet1.conf
#
# This file contains the configuration settings for network interfaces.
# If USE_DHCP[interface] is set to "yes", this overrides any other settings.
# If you don't have an interface, leave the settings null ("").

# Config information for eth0:
IPADDR[0]=""
NETMASK[0]=""
USE_DHCP[0]="yes"
DHCP_HOSTNAME[0]=""

# Config information for eth1:
IPADDR[1]="192.168.0.1"
NETMASK[1]="255.255.255.0"
USE_DHCP[1]=""
DHCP_HOSTNAME[1]=""

# Config information for eth2:
IPADDR[2]=""
NETMASK[2]=""
USE_DHCP[2]=""
DHCP_HOSTNAME[2]=""

# Config information for eth3:
IPADDR[3]=""
NETMASK[3]=""
USE_DHCP[3]=""
DHCP_HOSTNAME[3]=""

# Default gateway IP address:
GATEWAY=""

# Change this to "yes" for debugging output to stdout.  Unfortunately,
# /sbin/hotplug seems to disable stdout so you'll only see debugging output
# when rc.inet1 is called directly.
DEBUG_ETH_UP="no"

that makes eth0 use the dhcp client daemon to configure itself... of course you'd need to have the dhcpcd package installed...

Code:

bash-3.00$ ls /var/log/packages/ | grep dhcpcd
dhcpcd-1.3.22pl4-i386-1

i hope this info helps you... good luck...

Jenny81 03-29-2005 03:23 AM

Thank very much, I tried editing /etc/rc.d/rc.inet1.conf giving it the ip of my internet conection on eth1 and the ip of my lan on eth0, but for some reason when I try to reconfigure eth1 (my cable modem) using ifconfig I get an error saying that there is not such device, I read somewhere that you have to asign the MAC address of your device, and I have the MAC of the modem when being use through the usb but I dont know how to give that MAC address to my eth1 I think the problem is that I can not get my pc to recognize my cable modem as eth1, maybe the solution is simple or not, I just really like to thank you for your time.

win32sux 03-29-2005 04:08 AM

your cable modem has a static IP??

okay, according to the first link you posted, you can try bringing the interface up with this:

Code:

ifconfig eth1 hw ether xx:xx:xx:xx:xx:xx up
replace the xxx with the actual MAC address...

see if that works... like, at least you should be able to see eth1 in "ifconfig" now...

if it works then try assigning the ip, netmask, and route like normal...

forget about /etc/rc.d/rc.inet1.conf for now, let's get it working with ifconfig first...


Jenny81 03-29-2005 04:45 AM

Hi, I tried the command ifconfig eth1 hw ether 00:0B:06:9E:D0:6f up but this is what I got

root@Osin:~# ifconfig eth1 hw ether 00:0B:06:9E:D0:6f up
SIOCSIFHWADDR: No such device
eth1: unknown interface: No such device
root@Osin:~#

Also here is my lspci

root@Osin:~# lspci
00:00.0 Host bridge: Intel Corp. 82810E DC-133 GMCH [Graphics Memory Controller Hub] (rev 03)
00:01.0 VGA compatible controller: Intel Corp. 82810E DC-133 CGC [Chipset Graphics Controller] (rev 03)
00:1e.0 PCI bridge: Intel Corp. 82801AA PCI Bridge (rev 02)
00:1f.0 ISA bridge: Intel Corp. 82801AA ISA Bridge (LPC) (rev 02)
00:1f.1 IDE interface: Intel Corp. 82801AA IDE (rev 02)
00:1f.2 USB Controller: Intel Corp. 82801AA USB (rev 02)
00:1f.3 SMBus: Intel Corp. 82801AA SMBus (rev 02)
01:08.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10)
01:09.0 Communication controller: 5610 56K FaxModem USR 56k Internal WinModem
01:0a.0 Multimedia audio controller: Ensoniq ES1371 [AudioPCI-97] (rev 06)
01:0b.0 VGA compatible controller: nVidia Corporation: Unknown device 0185 (rev c1)
root@Osin:~#

my lsmod

root@Osin:~# lsmod
Module Size Used by Not tainted
CDCEther 11228 0 (unused)
snd-pcm-oss 36704 0 (unused)
snd-mixer-oss 12152 0 [snd-pcm-oss]
acm 5472 0 (unused)
keybdev 1892 0 (unused)
mousedev 4020 1
hid 20804 0 (unused)
usbmouse 1880 0 (unused)
input 3200 0 [keybdev mousedev hid usbmouse]
i810_rng 2528 0 (unused)
uhci 24284 0 (unused)
usbcore 58860 1 [CDCEther acm hid usbmouse uhci]
8139too 13928 0
mii 2272 0 [8139too]
crc32 2880 0 [8139too]
snd-ens1371 11392 0
gameport 1420 0 [snd-ens1371]
snd-rawmidi 12320 0 [snd-ens1371]
snd-seq-device 3812 0 [snd-rawmidi]
snd-ac97-codec 52472 0 [snd-ens1371]
snd-pcm 54504 0 [snd-pcm-oss snd-ens1371 snd-ac97-codec]
snd-timer 13412 0 [snd-pcm]
snd 31268 0 [snd-pcm-oss snd-mixer-oss snd-ens1371 snd-rawmidi snd-seq-device snd-ac97-codec snd-pcm snd-timer]
snd-page-alloc 4712 0 [snd-mixer-oss snd-rawmidi snd-seq-device snd-pcm snd-timer snd]
soundcore 3396 6 [snd]
ntfs 51232 2 (autoclean)
ide-scsi 9392 2
agpgart 45092 0 (unused)
root@Osin:~#

and my lsusb

root@Osin:~# lsusb
Bus 001 Device 001: ID 0000:0000
Bus 001 Device 002: ID 046d:c016 Logitech, Inc.
Bus 001 Device 003: ID 07b2:4220 Motorola BCS, Inc.
root@Osin:~#

I dont know how to make the pc recognize the cable modem, I hope this information will give you a better breffing about my situation, thank you very much.

win32sux 03-29-2005 05:17 AM

i don't see a usb-ohci module loaded... i think it's needed:

Code:

modprobe usb-ohci
if usb-ohci doesn't load or work, try usb-ehci instead:

Code:

modprobe usb-ehci

Jenny81 03-29-2005 03:43 PM

Hi, I tried loading that modules but I got this errors
root@Osin:~# modprobe usb-ohci
/lib/modules/2.4.29/kernel/drivers/usb/host/usb-ohci.o.gz: init_module:No such device
/lib/modules/2.4.29/kernel/drivers/usb/host/usb-ohci.o.gz: Hint: insmoderrors can be caused by incorrect module parameters, including invalid IO or IRQ parameters.
You may find more information in syslog or the output from dmesg
/lib/modules/2.4.29/kernel/drivers/usb/host/usb-ohci.o.gz: insmod /lib/modules/2.4.29/kernel/drivers/usb/host/usb-ohci.o.gz failed
/lib/modules/2.4.29/kernel/drivers/usb/host/usb-ohci.o.gz: insmod usb-ohci failed
root@Osin:~#

root@Osin:~# modprobe usb-ehci
modprobe: Can't locate module usb-ehci
root@Osin:~#

I really dont know what else to try, thank you very so much for your time though.

keefaz 03-29-2005 03:52 PM

Try plug and unplug the usb modem, open a terminal and see the
output of ' dmesg ' command

Could you post this output (the lines that you find relevant)

Jenny81 03-29-2005 04:36 PM

Thank you for answering keefaz this is the dmesg before unpluging and plugging the modem back in, I did not know what might have been relevant or no so I will paste it all, I know it is a lot, sorry.

root@Osin:~# dmesg
Linux version 2.4.29 (root@midas) (gcc version 3.3.4) #6 Thu Jan 20 16:30:37 PST 2005
BIOS-provided physical RAM map:
BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
BIOS-e820: 0000000000100000 - 000000000fec0000 (usable)
BIOS-e820: 000000000fec0000 - 000000000fef8000 (ACPI data)
BIOS-e820: 000000000fef8000 - 000000000ff00000 (ACPI NVS)
BIOS-e820: 00000000ffb80000 - 00000000ffc00000 (reserved)
BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
254MB LOWMEM available.
On node 0 totalpages: 65216
zone(0): 4096 pages.
zone(1): 61120 pages.
zone(2): 0 pages.
Kernel command line: BOOT_IMAGE=Slackware ro root=1645 hdc=ide-scsi
ide_setup: hdc=ide-scsi
Initializing CPU#0
Detected 598.066 MHz processor.
Console: colour dummy device 80x25
Calibrating delay loop... 1192.75 BogoMIPS
Memory: 254824k/260864k available (1831k kernel code, 5652k reserved, 607k data, 120k init, 0k highmem)
Dentry cache hash table entries: 32768 (order: 6, 262144 bytes)
Inode cache hash table entries: 16384 (order: 5, 131072 bytes)
Mount cache hash table entries: 512 (order: 0, 4096 bytes)
Buffer cache hash table entries: 16384 (order: 4, 65536 bytes)
Page-cache hash table entries: 65536 (order: 6, 262144 bytes)
CPU: L1 I cache: 16K, L1 D cache: 16K
CPU: L2 cache: 256K
CPU: After generic, caps: 0383f9ff 00000000 00000000 00000000
CPU: Common caps: 0383f9ff 00000000 00000000 00000000
CPU: Intel Pentium III (Coppermine) stepping 03
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Checking 'hlt' instruction... OK.
POSIX conformance testing by UNIFIX
mtrr: v1.40 (20010327) Richard Gooch (rgooch@atnf.csiro.au)
mtrr: detected mtrr type: Intel
PCI: PCI BIOS revision 2.10 entry at 0xfda95, last bus=1
PCI: Using configuration type 1
PCI: Probing PCI hardware
PCI: Probing PCI hardware (bus 00)
Transparent bridge - Intel Corp. 82801AA PCI Bridge
PCI: Using IRQ router PIIX/ICH [8086/2410] at 00:1f.0
Linux NET4.0 for Linux 2.4
Based upon Swansea University Computer Society NET3.039
Initializing RT netlink socket
Starting kswapd
VFS: Disk quotas vdquot_6.5.1
Journalled Block Device driver loaded
vesafb: framebuffer at 0xe8000000, mapped to 0xd080d000, size 1536k
vesafb: mode is 1024x768x8, linelength=1024, pages=3
vesafb: protected mode interface info at c000:e4e0
vesafb: scrolling: redraw
Console: switching to colour frame buffer device 128x48
fb0: VESA VGA frame buffer device
pty: 512 Unix98 ptys configured
Serial driver version 5.05c (2001-07-08) with HUB-6 MANY_PORTS MULTIPORT SHARE_IRQ SERIAL_PCI enabled
ttyS00 at 0x03f8 (irq = 4) is a 16550A
Real Time Clock Driver v1.10f
Floppy drive(s): fd0 is 1.44M
FDC 0 is a post-1991 82077
RAMDISK driver initialized: 16 RAM disks of 7777K size 1024 blocksize
loop: loaded (max 8 devices)
Uniform Multi-Platform E-IDE driver Revision: 7.00beta4-2.4
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
ICH: IDE controller at PCI slot 00:1f.1
ICH: chipset revision 2
ICH: not 100% native mode: will probe irqs later
ide0: BM-DMA at 0xffa0-0xffa7, BIOS settings: hda:DMA, hdb:pio
ide1: BM-DMA at 0xffa8-0xffaf, BIOS settings: hdc:DMA, hdd:DMA
hda: WDC WD400BB-22DEA0, ATA DISK drive
blk: queue c03ad460, I/O limit 4095Mb (mask 0xffffffff)
hdc: HP DVD Writer 630, ATAPI CD/DVD-ROM drive
hdd: WDC WD600BB-00CAA1, ATA DISK drive
blk: queue c03ad9f0, I/O limit 4095Mb (mask 0xffffffff)
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
ide1 at 0x170-0x177,0x376 on irq 15
hda: attached ide-disk driver.
hda: host protected area => 1
hda: 78165360 sectors (40021 MB) w/2048KiB Cache, CHS=4865/255/63, UDMA(66)
hdd: attached ide-disk driver.
hdd: host protected area => 1
hdd: 117231408 sectors (60022 MB) w/2048KiB Cache, CHS=116301/16/63, UDMA(33)
Partition check:
hda: hda1 hda2 < hda5 >
hdd: [PTBL] [7297/255/63] hdd1 hdd2 < hdd5 >
SCSI subsystem driver Revision: 1.00
kmod: failed to exec /sbin/modprobe -s -k scsi_hostadapter, errno = 2
kmod: failed to exec /sbin/modprobe -s -k scsi_hostadapter, errno = 2
kmod: failed to exec /sbin/modprobe -s -k scsi_hostadapter, errno = 2
md: linear personality registered as nr 1
md: raid0 personality registered as nr 2
md: raid1 personality registered as nr 3
md: raid5 personality registered as nr 4
raid5: measuring checksumming speed
8regs : 990.000 MB/sec
32regs : 569.600 MB/sec
pIII_sse : 1206.400 MB/sec
pII_mmx : 1354.000 MB/sec
p5_mmx : 1413.200 MB/sec
raid5: using function: pIII_sse (1206.400 MB/sec)
md: md driver 0.90.0 MAX_MD_DEVS=256, MD_SB_DISKS=27
md: Autodetecting RAID arrays.
md: autorun ...
md: ... autorun DONE.
LVM version 1.0.8(17/11/2003)
Initializing Cryptographic API
NET4: Linux TCP/IP 1.0 for NET4.0
IP Protocols: ICMP, UDP, TCP, IGMP
IP: routing cache hash table of 2048 buckets, 16Kbytes
TCP: Hash tables configured (established 16384 bind 32768)
Linux IP multicast router 0.06 plus PIM-SM
NET4: Unix domain sockets 1.0/SMP for Linux NET4.0.
VFS: Mounted root (ext2 filesystem) readonly.
Freeing unused kernel memory: 120k freed
Linux agpgart interface v0.99 (c) Jeff Hartmann
agpgart: Maximum main memory to use for agp memory: 202M
agpgart: Detected an Intel i810 E Chipset.
agpgart: detected 4MB dedicated video ram.
agpgart: AGP aperture is 64M @ 0xf8000000
hdc: attached ide-scsi driver.
scsi0 : SCSI host adapter emulation for IDE ATAPI devices
Vendor: HP Model: DVD Writer 630c Rev: AH02
Type: CD-ROM ANSI SCSI revision: 02
Attached scsi CD-ROM sr0 at scsi0, channel 0, id 0, lun 0
sr0: scsi3-mmc drive: 40x/40x writer cd/rw xa/form2 cdda tray
Uniform CD-ROM driver Revision: 3.12
NTFS driver v1.1.22 [Flags: R/O MODULE]
PCI: Found IRQ 3 for device 01:0a.0
8139too Fast Ethernet driver 0.9.26
PCI: Found IRQ 9 for device 01:08.0
PCI: Sharing IRQ 9 with 00:01.0
eth0: RealTek RTL8139 at 0xd0a8c800, 00:50:bf:ed:dc:aa, IRQ 9
eth0: Identified 8139 chip type 'RTL-8139C'
eth0: link up, 100Mbps, full-duplex, lpa 0x45E1
usb.c: registered new driver usbdevfs
usb.c: registered new driver hub
uhci.c: USB Universal Host Controller Interface driver v1.1
PCI: Found IRQ 11 for device 00:1f.2
PCI: Sharing IRQ 11 with 01:0b.0
PCI: Setting latency timer of device 00:1f.2 to 64
uhci.c: USB UHCI at I/O 0xef80, IRQ 11
usb.c: new USB bus registered, assigned bus number 1
hub.c: USB hub found
hub.c: 2 ports detected
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
i810_rng hardware driver 0.9.8 loaded
hw_random: misc device register failed
hub.c: new USB device 00:1f.2-1, assigned address 2
usb.c: USB device 2 (vend/prod 0x46d/0xc016) is not claimed by any active driver.
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
hub.c: new USB device 00:1f.2-2, assigned address 3
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
usb.c: USB device 3 (vend/prod 0x7b2/0x4220) is not claimed by any active driver.
hw_random: misc device register failed
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
hw_random: misc device register failed
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
hw_random: misc device register failed
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
hw_random: misc device register failed
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
usb.c: registered new driver usbmouse
hw_random: misc device register failed
input0: Logitech Optical USB Mouse on usb1:2.0
usbmouse.c: v1.6:USB HID Boot Protocol mouse driver
usb.c: registered new driver hiddev
usb.c: registered new driver hid
hid-core.c: v1.8.1 Andreas Gal, Vojtech Pavlik <vojtech@suse.cz>
hid-core.c: USB HID support drivers
mice: PS/2 mouse device common for all mice
usb.c: registered new driver acm
acm.c: v0.21:USB Abstract Control Model driver for USB modems and ISDN adapters
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
hw_random: misc device register failed
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
hw_random: misc device register failed
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
hw_random: misc device register failed
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
hw_random: misc device register failed
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
hw_random: misc device register failed
root@Osin:~#

And this is the one after unplugging the modem and plugging it back in

root@Osin:~# dmesg
Linux version 2.4.29 (root@midas) (gcc version 3.3.4) #6 Thu Jan 20 16:30:37 PST 2005
BIOS-provided physical RAM map:
BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
BIOS-e820: 0000000000100000 - 000000000fec0000 (usable)
BIOS-e820: 000000000fec0000 - 000000000fef8000 (ACPI data)
BIOS-e820: 000000000fef8000 - 000000000ff00000 (ACPI NVS)
BIOS-e820: 00000000ffb80000 - 00000000ffc00000 (reserved)
BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
254MB LOWMEM available.
On node 0 totalpages: 65216
zone(0): 4096 pages.
zone(1): 61120 pages.
zone(2): 0 pages.
Kernel command line: BOOT_IMAGE=Slackware ro root=1645 hdc=ide-scsi
ide_setup: hdc=ide-scsi
Initializing CPU#0
Detected 598.066 MHz processor.
Console: colour dummy device 80x25
Calibrating delay loop... 1192.75 BogoMIPS
Memory: 254824k/260864k available (1831k kernel code, 5652k reserved, 607k data, 120k init, 0k highmem)
Dentry cache hash table entries: 32768 (order: 6, 262144 bytes)
Inode cache hash table entries: 16384 (order: 5, 131072 bytes)
Mount cache hash table entries: 512 (order: 0, 4096 bytes)
Buffer cache hash table entries: 16384 (order: 4, 65536 bytes)
Page-cache hash table entries: 65536 (order: 6, 262144 bytes)
CPU: L1 I cache: 16K, L1 D cache: 16K
CPU: L2 cache: 256K
CPU: After generic, caps: 0383f9ff 00000000 00000000 00000000
CPU: Common caps: 0383f9ff 00000000 00000000 00000000
CPU: Intel Pentium III (Coppermine) stepping 03
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Checking 'hlt' instruction... OK.
POSIX conformance testing by UNIFIX
mtrr: v1.40 (20010327) Richard Gooch (rgooch@atnf.csiro.au)
mtrr: detected mtrr type: Intel
PCI: PCI BIOS revision 2.10 entry at 0xfda95, last bus=1
PCI: Using configuration type 1
PCI: Probing PCI hardware
PCI: Probing PCI hardware (bus 00)
Transparent bridge - Intel Corp. 82801AA PCI Bridge
PCI: Using IRQ router PIIX/ICH [8086/2410] at 00:1f.0
Linux NET4.0 for Linux 2.4
Based upon Swansea University Computer Society NET3.039
Initializing RT netlink socket
Starting kswapd
VFS: Disk quotas vdquot_6.5.1
Journalled Block Device driver loaded
vesafb: framebuffer at 0xe8000000, mapped to 0xd080d000, size 1536k
vesafb: mode is 1024x768x8, linelength=1024, pages=3
vesafb: protected mode interface info at c000:e4e0
vesafb: scrolling: redraw
Console: switching to colour frame buffer device 128x48
fb0: VESA VGA frame buffer device
pty: 512 Unix98 ptys configured
Serial driver version 5.05c (2001-07-08) with HUB-6 MANY_PORTS MULTIPORT SHARE_IRQ SERIAL_PCI enabled
ttyS00 at 0x03f8 (irq = 4) is a 16550A
Real Time Clock Driver v1.10f
Floppy drive(s): fd0 is 1.44M
FDC 0 is a post-1991 82077
RAMDISK driver initialized: 16 RAM disks of 7777K size 1024 blocksize
loop: loaded (max 8 devices)
Uniform Multi-Platform E-IDE driver Revision: 7.00beta4-2.4
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
ICH: IDE controller at PCI slot 00:1f.1
ICH: chipset revision 2
ICH: not 100% native mode: will probe irqs later
ide0: BM-DMA at 0xffa0-0xffa7, BIOS settings: hda:DMA, hdb:pio
ide1: BM-DMA at 0xffa8-0xffaf, BIOS settings: hdc:DMA, hdd:DMA
hda: WDC WD400BB-22DEA0, ATA DISK drive
blk: queue c03ad460, I/O limit 4095Mb (mask 0xffffffff)
hdc: HP DVD Writer 630, ATAPI CD/DVD-ROM drive
hdd: WDC WD600BB-00CAA1, ATA DISK drive
blk: queue c03ad9f0, I/O limit 4095Mb (mask 0xffffffff)
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
ide1 at 0x170-0x177,0x376 on irq 15
hda: attached ide-disk driver.
hda: host protected area => 1
hda: 78165360 sectors (40021 MB) w/2048KiB Cache, CHS=4865/255/63, UDMA(66)
hdd: attached ide-disk driver.
hdd: host protected area => 1
hdd: 117231408 sectors (60022 MB) w/2048KiB Cache, CHS=116301/16/63, UDMA(33)
Partition check:
hda: hda1 hda2 < hda5 >
hdd: [PTBL] [7297/255/63] hdd1 hdd2 < hdd5 >
SCSI subsystem driver Revision: 1.00
kmod: failed to exec /sbin/modprobe -s -k scsi_hostadapter, errno = 2
kmod: failed to exec /sbin/modprobe -s -k scsi_hostadapter, errno = 2
kmod: failed to exec /sbin/modprobe -s -k scsi_hostadapter, errno = 2
md: linear personality registered as nr 1
md: raid0 personality registered as nr 2
md: raid1 personality registered as nr 3
md: raid5 personality registered as nr 4
raid5: measuring checksumming speed
8regs : 990.000 MB/sec
32regs : 569.600 MB/sec
pIII_sse : 1206.400 MB/sec
pII_mmx : 1354.000 MB/sec
p5_mmx : 1413.200 MB/sec
raid5: using function: pIII_sse (1206.400 MB/sec)
md: md driver 0.90.0 MAX_MD_DEVS=256, MD_SB_DISKS=27
md: Autodetecting RAID arrays.
md: autorun ...
md: ... autorun DONE.
LVM version 1.0.8(17/11/2003)
Initializing Cryptographic API
NET4: Linux TCP/IP 1.0 for NET4.0
IP Protocols: ICMP, UDP, TCP, IGMP
IP: routing cache hash table of 2048 buckets, 16Kbytes
TCP: Hash tables configured (established 16384 bind 32768)
Linux IP multicast router 0.06 plus PIM-SM
NET4: Unix domain sockets 1.0/SMP for Linux NET4.0.
VFS: Mounted root (ext2 filesystem) readonly.
Freeing unused kernel memory: 120k freed
Linux agpgart interface v0.99 (c) Jeff Hartmann
agpgart: Maximum main memory to use for agp memory: 202M
agpgart: Detected an Intel i810 E Chipset.
agpgart: detected 4MB dedicated video ram.
agpgart: AGP aperture is 64M @ 0xf8000000
hdc: attached ide-scsi driver.
scsi0 : SCSI host adapter emulation for IDE ATAPI devices
Vendor: HP Model: DVD Writer 630c Rev: AH02
Type: CD-ROM ANSI SCSI revision: 02
Attached scsi CD-ROM sr0 at scsi0, channel 0, id 0, lun 0
sr0: scsi3-mmc drive: 40x/40x writer cd/rw xa/form2 cdda tray
Uniform CD-ROM driver Revision: 3.12
NTFS driver v1.1.22 [Flags: R/O MODULE]
PCI: Found IRQ 3 for device 01:0a.0
8139too Fast Ethernet driver 0.9.26
PCI: Found IRQ 9 for device 01:08.0
PCI: Sharing IRQ 9 with 00:01.0
eth0: RealTek RTL8139 at 0xd0a8c800, 00:50:bf:ed:dc:aa, IRQ 9
eth0: Identified 8139 chip type 'RTL-8139C'
eth0: link up, 100Mbps, full-duplex, lpa 0x45E1
usb.c: registered new driver usbdevfs
usb.c: registered new driver hub
uhci.c: USB Universal Host Controller Interface driver v1.1
PCI: Found IRQ 11 for device 00:1f.2
PCI: Sharing IRQ 11 with 01:0b.0
PCI: Setting latency timer of device 00:1f.2 to 64
uhci.c: USB UHCI at I/O 0xef80, IRQ 11
usb.c: new USB bus registered, assigned bus number 1
hub.c: USB hub found
hub.c: 2 ports detected
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
i810_rng hardware driver 0.9.8 loaded
hw_random: misc device register failed
hub.c: new USB device 00:1f.2-1, assigned address 2
usb.c: USB device 2 (vend/prod 0x46d/0xc016) is not claimed by any active driver.
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
hub.c: new USB device 00:1f.2-2, assigned address 3
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
usb.c: USB device 3 (vend/prod 0x7b2/0x4220) is not claimed by any active driver.
hw_random: misc device register failed
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
hw_random: misc device register failed
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
hw_random: misc device register failed
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
hw_random: misc device register failed
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
usb.c: registered new driver usbmouse
hw_random: misc device register failed
input0: Logitech Optical USB Mouse on usb1:2.0
usbmouse.c: v1.6:USB HID Boot Protocol mouse driver
usb.c: registered new driver hiddev
usb.c: registered new driver hid
hid-core.c: v1.8.1 Andreas Gal, Vojtech Pavlik <vojtech@suse.cz>
hid-core.c: USB HID support drivers
mice: PS/2 mouse device common for all mice
usb.c: registered new driver acm
acm.c: v0.21:USB Abstract Control Model driver for USB modems and ISDN adapters
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
hw_random: misc device register failed
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
hw_random: misc device register failed
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
hw_random: misc device register failed
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
hw_random: misc device register failed
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.5
hw_random: misc device register failed
usb.c: USB disconnect on device 00:1f.2-2 address 3
hub.c: new USB device 00:1f.2-2, assigned address 4
usb.c: USB device 4 (vend/prod 0x7b2/0x4220) is not claimed by any active driver.
usb.c: USB disconnect on device 00:1f.2-2 address 4
hub.c: new USB device 00:1f.2-2, assigned address 5
usb.c: USB device 5 (vend/prod 0x7b2/0x4220) is not claimed by any active driver.
root@Osin:~#


Thank you very much for your help.

egag 03-29-2005 05:44 PM

well...the *relevant * lines are just the last few.
maybe next time , when you want to look at the last system-messages use :

$tail -n 20 /var/log/messages

( here you'll get the last 20 lines. )

and for the cable-modem connection.......maybe possible to buy a cheap eth.-card ?

it'll save a you a lot of trubbles......

egag

win32sux 03-29-2005 07:02 PM

Quote:

Originally posted by Jenny81
Hi, I tried loading that modules but I got this errors
root@Osin:~# modprobe usb-ohci
/lib/modules/2.4.29/kernel/drivers/usb/host/usb-ohci.o.gz: init_module:No such device
/lib/modules/2.4.29/kernel/drivers/usb/host/usb-ohci.o.gz: Hint: insmoderrors can be caused by incorrect module parameters, including invalid IO or IRQ parameters.
You may find more information in syslog or the output from dmesg
/lib/modules/2.4.29/kernel/drivers/usb/host/usb-ohci.o.gz: insmod /lib/modules/2.4.29/kernel/drivers/usb/host/usb-ohci.o.gz failed
/lib/modules/2.4.29/kernel/drivers/usb/host/usb-ohci.o.gz: insmod usb-ohci failed
root@Osin:~#

root@Osin:~# modprobe usb-ehci
modprobe: Can't locate module usb-ehci
root@Osin:~#

I really dont know what else to try, thank you very so much for your time though.

okay try with "modprobe usb-uhci"... i found a module with that name in my usb modules dir... might be worth a try...

Jenny81 03-30-2005 12:38 AM

I have tried modprobe usb-uhci but I get same message I got with modprobe usb-ohci, I found a usb-uhci and usb-ohci in the folder where the source of the kernel is, so I think I might have to compile the kernel and enable support for usb-ohci, I think I'll try that or maybe I will just buy other ethernet card. Thank you very much you all.


All times are GMT -5. The time now is 12:06 AM.