Sie sind nicht angemeldet.

Lieber Besucher, herzlich willkommen bei: GentooForum.de. Falls dies Ihr erster Besuch auf dieser Seite ist, lesen Sie sich bitte die Hilfe durch. Dort wird Ihnen die Bedienung dieser Seite näher erläutert. Darüber hinaus sollten Sie sich registrieren, um alle Funktionen dieser Seite nutzen zu können. Benutzen Sie das Registrierungsformular, um sich zu registrieren oder informieren Sie sich ausführlich über den Registrierungsvorgang. Falls Sie sich bereits zu einem früheren Zeitpunkt registriert haben, können Sie sich hier anmelden.

1

20.12.2016, 13:02

Netzwerkinterface: Modul wird beim Booten geladen und wieder entladen(?)

Hallo,

das Problemkind hat zwei Netzwerkkarten, eine 3Com (eth0) und eine Realtek RTL-8029 (eth1).Die Module (3c509 und e2k_pci) sind in /etc/conf.d/modules eingetragen. Laut Bootmeldung (Openrc) werden die Module geladen (* Loading module ne2k_pci ... [ ok ]), beim Starten der Interfaces wird allerdings nur eth0 (3c509) gestartet, während der Start von eth1 scheitert:

Quellcode

1
2
3
4
 * Bringing up interface eth1
 *   ERROR: interface eth1 does not exist
 *   Ensure that you have loaded the correct kernel module for your hardware
 * ERROR: net.eth1 failed to start

Ein "lsmod" auch zutage, daß e2k_pci tatsächlich nicht (mehr?) geladen ist.

Allerdings kann ich problemlos händisch das Modul e2k_pci laden und danach eth1 hochfahren. Seltsam.

Hat jemand eine Idee, was da vor sich gehen oder wie man dem Phänomen beikommen könnte?

2

01.01.2017, 08:16

Poste mal die Ausgabe von #ifconfig -a und #dmesg

3

04.01.2017, 13:58

Momentan habe ich die 3c509 fest im Kernel verschraubt. Mit der Brechstange klappt das dann demnach also schon. Ist ganz nebenbei bemerkt eine ISA-Karte.

Hier die gewünschten Informationen:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.2.3  netmask 255.255.255.0  broadcast 192.168.2.255
        ether 00:50:bf:04:38:bc  txqueuelen 1000  (Ethernet)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
        device interrupt 11  base 0xdf80

eth1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.30.3  netmask 255.255.255.0  broadcast 192.168.30.255
        ether 00:60:97:92:be:9d  txqueuelen 1000  (Ethernet)
        RX packets 391  bytes 53140 (51.8 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 217  bytes 67072 (65.5 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
        device interrupt 5  base 0x300

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        loop  txqueuelen 1  (Local Loopback)
        RX packets 2  bytes 140 (140.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 2  bytes 140 (140.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0


Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
[    0.000000] Linux version 4.4.26-gentoo (root@ocimum) (gcc version 4.9.3 (Gentoo 4.9.3 p1.5, pie-0.6.4) ) #4 Wed Dec 21 00:17:57 CET 2016
[    0.000000] x86/fpu: Legacy x87 FPU detected.
[    0.000000] x86/fpu: Using 'lazy' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000002ffeffff] usable
[    0.000000] BIOS-e820: [mem 0x000000002fff0000-0x000000002fff7fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000002fff8000-0x000000002fffffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fffe0000-0x00000000ffffffff] reserved
[    0.000000] Notice: NX (Execute Disable) protection missing in CPU!
[    0.000000] Legacy DMI 2.0 present.
[    0.000000] DMI: System Manufacturer System Name/ALADDIN5, BIOS 0626 07/15/95
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x2fff0 max_arch_pfn = 0x100000
[    0.000000] initial memory mapped: [mem 0x00000000-0x01ffffff]
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] BRK [0x01a02000, 0x01a02fff] PGTABLE
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F6B00 000014 (v00 AMIINT)
[    0.000000] ACPI: RSDT 0x000000002FFF0000 000028 (v01 ALi_            00000000 MSFT 00000097)
[    0.000000] ACPI: FACP 0x000000002FFF0030 000074 (v01 ALi_            00000000 MSFT 00000097)
[    0.000000] ACPI: DSDT 0x000000002FFF00B0 002212 (v01 GBT    AMI-ACPI 00001000 MSFT 0100000A)
[    0.000000] ACPI: FACS 0x000000002FFF8000 000040
[    0.000000] 767MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 2fff0000
[    0.000000]   low ram: 0 - 2fff0000
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   Normal   [mem 0x0000000001000000-0x000000002ffeffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000002ffeffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000002ffeffff]
[    0.000000] On node 0 totalpages: 196494
[    0.000000] free_area_init_node: node 0, pgdat c18f9420, node_mem_map ef9f0020
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   Normal zone: 1504 pages used for memmap
[    0.000000]   Normal zone: 192496 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] No local APIC present or hardware disabled
[    0.000000] APIC: disable apic facility
[    0.000000] APIC: switched to apic NOOP
[    0.000000] e820: [mem 0x30000000-0xfebfffff] available for PCI devices
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
[    0.000000] pcpu-alloc: [0] 0 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 194958
[    0.000000] Kernel command line: root=/dev/md3 "video=1600x1200" "fbcon=scrollback:128" "clocksource=tsc"
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] Memory: 768652K/785976K available (6178K kernel code, 578K rwdata, 2480K rodata, 452K init, 512K bss, 17324K reserved, 0K cma-reserved)
[    0.000000] virtual kernel memory layout:
                   fixmap  : 0xfffa3000 - 0xfffff000   ( 368 kB)
                   vmalloc : 0xf07f0000 - 0xfffa1000   ( 247 MB)
                   lowmem  : 0xc0000000 - 0xefff0000   ( 767 MB)
                     .init : 0xc1908000 - 0xc1979000   ( 452 kB)
                     .data : 0xc1608c75 - 0xc1906a20   (3063 kB)
                     .text : 0xc1000000 - 0xc1608c75   (6179 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.000000] NR_IRQS:2304 nr_irqs:32 16
