Results 1 to 10 of 13
Hi,
I am new to Linux. I am trying to configure my internet connect connection and so far have had no luck. I have installed debian version 2.6.18.
I am ...
- 04-05-2008 #1Just Joined!
- Join Date
- Apr 2008
- Posts
- 11
Connecting to internet
Hi,
I am new to Linux. I am trying to configure my internet connect connection and so far have had no luck. I have installed debian version 2.6.18.
I am trying to configure a connection via ethernet cable from a router.
When i go to network tools all that is there under network device is "Loopback interface" and it shows an ip address listed but it wont allow me to configure it.
I have tried a few things that i saw being reccomended on the forum by using the command terminal and running a these commands
dmesg |grep eth*
ifconfig eth0 up
dhclient eth0
but with no success as I am not entirely sure what i am doing.
If anyone could give me some direction i would appreciate it. Let me know if you need any more info.
- 04-05-2008 #2Linux Newbie
- Join Date
- Mar 2008
- Location
- Hyderabad
- Posts
- 109
Send your output of
ifconfig eth0.
and Certainly you can configure with root access.
- 04-05-2008 #3
First of all you need to know the name of the device, so issue this command.
This will show you all your network cards, unless you have a USB card, then you need to useCode:/sbin/lspci |grep net
Post the info here, so we can help you identify the chipset.Code:/sbin/lsusb
Issue this command also.
this will tell us a little about your network, so post the output from that here too.Code:/sbin/ifconfig
I do not respond to private messages asking for Linux help, Please keep it on the forums only.
All new users please read this.** Forum FAQS. ** Adopt an unanswered post.
- 04-05-2008 #4Just Joined!
- Join Date
- Apr 2008
- Posts
- 11
Here is what i get when i type in my the commands.
for "ifconfig -a" i get:
etho Link encap:UNSPEC HWaddr 00-11-D-00-01-6E-71-9B-00-00-00-00-00-00-00-00
UP BROADCAST RUNNING MULTICAST MTU:1008 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:50 dropped:50 overruns:0 frame:0 carrier:0 collisions:0 txqueuelen:1000
RX bytes: 0 (0.0 b) TX bytes:0 (0.0 b)
lo
Link encap: Local Loopback
inet addr: 127.0.0.1 Mask: 255.0.0.0
inet6 addr: ::1/128 Scope:host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:818 errors:0 dropped:0 overruns:0 frame:0
TX packets:818 errors:0 dropped:0 overruns:0 frame:0 carrier:0 collisions:0 txqueuelen:0
RX bytes: 0 (0.0 b) TX bytes:0 (0.0 b)
sit0
Link encap: IPv6-in-IPv4
NOARP MTU:1480 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 frame:0 carrier:0 collisions:0 txqueuelen:0
RX bytes: 0 (0.0 b) TX bytes:0 (0.0 b)
for "cat /etc/network/interfaces" it says:
# This file describes the netwrk interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
#The loopback network interface
auto lo
iface lo inet loopback
"lspci | grep -i net" i get:
00:19:0 Ethernet controller : Intel Corporation Unknown device 294c (rev 02)
For "dh client eth0" i get:
Listening on LPF/eth0/
Sending on LPF/eth0/
Sending on Socket?fallback
DHCPDISCOVER on the eth0 to 255.255.255.255 port 67 interal 7
DHCPDISCOVER on the eth0 to 255.255.255.255 port 67 interal 8
DHCPDISCOVER on the eth0 to 255.255.255.255 port 67 interal 18
DHCPDISCOVER on the eth0 to 255.255.255.255 port 67 interal 17
DHCPDISCOVER on the eth0 to 255.255.255.255 port 67 interal 10
DHCPDISCOVER on the eth0 to 255.255.255.255 port 67 interal 1
No DHCPOFFERS recevied.
No Working leaes in persistane database - sleeping.
When I try to run any of those commands you gave it it does not work. When i enter the /sbin/ is says that that there is no such file.
if i remove the s i get these results.
/sbin/lspci |grep net :
00:19:0 Ethernet controller : Intel Corporation Unknown device 294c (rev 02)
as for the /sbin/lsusb command it only says no such directory.
for /sbin/ifconfig: i get the same results as when i ran the command the other command
etho Link encap:UNSPEC HWaddr 00-11-D-00-01-6E-71-9B-00-00-00-00-00-00-00-00
UP BROADCAST RUNNING MULTICAST MTU:1008 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:50 dropped:50 overruns:0 frame:0 carrier:0 collisions:0 txqueuelen:1000
RX bytes: 0 (0.0 b) TX bytes:0 (0.0 b)
lo
Link encap: Local Loopback
inet addr: 127.0.0.1 Mask: 255.0.0.0
inet6 addr: ::1/128 Scope:host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:818 errors:0 dropped:0 overruns:0 frame:0
TX packets:818 errors:0 dropped:0 overruns:0 frame:0 carrier:0 collisions:0 txqueuelen:0
RX bytes: 0 (0.0 b) TX bytes:0 (0.0 b)
Im not sure what the /sbin/ is but i cannot seem to access it.
- 04-05-2008 #5
Ok, you seem to have eth0 present, notice that is a zero, not an O. eth0.
Try this from the command line as root.
ifconfig eth0 up
dh client eth0
Still getting the same errors as above?
The errors you are getting when you run those commandsthat I posted is because I have never used Debian and I don't know the correct syntax and directory structure. Nothing to worry about.
By the way, are you using a router?I do not respond to private messages asking for Linux help, Please keep it on the forums only.
All new users please read this.** Forum FAQS. ** Adopt an unanswered post.
- 04-05-2008 #6Just Joined!
- Join Date
- Apr 2008
- Posts
- 11
sorry that must have been a type-o. I have been using eth0. And yes i am using a router.
- 04-05-2008 #7I do not respond to private messages asking for Linux help, Please keep it on the forums only.
All new users please read this.** Forum FAQS. ** Adopt an unanswered post.
- 04-05-2008 #8Just Joined!
- Join Date
- Apr 2008
- Posts
- 11
heres are the module listed when i input lsmod:
Module-------------- Size Used---- by
nls_utf8 -------------- 2208 ---- 1
nls_cp437 -------------- 5920 ---- 1
vfat -------------- 11872 ----1
fat -------------- 46652 ----1 vfat
ppdev -------------- 8676 ----0
parport_pc -------------- 32132 ----0
lp -------------- 11012 ----0
parport -------------- 33256 ----3 ppdev,parport_pc,lp
button -------------- 6672 ----0
ac -------------- 5188 ----0
battery -------------- 9636 ----0
dm_snapshot------------ 15552 ----0
dm_mirror ------------ 19152 ----0
dm_mod ------------- 50232 ----2 dm_snapshot,dm_mirror
sbp2 -------------- 20840 ----0
loop -------------- 15048 ----0
joydev -------------- 9088 ----0
tsdev -------------- 7520 ----0
usblp -------------- 12768 ----0
i2c_i801 -------------- 7468 ----0
psmouse -------------- 35016 ----0
i2c_core -------------- 19680 ----1 i2c_i801
evdev -------------- 9088 ----2
serio_raw -------------- 6660 ----0
usbhid -------------- 37248 ----0
rtc -------------- 12372 ----0
pcspkr -------------- 3072 ----0
sg -------------- 31292 ----0
sr_mod -------------- 15876 ----0
cdrom -------------- 32544 ----1 sr_mod
eth1394 -------------- 18212 ----0
usb_storage ------------ 72000 ----1
ext3 -------------- 119240 ----1
jbd -------------- 52456 ----1 ext3
mbcache -------------- 8356 ----1 ext3
sd_mod -------------- 19040 ----5
ohci1394 -------------- 30800 ----0
ehci_hcd -------------- 28136 ----0
ieee1394 -------------- 86904 ----3 sbp2,eth1394,ohci1394
ata_piix -------------- 13896 ----2
uhci_hcd -------------- 21164 ----0
libata -------------- 89396 ----1 ata_piix
scsi_mod -------------- 124168 ----6 sbp2,sg,sr_mod,usb_storage,sd_mod,libata
generic -------------- 4868 ----0 [permanent]
ide_core -------------- 110504 ----2 usb_storage,generic
usbcore -------------- 112644 ----6 usblp,usbhid,usb_storage,ehci_hcd,uhci_hcd
thermal -------------- 13608 ----0
processor ------------- 28840 ----1 thermal
fan ---------------- 4804 ----0
- 04-05-2008 #9
Well, I don't see the e1000 module, so try loading it with this command.
if you get no errors and no response, then type this nextCode:modprobe e1000
look for any messages about your network card.Code:dmesg
then you can try bringing eth0 up again.
Code:ifconfig eth0 up
Code:dh client eth0
I do not respond to private messages asking for Linux help, Please keep it on the forums only.
All new users please read this.** Forum FAQS. ** Adopt an unanswered post.
- 04-05-2008 #10Just Joined!
- Join Date
- Apr 2008
- Posts
- 11
alright,
so when i run modprobe e1000 no message or errors occur.
so i typed in dmsg and got this:
Allocate Port Service[0000:00:1c.0
cie00]
Allocate Port Service[0000:00:1c.0
cie02]
PCI: Setting latency timer of device 0000:00:1c.1 to 64
assign_interrupt_mode Found MSI capability
Allocate Port Service[0000:00:1c.1
cie00]
Allocate Port Service[0000:00:1c.1
cie02]
isapnp: Scanning for PnP cards...
isapnp: No Plug & Play device found
hpet_resources: 0xfed00000 is busy
Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
RAMDISK driver initialized: 16 RAM disks of 8192K size 1024 blocksize
PNP: No PS/2 controller found. Probing ports directly.
serio: i8042 AUX port at 0x60,0x64 irq 12
serio: i8042 KBD port at 0x60,0x64 irq 1
mice: PS/2 mouse device common for all mice
TCP bic registered
NET: Registered protocol family 1
NET: Registered protocol family 17
NET: Registered protocol family 8
NET: Registered protocol family 20
Starting balanced_irq
Using IPI No-Shortcut mode
ACPI: (supports S0 S1 S3 S4 S5)
Freeing unused kernel memory: 196k freed
Time: tsc clocksource has been installed.
usbcore: registered new driver usbfs
usbcore: registered new driver hub
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
SCSI subsystem initialized
USB Universal Host Controller Interface driver v3.0
ACPI: PCI Interrupt 0000:00:1a.0[A] -> GSI 16 (level, low) -> IRQ 169
PCI: Setting latency timer of device 0000:00:1a.0 to 64
uhci_hcd 0000:00:1a.0: UHCI Host Controller
uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
uhci_hcd 0000:00:1a.0: irq 169, io base 0x0000b080
usb usb1: configuration #1 chosen from 1 choice
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 2 ports detected
libata version 2.00 loaded.
ieee1394: Initialized config rom entry `ip1394'
ACPI: PCI Interrupt 0000:00:1a.1[B] -> GSI 21 (level, low) -> IRQ 217
PCI: Setting latency timer of device 0000:00:1a.1 to 64
uhci_hcd 0000:00:1a.1: UHCI Host Controller
uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 2
uhci_hcd 0000:00:1a.1: irq 217, io base 0x0000b400
usb usb2: configuration #1 chosen from 1 choice
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 2 ports detected
ACPI: PCI Interrupt 0000:00:1d.0[A] -> GSI 23 (level, low) -> IRQ 225
PCI: Setting latency timer of device 0000:00:1d.0 to 64
uhci_hcd 0000:00:1d.0: UHCI Host Controller
uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 3
uhci_hcd 0000:00:1d.0: irq 225, io base 0x0000b480
usb usb3: configuration #1 chosen from 1 choice
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 2 ports detected
ACPI: PCI Interrupt 0000:00:1d.1[B] -> GSI 19 (level, low) -> IRQ 233
PCI: Setting latency timer of device 0000:00:1d.1 to 64
uhci_hcd 0000:00:1d.1: UHCI Host Controller
uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 4
uhci_hcd 0000:00:1d.1: irq 233, io base 0x0000b800
usb usb4: configuration #1 chosen from 1 choice
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 2 ports detected
ACPI: PCI Interrupt 0000:00:1d.2[C] -> GSI 18 (level, low) -> IRQ 50
PCI: Setting latency timer of device 0000:00:1d.2 to 64
uhci_hcd 0000:00:1d.2: UHCI Host Controller
uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 5
uhci_hcd 0000:00:1d.2: irq 50, io base 0x0000b880
usb usb5: configuration #1 chosen from 1 choice
hub 5-0:1.0: USB hub found
hub 5-0:1.0: 2 ports detected
usb 2-2: new full speed USB device using uhci_hcd and address 2
ACPI: PCI Interrupt 0000:00:1d.3[D] -> GSI 16 (level, low) -> IRQ 169
PCI: Setting latency timer of device 0000:00:1d.3 to 64
uhci_hcd 0000:00:1d.3: UHCI Host Controller
uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 6
uhci_hcd 0000:00:1d.3: irq 169, io base 0x0000bc00
usb usb6: configuration #1 chosen from 1 choice
hub 6-0:1.0: USB hub found
hub 6-0:1.0: 2 ports detected
ACPI: PCI Interrupt 0000:01:05.0[A] -> GSI 20 (level, low) -> IRQ 58
ACPI: PCI Interrupt 0000:00:1a.7[C] -> GSI 18 (level, low) -> IRQ 50
PCI: Setting latency timer of device 0000:00:1a.7 to 64
ehci_hcd 0000:00:1a.7: EHCI Host Controller
ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 7
ehci_hcd 0000:00:1a.7: debug port 1
PCI: cache line size of 32 is not supported by device 0000:00:1a.7
ehci_hcd 0000:00:1a.7: irq 50, io mem 0xf9cff400
ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
usb usb7: configuration #1 chosen from 1 choice
hub 7-0:1.0: USB hub found
hub 7-0:1.0: 4 ports detected
usb 2-2: unable to read config index 0 descriptor/start
usb 2-2: can't read configurations, error -71
ohci1394: fw-host0: OHCI-1394 1.0 (PCI): IRQ=[58] MMIO=[f9dff000-f9dff7ff] Max Packet=[1024] IR/IT contexts=[8/8]
ACPI: PCI Interrupt 0000:00:1d.7[A] -> GSI 23 (level, low) -> IRQ 225
PCI: Setting latency timer of device 0000:00:1d.7 to 64
ehci_hcd 0000:00:1d.7: EHCI Host Controller
ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 8
ehci_hcd 0000:00:1d.7: debug port 1
PCI: cache line size of 32 is not supported by device 0000:00:1d.7
ehci_hcd 0000:00:1d.7: irq 225, io mem 0xf9cff800
ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
usb usb8: configuration #1 chosen from 1 choice
hub 8-0:1.0: USB hub found
hub 8-0:1.0: 8 ports detected
ata_piix 0000:00:1f.2: version 2.00
ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
ACPI: PCI Interrupt 0000:00:1f.2[B] -> GSI 19 (level, low) -> IRQ 233
PCI: Setting latency timer of device 0000:00:1f.2 to 64
ata1: SATA max UDMA/133 cmd 0x1F0 ctl 0x3F6 bmdma 0xFF90 irq 14
scsi0 : ata_piix
ata1.00: ATA-8, max UDMA7, 625142448 sectors: LBA48 NCQ (depth 0/32)
ata1.00: ata1: dev 0 multi count 16
ata1.01: ATA-8, max UDMA7, 625142448 sectors: LBA48 NCQ (depth 0/32)
ata1.01: ata1: dev 1 multi count 16
ata1.00: configured for UDMA/133
ata1.01: configured for UDMA/133
Vendor: ATA Model: SAMSUNG HD320KJ Rev: CP10
Type: Direct-Access ANSI SCSI revision: 05
Vendor: ATA Model: SAMSUNG HD320KJ Rev: CP10
Type: Direct-Access ANSI SCSI revision: 05
ata2: SATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xFF98 irq 15
scsi1 : ata_piix
ata2.00: ATAPI, max UDMA/33
usb 7-4: new high speed USB device using ehci_hcd and address 2
ata2.00: configured for UDMA/33
Vendor: HL-DT-ST Model: DVDRRW GSA-H30L Rev: S856
Type: CD-ROM ANSI SCSI revision: 05
ata_piix 0000:00:1f.5: MAP [ P0 P2 P1 P3 ]
ACPI: PCI Interrupt 0000:00:1f.5[B] -> GSI 19 (level, low) -> IRQ 233
PCI: Setting latency timer of device 0000:00:1f.5 to 64
ata3: SATA max UDMA/133 cmd 0xCC00 ctl 0xC882 bmdma 0xC400 irq 233
ata4: SATA max UDMA/133 cmd 0xC800 ctl 0xC482 bmdma 0xC408 irq 233
scsi2 : ata_piix
ATA: abnormal status 0x7F on port 0xCC07
scsi3 : ata_piix
usb 7-4: configuration #1 chosen from 1 choice
ATA: abnormal status 0x7F on port 0xC807
SCSI device sda: 625142448 512-byte hdwr sectors (320073 MB)
sda: Write Protect is off
sda: Mode Sense: 00 3a 00 00
SCSI device sda: drive cache: write back
SCSI device sda: 625142448 512-byte hdwr sectors (320073 MB)
sda: Write Protect is off
sda: Mode Sense: 00 3a 00 00
SCSI device sda: drive cache: write back
sda: sda1 sda3
sd 0:0:0:0: Attached scsi disk sda
SCSI device sdb: 625142448 512-byte hdwr sectors (320073 MB)
sdb: Write Protect is off
sdb: Mode Sense: 00 3a 00 00
SCSI device sdb: drive cache: write back
SCSI device sdb: 625142448 512-byte hdwr sectors (320073 MB)
sdb: Write Protect is off
sdb: Mode Sense: 00 3a 00 00
SCSI device sdb: drive cache: write back
sdb:<6>usb 8-4: new high speed USB device using ehci_hcd and address 2
sdb1 sdb2 <<7>ieee1394: Host added: ID:BUS[0-00:1023] GUID[0011d800016e719b]
sdb5 >
sd 0:0:1:0: Attached scsi disk sdb
usb 8-4: configuration #1 chosen from 1 choice
hub 8-4:1.0: USB hub found
hub 8-4:1.0: 4 ports detected
Attempting manual resume
kjournald starting. Commit interval 5 seconds
EXT3-fs: mounted filesystem with ordered data mode.
usb 8-4.1: new low speed USB device using ehci_hcd and address 5
usb 8-4.1: configuration #1 chosen from 1 choice
usb 8-4.2: new high speed USB device using ehci_hcd and address 6
usb 8-4.2: configuration #1 chosen from 1 choice
Initializing USB Mass Storage driver...
eth1394: eth0: IEEE-1394 IPv4 over 1394 Ethernet (fw-host0)
usb 8-4.3: new low speed USB device using ehci_hcd and address 7
sr0: scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
Uniform CD-ROM driver Revision: 3.20
sr 1:0:0:0: Attached scsi CD-ROM sr0
sd 0:0:0:0: Attached scsi generic sg0 type 0
sd 0:0:1:0: Attached scsi generic sg1 type 0
sr 1:0:0:0: Attached scsi generic sg2 type 5
usb 8-4.3: configuration #1 chosen from 1 choice
input: PC Speaker as /class/input/input0
usb 8-4.4: new full speed USB device using ehci_hcd and address 8
Real Time Clock Driver v1.12ac
usb 8-4.4: configuration #1 chosen from 1 choice
scsi4 : SCSI emulation for USB Mass Storage devices
usb-storage: device found at 6
usb-storage: waiting for device to settle before scanning
scsi5 : SCSI emulation for USB Mass Storage devices
usb-storage: device found at 8
usbcore: registered new driver usb-storage
USB Mass Storage support registered.
usb-storage: waiting for device to settle before scanning
usb 6-1: new low speed USB device using uhci_hcd and address 2
usb 6-1: configuration #1 chosen from 1 choice
usb 6-2: new full speed USB device using uhci_hcd and address 3
usb 6-2: configuration #1 chosen from 1 choice
ACPI: PCI Interrupt 0000:00:1f.3[C] -> GSI 18 (level, low) -> IRQ 50
usbcore: registered new driver hiddev
hiddev96: USB HID v1.00 Device [Formosa21 Beanbag Emulation Device] on usb-0000:00:1d.7-4.1
input: BTC USB Multimedia Cordless Kit as /class/input/input1
input: USB HID v1.11 Keyboard [BTC USB Multimedia Cordless Kit] on usb-0000:00:1d.7-4.3
input: BTC USB Multimedia Cordless Kit as /class/input/input2
input,hiddev97: USB HID v1.11 Mouse [BTC USB Multimedia Cordless Kit] on usb-0000:00:1d.7-4.3
input: Microsoft Microsoft Wireless Optical Desktop� 2.10 as /class/input/input3
input: USB HID v1.11 Keyboard [Microsoft Microsoft Wireless Optical Desktop� 2.10] on usb-0000:00:1d.3-1
ts: Compaq touchscreen protocol output
input: Microsoft Microsoft Wireless Optical Desktop� 2.10 as /class/input/input4
input: USB HID v1.11 Mouse [Microsoft Microsoft Wireless Optical Desktop� 2.10] on usb-0000:00:1d.3-1
drivers/usb/class/usblp.c: usblp0: USB Bidirectional printer dev 3 if 0 alt 1 proto 2 vid 0x03F0 pid 0x1204
usbcore: registered new driver usblp
drivers/usb/class/usblp.c: v0.13: USB Printer Device Class driver
usbcore: registered new driver usbhid
drivers/usb/input/hid-core.c: v2.6:USB HID core driver
Adding 2650684k swap on /dev/sdb5. Priority:-1 extents:1 across:2650684k
EXT3 FS on sdb1, internal journal
Vendor: LEXAR Model: DIGITAL FILM Rev: /W1.
Type: Direct-Access ANSI SCSI revision: 02
Vendor: Generic- Model: Compact Flash Rev: 1.00
Type: Direct-Access ANSI SCSI revision: 00
SCSI device sdc: 251904 512-byte hdwr sectors (129 MB)
sdc: Write Protect is off
sdc: Mode Sense: 0d 00 00 00
sdc: assuming drive cache: write through
sd 4:0:0:0: Attached scsi removable disk sdd
sd 4:0:0:0: Attached scsi generic sg3 type 0
SCSI device sdc: 251904 512-byte hdwr sectors (129 MB)
sdc: Write Protect is off
sdc: Mode Sense: 0d 00 00 00
sdc: assuming drive cache: write through
sdc:<5> Vendor: Generic- Model: SM/xD-Picture Rev: 1.00
Type: Direct-Access ANSI SCSI revision: 00
sdc1
sd 5:0:0:0: Attached scsi removable disk sdc
sd 5:0:0:0: Attached scsi generic sg4 type 0
usb-storage: device scan complete
sd 4:0:0:1: Attached scsi removable disk sde
sd 4:0:0:1: Attached scsi generic sg5 type 0
Vendor: Generic- Model: SD/MMC Rev: 1.00
Type: Direct-Access ANSI SCSI revision: 00
sd 4:0:0:2: Attached scsi removable disk sdf
sd 4:0:0:2: Attached scsi generic sg6 type 0
Vendor: Generic- Model: MS/MS-Pro Rev: 1.00
Type: Direct-Access ANSI SCSI revision: 00
sd 4:0:0:3: Attached scsi removable disk sdg
sd 4:0:0:3: Attached scsi generic sg7 type 0
usb-storage: device scan complete
loop: loaded (max 8 devices)
ieee1394: sbp2: Driver forced to serialize I/O (serialize_io=1)
ieee1394: sbp2: Try serialize_io=0 for better performance
device-mapper: ioctl: 4.7.0-ioctl (2006-06-24) initialised: dm-devel@redhat.com
ACPI: Power Button (FF) [PWRF]
ACPI: Power Button (CM) [PWRB]
lp: driver loaded but no devices found
ppdev: user-space parallel port driver
FAT: utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
usb 8-4.4: USB disconnect, address 8
sd 5:0:0:0: rejecting I/O to device being removed
Buffer I/O error on device sdc1, logical block 5259
lost page write due to I/O error on sdc1
Buffer I/O error on device sdc1, logical block 5260
lost page write due to I/O error on sdc1
Buffer I/O error on device sdc1, logical block 5261
lost page write due to I/O error on sdc1
Buffer I/O error on device sdc1, logical block 5262
lost page write due to I/O error on sdc1
sd 5:0:0:0: rejecting I/O to device being removed
Buffer I/O error on device sdc1, logical block 6007
lost page write due to I/O error on sdc1
Buffer I/O error on device sdc1, logical block 6008
lost page write due to I/O error on sdc1
Buffer I/O error on device sdc1, logical block 6009
lost page write due to I/O error on sdc1
Buffer I/O error on device sdc1, logical block 6010
lost page write due to I/O error on sdc1
Buffer I/O error on device sdc1, logical block 6011
lost page write due to I/O error on sdc1
Buffer I/O error on device sdc1, logical block 6012
lost page write due to I/O error on sdc1
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
sd 5:0:0:0: rejecting I/O to device being removed
usb 8-4.4: new full speed USB device using ehci_hcd and address 9
usb 8-4.4: configuration #1 chosen from 1 choice
scsi6 : SCSI emulation for USB Mass Storage devices
usb-storage: device found at 9
usb-storage: waiting for device to settle before scanning
Vendor: LEXAR Model: DIGITAL FILM Rev: /W1.
Type: Direct-Access ANSI SCSI revision: 02
SCSI device sdc: 251904 512-byte hdwr sectors (129 MB)
sdc: Write Protect is off
sdc: Mode Sense: 0d 00 00 00
sdc: assuming drive cache: write through
SCSI device sdc: 251904 512-byte hdwr sectors (129 MB)
sdc: Write Protect is off
sdc: Mode Sense: 0d 00 00 00
sdc: assuming drive cache: write through
sdc: sdc1
sd 6:0:0:0: Attached scsi removable disk sdc
sd 6:0:0:0: Attached scsi generic sg4 type 0
usb-storage: device scan complete
FAT: utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
usb 8-4.4: USB disconnect, address 9
sd 6:0:0:0: rejecting I/O to device being removed
printk: 45 messages suppressed.
Buffer I/O error on device sdc1, logical block 250
lost page write due to I/O error on sdc1
Buffer I/O error on device sdc1, logical block 251
lost page write due to I/O error on sdc1
sd 6:0:0:0: rejecting I/O to device being removed
Buffer I/O error on device sdc1, logical block 253
lost page write due to I/O error on sdc1
sd 6:0:0:0: rejecting I/O to device being removed
Buffer I/O error on device sdc1, logical block 255
lost page write due to I/O error on sdc1
sd 6:0:0:0: rejecting I/O to device being removed
Buffer I/O error on device sdc1, logical block 257
lost page write due to I/O error on sdc1
sd 6:0:0:0: rejecting I/O to device being removed
Buffer I/O error on device sdc1, logical block 261
lost page write due to I/O error on sdc1
sd 6:0:0:0: rejecting I/O to device being removed
Buffer I/O error on device sdc1, logical block 265
lost page write due to I/O error on sdc1
sd 6:0:0:0: rejecting I/O to device being removed
Buffer I/O error on device sdc1, logical block 492
lost page write due to I/O error on sdc1
sd 6:0:0:0: rejecting I/O to device being removed
Buffer I/O error on device sdc1, logical block 20
lost page write due to I/O error on sdc1
sd 6:0:0:0: rejecting I/O to device being removed
Buffer I/O error on device sdc1, logical block 8
lost page write due to I/O error on sdc1
sd 6:0:0:0: rejecting I/O to device being removed
sd 6:0:0:0: rejecting I/O to device being removed
sd 6:0:0:0: rejecting I/O to device being removed
sd 6:0:0:0: rejecting I/O to device being removed
sd 6:0:0:0: rejecting I/O to device being removed
sd 6:0:0:0: rejecting I/O to device being removed
sd 6:0:0:0: rejecting I/O to device being removed
sd 6:0:0:0: rejecting I/O to device being removed
sd 6:0:0:0: rejecting I/O to device being removed
sd 6:0:0:0: rejecting I/O to device being removed
sd 6:0:0:0: rejecting I/O to device being removed
sd 6:0:0:0: rejecting I/O to device being removed
sd 6:0:0:0: rejecting I/O to device being removed
sd 6:0:0:0: rejecting I/O to device being removed
sd 6:0:0:0: rejecting I/O to device being removed
usb 8-4.4: new full speed USB device using ehci_hcd and address 10
usb 8-4.4: configuration #1 chosen from 1 choice
scsi7 : SCSI emulation for USB Mass Storage devices
usb-storage: device found at 10
usb-storage: waiting for device to settle before scanning
Vendor: LEXAR Model: DIGITAL FILM Rev: /W1.
Type: Direct-Access ANSI SCSI revision: 02
SCSI device sdc: 251904 512-byte hdwr sectors (129 MB)
sdc: Write Protect is off
sdc: Mode Sense: 0d 00 00 00
sdc: assuming drive cache: write through
SCSI device sdc: 251904 512-byte hdwr sectors (129 MB)
sdc: Write Protect is off
sdc: Mode Sense: 0d 00 00 00
sdc: assuming drive cache: write through
sdc: sdc1
sd 7:0:0:0: Attached scsi removable disk sdc
sd 7:0:0:0: Attached scsi generic sg4 type 0
usb-storage: device scan complete
FAT: utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
usb 8-4.4: USB disconnect, address 10
sd 7:0:0:0: rejecting I/O to device being removed
printk: 45 messages suppressed.
Buffer I/O error on device sdc1, logical block 250
lost page write due to I/O error on sdc1
Buffer I/O error on device sdc1, logical block 251
lost page write due to I/O error on sdc1
sd 7:0:0:0: rejecting I/O to device being removed
Buffer I/O error on device sdc1, logical block 253
lost page write due to I/O error on sdc1
sd 7:0:0:0: rejecting I/O to device being removed
Buffer I/O error on device sdc1, logical block 255
lost page write due to I/O error on sdc1
sd 7:0:0:0: rejecting I/O to device being removed
Buffer I/O error on device sdc1, logical block 257
lost page write due to I/O error on sdc1
sd 7:0:0:0: rejecting I/O to device being removed
Buffer I/O error on device sdc1, logical block 261
lost page write due to I/O error on sdc1
sd 7:0:0:0: rejecting I/O to device being removed
Buffer I/O error on device sdc1, logical block 265
lost page write due to I/O error on sdc1
sd 7:0:0:0: rejecting I/O to device being removed
Buffer I/O error on device sdc1, logical block 492
lost page write due to I/O error on sdc1
sd 7:0:0:0: rejecting I/O to device being removed
Buffer I/O error on device sdc1, logical block 20
lost page write due to I/O error on sdc1
sd 7:0:0:0: rejecting I/O to device being removed
Buffer I/O error on device sdc1, logical block 8
lost page write due to I/O error on sdc1
sd 7:0:0:0: rejecting I/O to device being removed
sd 7:0:0:0: rejecting I/O to device being removed
sd 7:0:0:0: rejecting I/O to device being removed
sd 7:0:0:0: rejecting I/O to device being removed
sd 7:0:0:0: rejecting I/O to device being removed
sd 7:0:0:0: rejecting I/O to device being removed
sd 7:0:0:0: rejecting I/O to device being removed
sd 7:0:0:0: rejecting I/O to device being removed
sd 7:0:0:0: rejecting I/O to device being removed
sd 7:0:0:0: rejecting I/O to device being removed
sd 7:0:0:0: rejecting I/O to device being removed
sd 7:0:0:0: rejecting I/O to device being removed
sd 7:0:0:0: rejecting I/O to device being removed
sd 7:0:0:0: rejecting I/O to device being removed
sd 7:0:0:0: rejecting I/O to device being removed
sd 7:0:0:0: rejecting I/O to device being removed
usb 8-4.4: new full speed USB device using ehci_hcd and address 11
usb 8-4.4: configuration #1 chosen from 1 choice
scsi8 : SCSI emulation for USB Mass Storage devices
usb-storage: device found at 11
usb-storage: waiting for device to settle before scanning
Vendor: LEXAR Model: DIGITAL FILM Rev: /W1.
Type: Direct-Access ANSI SCSI revision: 02
SCSI device sdc: 251904 512-byte hdwr sectors (129 MB)
sdc: Write Protect is off
sdc: Mode Sense: 0d 00 00 00
sdc: assuming drive cache: write through
SCSI device sdc: 251904 512-byte hdwr sectors (129 MB)
sdc: Write Protect is off
sdc: Mode Sense: 0d 00 00 00
sdc: assuming drive cache: write through
sdc: sdc1
sd 8:0:0:0: Attached scsi removable disk sdc
sd 8:0:0:0: Attached scsi generic sg4 type 0
usb-storage: device scan complete
FAT: utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
sdc : READ CAPACITY failed.
sdc : status=0, message=00, host=7, driver=00
sdc : sense not available.
sdc: Write Protect is off
sdc: Mode Sense: 00 00 00 00
sdc: assuming drive cache: write through
sdc : READ CAPACITY failed.
sdc : status=0, message=00, host=7, driver=00
sdc : sense not available.
sdc: Write Protect is off
sdc: Mode Sense: 00 00 00 00
sdc: assuming drive cache: write through
sdc:<6>usb 8-4.4: USB disconnect, address 11
printk: 45 messages suppressed.
Buffer I/O error on device sdc, logical block 0
Buffer I/O error on device sdc, logical block 0
unable to read partition table
Intel(R) PRO/1000 Network Driver - version 7.1.9-k4-NAPI
Copyright (c) 1999-2006 Intel Corporation.
e100: Intel(R) PRO/100 Network Driver, 3.5.10-k2-NAPI
e100: Copyright(c) 1999-2005 Intel Corporation
usb 8-4.4: new full speed USB device using ehci_hcd and address 12
usb 8-4.4: configuration #1 chosen from 1 choice
scsi9 : SCSI emulation for USB Mass Storage devices
usb-storage: device found at 12
usb-storage: waiting for device to settle before scanning
Vendor: LEXAR Model: DIGITAL FILM Rev: /W1.
Type: Direct-Access ANSI SCSI revision: 02
SCSI device sdc: 251904 512-byte hdwr sectors (129 MB)
sdc: Write Protect is off
sdc: Mode Sense: 0d 00 00 00
sdc: assuming drive cache: write through
SCSI device sdc: 251904 512-byte hdwr sectors (129 MB)
sdc: Write Protect is off
sdc: Mode Sense: 0d 00 00 00
sdc: assuming drive cache: write through
sdc: sdc1
sd 9:0:0:0: Attached scsi removable disk sdc
sd 9:0:0:0: Attached scsi generic sg4 type 0
usb-storage: device scan complete
FAT: utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
debian:/home/mike#
I am not sure if any of those messages were significant.
Then when i input "ifconfig eth0" up I get no message.
when i put in "dhclient eth0" i get:
Listening on LPF/eth0/
Sending on LPF/eth0/
Sending on Socket?fallback
DHCPDISCOVER on the eth0 to 255.255.255.255 port 67 interal 7
DHCPDISCOVER on the eth0 to 255.255.255.255 port 67 interal 10
DHCPDISCOVER on the eth0 to 255.255.255.255 port 67 interal 10
DHCPDISCOVER on the eth0 to 255.255.255.255 port 67 interal 11
DHCPDISCOVER on the eth0 to 255.255.255.255 port 67 interal 12
DHCPDISCOVER on the eth0 to 255.255.255.255 port 67 interal 11
No DHCPOFFERS recevied.
No working lease in persistent database - sleeping.
I'm still not really sure what this means


Reply With Quote