[    0.000000] CPU 0 irqstacks, hard=ef418000 soft=ef41a000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 551.280 MHz processor
[    0.004011] Calibrating delay loop (skipped), value calculated using timer frequency.. 1102.56 BogoMIPS (lpj=2205120)
[    0.004198] pid_max: default: 32768 minimum: 301
[    0.004333] ACPI: Core revision 20150930
[    0.021706] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    0.021888] ACPI: setting ELCR to 0200 (from 0e00)
[    0.022090] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.022183] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.025339] Enabling new style K6 write allocation for 767 Mb
[    0.025468] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.025550] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.025630] CPU: AMD-K6(tm)-III Processor (family: 0x5, model: 0xd, stepping: 0x4)
[    0.026859] Performance Events: no PMU driver, software events only.
[    0.028479] devtmpfs: initialized
[    0.029819] PM: Registering ACPI NVS region [mem 0x2fff8000-0x2fffffff] (32768 bytes)
[    0.030268] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.031630] NET: Registered protocol family 16
[    0.032900] cpuidle: using governor ladder
[    0.033016] cpuidle: using governor menu
[    0.033328] clocksource: pit: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1601818034827 ns
[    0.033517] ACPI: bus type PCI registered
[    0.039869] PCI: PCI BIOS revision 2.10 entry at 0xfdb41, last bus=1
[    0.039962] PCI: Using configuration type 1 for base access
[    0.087095] ACPI: Added _OSI(Module Device)
[    0.087202] ACPI: Added _OSI(Processor Device)
[    0.087283] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.087364] ACPI: Added _OSI(Processor Aggregator Device)
[    0.097497] ACPI: Interpreter enabled
[    0.097696] ACPI: (supports S0 S1 S5)
[    0.097778] ACPI: Using PIC for interrupt routing
[    0.098118] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.131926] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.132055] acpi PNP0A03:00: _OSC: OS supports [Segments]
[    0.132169] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    0.132272] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.132832] acpi PNP0A03:00: ignoring host bridge window [mem 0x000cb000-0x000dffff window] (conflicts with Video ROM [mem 0x000c0000-0x000cebff])
[    0.133791] PCI host bridge to bus 0000:00
[    0.133899] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.133990] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.134079] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.134170] pci_bus 0000:00: root bus resource [mem 0x30000000-0xffdfffff window]
[    0.134263] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.134387] pci 0000:00:00.0: [10b9:1541] type 00 class 0x060000
[    0.134433] pci 0000:00:00.0: reg 0x10: [mem 0xe0000000-0xe3ffffff]
[    0.134974] pci 0000:00:01.0: [10b9:5243] type 01 class 0x060400
[    0.135463] pci 0000:00:02.0: [10b9:5237] type 00 class 0x0c0310
[    0.135493] pci 0000:00:02.0: reg 0x10: [mem 0xdffff000-0xdfffffff]
[    0.136130] pci 0000:00:07.0: [10b9:1533] type 00 class 0x060100
[    0.136718] pci 0000:00:09.0: [9005:0080] type 00 class 0x010000
[    0.136753] pci 0000:00:09.0: reg 0x10: [io  0xdc00-0xdcff]
[    0.136773] pci 0000:00:09.0: reg 0x14: [mem 0xdfffe000-0xdfffefff 64bit]
[    0.136803] pci 0000:00:09.0: reg 0x30: [mem 0xdffc0000-0xdffdffff pref]
[    0.137264] pci 0000:00:0a.0: [10ec:8029] type 00 class 0x020000
[    0.137293] pci 0000:00:0a.0: reg 0x10: [io  0xdf80-0xdf9f]
[    0.138076] pci 0000:00:0f.0: [10b9:5229] type 00 class 0x0101fa
[    0.138127] pci 0000:00:0f.0: reg 0x20: [io  0xffa0-0xffaf]
[    0.138150] pci 0000:00:0f.0: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    0.138251] pci 0000:00:0f.0: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    0.138339] pci 0000:00:0f.0: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    0.138428] pci 0000:00:0f.0: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    0.139538] pci 0000:01:00.0: [10de:0282] type 00 class 0x030000
[    0.139580] pci 0000:01:00.0: reg 0x10: [mem 0xce000000-0xceffffff]
[    0.139596] pci 0000:01:00.0: reg 0x14: [mem 0xc0000000-0xc7ffffff pref]
[    0.139628] pci 0000:01:00.0: reg 0x30: [mem 0xcfee0000-0xcfefffff pref]
[    0.140237] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.140347] pci 0000:00:01.0:   bridge window [io  0xc000-0xcfff]
[    0.140361] pci 0000:00:01.0:   bridge window [mem 0xcde00000-0xcfefffff]
[    0.140373] pci 0000:00:01.0:   bridge window [mem 0xbdc00000-0xcdcfffff pref]
[    0.140397] pci_bus 0000:00: on NUMA node 0
[    0.146937] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
[    0.148664] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)
[    0.150095] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
[    0.151454] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11 12 14 15), disabled.
[    0.152909] ACPI: PCI Interrupt Link [LNKU] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
[    0.154824] vgaarb: setting as boot device: PCI:0000:01:00.0
[    0.154935] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.155019] vgaarb: loaded
[    0.155099] vgaarb: bridge control possible 0000:01:00.0
[    0.156440] SCSI subsystem initialized
[    0.157370] libata version 3.00 loaded.
[    0.157431] ACPI: bus type USB registered
[    0.157887] usbcore: registered new interface driver usbfs
[    0.158156] usbcore: registered new interface driver hub
[    0.158353] usbcore: registered new device driver usb
[    0.160243] wmi: Mapper loaded
[    0.160554] PCI: Using ACPI for IRQ routing
[    0.160653] PCI: pci_cache_line_size set to 32 bytes
[    0.160719] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.160729] e820: reserve RAM buffer [mem 0x2fff0000-0x2fffffff]
[    0.162133] amd_nb: Cannot enumerate AMD northbridges
[    0.162283] clocksource: Switched to clocksource pit
[    0.213814] pnp: PnP ACPI init
[    0.215916] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.216748] pnp 00:01: Plug and Play ACPI device, IDs PNP0f03 PNP0f13 (active)
[    0.217164] pnp 00:02: Plug and Play ACPI device, IDs PNP030b (active)
[    0.217915] pnp 00:03: [dma 2]
[    0.218439] pnp 00:03: Plug and Play ACPI device, IDs PNP0700 (active)
[    0.220849] pnp 00:04: Plug and Play ACPI device, IDs PNP0400 (active)
[    0.223300] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.225402] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.228054] pnp: PnP ACPI: found 7 devices
[    0.228182] PnPBIOS: Disabled by ACPI PNP
[    0.263334] PM-Timer running at invalid rate: 200% of normal - aborting.
[    0.263735] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.263836] pci 0000:00:01.0:   bridge window [io  0xc000-0xcfff]
[    0.263930] pci 0000:00:01.0:   bridge window [mem 0xcde00000-0xcfefffff]
[    0.264022] pci 0000:00:01.0:   bridge window [mem 0xbdc00000-0xcdcfffff pref]
[    0.264120] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.264131] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.264141] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.264152] pci_bus 0000:00: resource 7 [mem 0x30000000-0xffdfffff window]
[    0.264162] pci_bus 0000:01: resource 0 [io  0xc000-0xcfff]
[    0.264172] pci_bus 0000:01: resource 1 [mem 0xcde00000-0xcfefffff]
[    0.264182] pci_bus 0000:01: resource 2 [mem 0xbdc00000-0xcdcfffff pref]
[    0.264383] NET: Registered protocol family 2
[    0.265592] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    0.265935] TCP bind hash table entries: 8192 (order: 3, 32768 bytes)
[    0.266189] TCP: Hash tables configured (established 8192 bind 8192)
[    0.266731] UDP hash table entries: 512 (order: 1, 8192 bytes)
[    0.266884] UDP-Lite hash table entries: 512 (order: 1, 8192 bytes)
[    0.267420] NET: Registered protocol family 1
[    0.268238] RPC: Registered named UNIX socket transport module.
[    0.268337] RPC: Registered udp transport module.
[    0.268416] RPC: Registered tcp transport module.
[    0.268495] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.270670] ACPI: PCI Interrupt Link [LNKU] enabled at IRQ 10
[    0.270778] PCI: setting IRQ 10 as level-triggered
[    0.271037] pci 0000:00:07.0: Activating ISA DMA hang workarounds
[    0.271155] pci 0000:01:00.0: Video device with shadowed ROM
[    0.271163] PCI: CLS 32 bytes, default 32
[    0.275375] futex hash table entries: 256 (order: -1, 3072 bytes)
[    0.275578] audit: initializing netlink subsys (disabled)
[    0.275739] audit: type=2000 audit(1483526089.272:1): initialized
[    0.278601] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    0.317669] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[    0.318679] ntfs: driver 2.1.32 [Flags: R/O].
[    0.321492] io scheduler noop registered
[    0.321600] io scheduler deadline registered
[    0.321808] io scheduler cfq registered (default)
[    0.501520] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.506492] 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.512335] 00:06: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    0.515907] Linux agpgart interface v0.103
[    0.516094] agpgart-ali 0000:00:00.0: ALi M1541 chipset
[    0.522196] agpgart-ali 0000:00:00.0: AGP aperture is 64M @ 0xe0000000
[    0.523020] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[    0.523142] ACPI: Sleep Button [SLPB]
[    0.523751] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.523853] ACPI: Power Button [PWRF]
[    0.524478] tsc: Marking TSC unstable due to TSC halts in idle
[    0.524608] ACPI: acpi_idle registered with cpuidle
[    0.524897] Warning: Processor Platform Limit event detected, but not handled.
[    0.524982] Consider compiling CPUfreq support into your kernel.
[    0.526710] isapnp: Scanning for PnP cards...
[    0.880662] isapnp: No Plug & Play device found
[    0.880958] [drm] Initialized drm 1.1.0 20060810
[    0.883308] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11
[    0.883414] PCI: setting IRQ 11 as level-triggered
[    0.883955] nouveau 0000:01:00.0: NVIDIA NV28 (028200a1)
[    0.969486] nouveau 0000:01:00.0: bios: version 04.28.20.21.00
[    0.974241] agpgart-ali 0000:00:00.0: AGP 1.0 bridge
[    0.974368] agpgart-ali 0000:00:00.0: putting AGP V2 device into 2x mode
[    0.974470] nouveau 0000:01:00.0: putting AGP V2 device into 2x mode
[    0.974693] nouveau 0000:01:00.0: tmr: unknown input clock freq
[    0.974822] nouveau 0000:01:00.0: fb: 128 MiB SDRAM
[    0.996430] [TTM] Zone  kernel: Available graphics memory: 384326 kiB
[    0.996535] [TTM] Initializing pool allocator
[    0.996727] nouveau 0000:01:00.0: DRM: VRAM: 127 MiB
[    0.996813] nouveau 0000:01:00.0: DRM: GART: 64 MiB
[    0.996905] nouveau 0000:01:00.0: DRM: BMP version 5.36
[    0.996999] nouveau 0000:01:00.0: DRM: DCB version 2.2
[    0.997091] nouveau 0000:01:00.0: DRM: DCB outp 00: 02000310 000088b8
[    0.997183] nouveau 0000:01:00.0: DRM: DCB outp 01: 02110302 00000010
[    0.997273] nouveau 0000:01:00.0: DRM: DCB outp 02: 01010300 000088b8
[    0.997361] nouveau 0000:01:00.0: DRM: DCB outp 03: 01120321 00000000
[    1.002238] nouveau 0000:01:00.0: DRM: Saving VGA fonts
[    1.040344] nouveau 0000:01:00.0: DRM: TV-1 has no encoders, removing
[    1.041570] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    1.041663] [drm] Driver supports precise vblank timestamp query.
[    1.056051] nouveau 0000:01:00.0: DRM: MM: using M2MF for buffer copies
[    1.127293] nouveau 0000:01:00.0: DRM: allocated 1600x1200 fb: 0x9000, bo ef670c00
[    1.128106] fbcon: nouveaufb (fb0) is primary device
[    1.219880] Console: switching to colour frame buffer device 200x75
[    1.226798] nouveau 0000:01:00.0: fb0: nouveaufb frame buffer device
[    1.226857] [drm] Initialized nouveau 1.3.1 20120801 for 0000:01:00.0 on minor 0
[    1.227777] parport_pc 00:04: reported by Plug and Play ACPI
[    1.228123] parport0: PC-style at 0x378, irq 7 [PCSPP(,...)]
[    1.248390] Floppy drive(s): fd0 is 1.44M
[    1.252616] loop: module loaded
[    1.255866] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 9
[    1.255962] PCI: setting IRQ 9 as level-triggered
[    1.465975] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x7f245da955, max_idle_ns: 440795211802 ns
[    1.466110] clocksource: Switched to clocksource tsc
[    1.469520] FDC 0 is a post-1991 82077
[    6.473769] scsi host0: Adaptec AIC7XXX EISA/VLB/PCI SCSI HBA DRIVER, Rev 7.0
                       <Adaptec 29160N Ultra160 SCSI adapter>
                       aic7892: Ultra160 Wide Channel A, SCSI Id=7, 32/253 SCBs
               
[    6.476531] scsi 0:0:0:0: Direct-Access     SEAGATE  ST336607LW       0006 PQ: 0 ANSI: 3
[    6.476659] scsi0:A:0:0: Tagged Queuing enabled.  Depth 32
[    6.476793] scsi target0:0:0: Beginning Domain Validation
[    6.480226] scsi target0:0:0: wide asynchronous
[    6.483472] scsi target0:0:0: FAST-80 WIDE SCSI 160.0 MB/s DT (12.5 ns, offset 63)
[    6.490310] scsi target0:0:0: Ending Domain Validation
[    6.494622] scsi 0:0:1:0: Direct-Access     SEAGATE  ST336607LW       0007 PQ: 0 ANSI: 3
[    6.494745] scsi0:A:1:0: Tagged Queuing enabled.  Depth 32
[    6.494861] scsi target0:0:1: Beginning Domain Validation
[    6.498278] scsi target0:0:1: wide asynchronous
[    6.501524] scsi target0:0:1: FAST-80 WIDE SCSI 160.0 MB/s DT (12.5 ns, offset 63)
[    6.508318] scsi target0:0:1: Ending Domain Validation
[    6.512855] scsi 0:0:2:0: Direct-Access     COMPAQ   BD1469827B       HPB0 PQ: 0 ANSI: 3
[    6.512978] scsi0:A:2:0: Tagged Queuing enabled.  Depth 32
[    6.513094] scsi target0:0:2: Beginning Domain Validation
[    6.517259] scsi target0:0:2: wide asynchronous
[    6.520997] scsi target0:0:2: FAST-80 WIDE SCSI 160.0 MB/s DT (12.5 ns, offset 63)
[    6.529326] scsi target0:0:2: Ending Domain Validation
[    9.615727] 3ware Storage Controller device driver for Linux v1.26.02.003.
[    9.618273] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    9.618486] sd 0:0:0:0: [sda] 71687372 512-byte logical blocks: (36.7 GB/34.2 GiB)
[    9.618652] sd 0:0:1:0: [sdb] 71687372 512-byte logical blocks: (36.7 GB/34.2 GiB)
[    9.619841] sd 0:0:0:0: [sda] Write Protect is off
[    9.619983] sd 0:0:0:0: [sda] Mode Sense: ab 00 10 08
[    9.620088] sd 0:0:1:0: [sdb] Write Protect is off
[    9.620139] sd 0:0:1:0: [sdb] Mode Sense: ab 00 10 08
[    9.620273] sd 0:0:1:0: Attached scsi generic sg1 type 0
[    9.620581] sd 0:0:2:0: [sdc] 286749488 512-byte logical blocks: (147 GB/137 GiB)
[    9.621027] sd 0:0:2:0: Attached scsi generic sg2 type 0
[    9.621587] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[    9.621787] sd 0:0:1:0: [sdb] Write cache: enabled, read cache: enabled, supports DPO and FUA
[    9.622075] pata_acpi 0000:00:0f.0: can't derive routing for PCI INT A
[    9.622944] sd 0:0:2:0: [sdc] Write Protect is off
[    9.623023] sd 0:0:2:0: [sdc] Mode Sense: d3 00 10 08
[    9.625120] sd 0:0:2:0: [sdc] Write cache: disabled, read cache: enabled, supports DPO and FUA
[    9.629788] ne2k-pci.c:v1.03 9/22/2003 D. Becker/P. Gortmaker
[    9.633056] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
[    9.634352] ne2k-pci 0000:00:0a.0 eth0: RealTek RTL-8029 found at 0xdf80, IRQ 11, 00:50:bf:04:38:bc.
[    9.637643]  sda: sda1 sda2 sda3
[    9.640769]  sdb: sdb1 sdb2 sdb3
[    9.643860]  sdc: sdc1 sdc2
[    9.654080] Fusion MPT base driver 3.04.20
[    9.657195] Copyright (c) 1999-2008 LSI Corporation
[    9.660511] Fusion MPT SPI Host driver 3.04.20
[    9.664278] sd 0:0:1:0: [sdb] Attached SCSI disk
[    9.668044] sd 0:0:0:0: [sda] Attached SCSI disk
[    9.671145] sd 0:0:2:0: [sdc] Attached SCSI disk
[    9.674368] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    9.677300] ohci-pci: OHCI PCI platform driver
[    9.681040] ohci-pci 0000:00:02.0: OHCI PCI host controller
[    9.684588] ohci-pci 0000:00:02.0: new USB bus registered, assigned bus number 1
[    9.687925] ohci-pci 0000:00:02.0: irq 10, io mem 0xdffff000
[    9.751947] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001
[    9.754947] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    9.757866] usb usb1: Product: OHCI PCI host controller
[    9.760771] usb usb1: Manufacturer: Linux 4.4.26-gentoo ohci_hcd
[    9.763696] usb usb1: SerialNumber: 0000:00:02.0
[    9.767760] hub 1-0:1.0: USB hub found
[    9.771094] hub 1-0:1.0: 2 ports detected
[    9.775233] usbcore: registered new interface driver usb-storage
[    9.778985] i8042: PNP: PS/2 Controller [PNP030b:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[    9.786556] serio: i8042 KBD port at 0x60,0x64 irq 1
[    9.789632] serio: i8042 AUX port at 0x60,0x64 irq 12
[    9.794085] mousedev: PS/2 mouse device common for all mice
[    9.799176] rtc_cmos 00:00: RTC can wake from S4
[    9.803382] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[    9.806725] rtc_cmos 00:00: alarms up to one month, 114 bytes nvram
[    9.809996] md: raid1 personality registered for level 1
[    9.813146] md: multipath personality registered for level -4
[    9.817122] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
[    9.823007] usbcore: registered new interface driver usbhid
[    9.826106] usbhid: USB HID core driver
[    9.830196] oprofile: using timer interrupt.
[    9.833464] nf_conntrack version 0.5.0 (12010 buckets, 48040 max)
[    9.836913] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    9.842769] ip_tables: (C) 2000-2006 Netfilter Core Team
[    9.846859] NET: Registered protocol family 17
[    9.849971] mce: Unable to init device /dev/mcelog (rc: -5)
[    9.853675] Using IPI Shortcut mode
[    9.858265] registered taskstats version 1
[    9.862524] console [netcon0] enabled
[    9.865467] netconsole: network logging started
[    9.868473] rtc_cmos 00:00: setting system clock to 2017-01-04 10:34:59 UTC (1483526099)
[   11.105238] input: ImPS/2 Logitech Wheel Mouse as /devices/platform/i8042/serio1/input/input4
[   11.113894] md: Waiting for all devices to be available before autodetect
[   11.116787] md: If you don't use raid, use raid=noautodetect
[   11.120937] md: Autodetecting RAID arrays.
[   11.197871] md: Scanned 6 and added 6 devices.
[   11.200720] md: autorun ...
[   11.203474] md: considering sda3 ...
[   11.206285] md:  adding sda3 ...
[   11.209031] md:  adding sdb3 ...
[   11.211740] md: sdb2 has different UUID to sda3
[   11.214465] md: sda2 has different UUID to sda3
[   11.217136] md: sda1 has different UUID to sda3
[   11.219785] md: sdb1 has different UUID to sda3
[   11.223718] md: created md3
[   11.226466] md: bind<sdb3>
[   11.229400] md: bind<sda3>
[   11.232139] md: running: <sda3><sdb3>
[   11.235644] md/raid1:md3: active with 2 out of 2 mirrors
[   11.238568] md3: detected capacity change from 0 to 36125343744
[   11.241273] md: considering sdb2 ...
[   11.244266] md:  adding sdb2 ...
[   11.246985] md:  adding sda2 ...
[   11.249513] md: sda1 has different UUID to sdb2
[   11.252065] md: sdb1 has different UUID to sdb2
[   11.255833] md: created md2
[   11.258462] md: bind<sda2>
[   11.261245] md: bind<sdb2>
[   11.263803] md: running: <sdb2><sda2>
[   11.267103] md/raid1:md2: active with 2 out of 2 mirrors
[   11.269865] md2: detected capacity change from 0 to 518062080
[   11.272343] md: considering sda1 ...
[   11.275093] md:  adding sda1 ...
[   11.277562] md:  adding sdb1 ...
[   11.281195] md: created md1
[   11.283696] md: bind<sdb1>
[   11.286413] md: bind<sda1>
[   11.288860] md: running: <sda1><sdb1>
[   11.292127] md/raid1:md1: active with 2 out of 2 mirrors
[   11.294837] md1: detected capacity change from 0 to 57475072
[   11.297301] md: ... autorun DONE.
[   11.303443] EXT4-fs (md3): mounting ext3 file system using the ext4 subsystem
[   11.324660] random: nonblocking pool is initialized
[   11.380177] EXT4-fs (md3): mounted filesystem with ordered data mode. Opts: (null)
[   11.382923] VFS: Mounted root (ext3 filesystem) readonly on device 9:3.
[   11.397477] devtmpfs: mounted
[   11.403082] Freeing unused kernel memory: 452K (c1908000 - c1979000)
[   23.111695] eth1: 3c5x9 found at 0x300, BNC port, address 00:60:97:92:be:9d, IRQ 5.
[   23.111714] 3c509.c:1.20 04Feb2008 becker@scyld.com
[   23.348843] Non-volatile memory driver v1.3
[   32.679735]  md1:
[  307.173656]  md1:
[  307.884793] EXT4-fs (md3): re-mounted. Opts: (null)
[  308.772969] Adding 505916k swap on /dev/md2.  Priority:-1 extents:1 across:505916k
[  309.116106] EXT4-fs (sdc2): mounting ext3 file system using the ext4 subsystem
[  309.161193] EXT4-fs (sdc2): mounted filesystem with ordered data mode. Opts: (null)

4

04.01.2017, 21:15

eine 3Com (eth0) und eine Realtek RTL-8029 (eth1).
Du schreibst hier das eth0 die 3Com ist, in dem Kernellog ist es aber eth1... Ist das Absicht? Wenn du eth0 der 3Com zuordnen willst geht das mit einer udev Regel. Hier wurde so etwas schon mal diskutiert [gelöst] Netzwerkkarten zuordnen

Quellcode

1
2
ne2k-pci 0000:00:0a.0 eth0: RealTek RTL-8029 found at 0xdf80, IRQ 11, 00:50:bf:04:38:bc.
eth1: 3c5x9 found at 0x300, BNC port, address 00:60:97:92:be:9d, IRQ 5


Da du auch noch die alte Bezeichnung hast hast du bestimmt auch noch diese Datei: /etc/udev/rules.d/70-persistent-net.rules Dort müssten auch schon deine Zuordnung drin stehen was eth0 und eth1 angeht. Evtl. widerspricht sich das mit deiner Netzwerkconfig.
Intel Core2 Quad CPU @ 2.40GHz mit Gentoo/Gnome3