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

07.04.2005, 16:52

[gelöst] Sound Problem-trotz allem, es geht nicht

Liebe Gentoo-User,
Ich hab ein großes Problem. Vor zwei Tagen habe ich erfolgreich mein erstes Gentoo-System auf meinen Rechner gebracht. Ich bin auch sehr zufrieden mit dem drum und dran, es gibt nur ein großes Problem:

Der Sound geht nicht, das Problem wurde hier schon oft gepostet ( ja, ich habe gesucht), dennoch funktionieren die Lösungen nicht bei mir.
Hier ist das was ich gemacht habe:

1. Habe mich strikt an den Gentoo-Alsa-Guide für AMD64 gehalten und zuerst ALSA mit Oss Abwärtskompatibilität konfiguriert.
2. Das hat nicht funktioniert, warum nicht weiß ich nicht, ist aber nicht so wichtig.
3. Dann habe ich einen neuen Kernel gebacken der von OSS weg geht und auf ALSA setzt. So dann hab ich die Alsa-Anleitung wieder befolgt, kam soweit das ich alles in die alsa.d/alsa Datei eingetragen habe. Dort hab ich

Quellcode

1
alias snd-card-0 snd-via82xx
eingetragen,
modules-update gemacht. Hat auch funktioniert, hab dann alles zum runlevel geaddet und dann noch Alsa gestartet. Alsamixer funktioniert auch, habe die einzelnen Kanäle umutet. So und jetzt kommt es.
4. XMMS schreib eine "Check the following::......." Meldung. MPG123 schreibt das es dev/dsp nicht öffnen kann.
Mist dachte ich mir, hab hier im Forum nochmals rumgesurft und irgenwo stand das ein Neustart wohl helfen könnte also:
5. Neustart
6. Jedoch fiel mir dort direkt eine Fehlermeldung auf die ich dann mit dmesg aufgerufen habe dort stand:

Quellcode

1
2
ALSA device list:
  #0: VIA 8237 with AD1980 at 0xc800, irq 193

jedoch ist das keine Fehlermeldung! Beim Booten jedoch stand das die snd-card-0 nicht geladen werden konnte.!

Ich brauche wirklich Hilfe, da ich ohne meine Musik nicht leben kann..... ;( ;(

Ich danke euch schonmal für euer Bemühen diesen Text zu lesen, Danke
CB
Wenn du den Fehler nicht finden kannst, ist es wahrscheinlich Gentoo

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »CB2« (17.04.2005, 20:05)


2

07.04.2005, 20:33

Wegen /dev/dsp
Benutzt du udev?
Welche Version denn?

Es gibt da nämlich Probleme, die ein udev update mit dem gemasked udev-50 lösen würde.
Et gibt nüx Gutes, außer man tut es

3

07.04.2005, 22:38

Ich hab es, jedoch weiß ich nicht wirklich wie ich es benutze. Hab es heute mal geupdatet.

Quellcode

1
2
penguin ~ # udev -V
054


( Danke das du dich meiner Frage erbarmt hast, eventuell kannst du mir einen Tipp geben wie ich bei einer Neuinstallation gleich ALSA mitinstalliere und es garantiert zum laufen bringe, wär dir sehr dankbar)
Bis bald.
CB
Wenn du den Fehler nicht finden kannst, ist es wahrscheinlich Gentoo

4

07.04.2005, 23:21

Na ja, bei udev ist (solange du keine anderen devices[digicam,usbstick etc] mounten willst) erstmal nur wichtig, daß du unter
pseudo filesystems im Kernel keinen devfs support einkompiliert hast, devfs nicht installiert ist oder zumindest durch bootoptionen am starten gehindert wird.

Scheint aber bei dir nicht der Fall zu sein, da bei einem solchen Konflikt dein Bootvorgang abbrechen würde, weil kein Filesystem von den Festplatten gelesen werden könnte.

Häng doch mal die Ausgabe von dmesg an dein nächstes Posting an und ich schau mal rein.

Wird aber wohl erst morgen werden.
Et gibt nüx Gutes, außer man tut es

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »PANCHO« (07.04.2005, 23:22)


5

16.04.2005, 16:46

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
Linux version 2.6.11-gentoo-r6 (root@livecd) (gcc version 3.4.3 20041125 (Gentoo Linux 3.4.3-r1, ssp-3.4.3-0, pie-8.7.7)) #1 SMP Fri Apr 15 17:48:35 UTC 2005
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
 BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 000000001ff30000 (usable)
 BIOS-e820: 000000001ff30000 - 000000001ff40000 (ACPI data)
 BIOS-e820: 000000001ff40000 - 000000001fff0000 (ACPI NVS)
 BIOS-e820: 000000001fff0000 - 0000000020000000 (reserved)
 BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
ACPI: RSDP (v002 ACPIAM                                ) @ 0x00000000000fa8b0
ACPI: XSDT (v001 A M I  OEMXSDT  0x08000403 MSFT 0x00000097) @ 0x000000001ff30100
ACPI: FADT (v003 A M I  OEMFACP  0x08000403 MSFT 0x00000097) @ 0x000000001ff30290
ACPI: MADT (v001 A M I  OEMAPIC  0x08000403 MSFT 0x00000097) @ 0x000000001ff30390
ACPI: OEMB (v001 A M I  OEMBIOS  0x08000403 MSFT 0x00000097) @ 0x000000001ff40040
ACPI: DSDT (v001  A0058 A0058002 0x00000002 MSFT 0x0100000d) @ 0x0000000000000000
Scanning NUMA topology in Northbridge 24
Number of nodes 1
Node 0 MemBase 0000000000000000 Limit 000000001ff30000
Using node hash shift of 24
Bootmem setup node 0 0000000000000000-000000001ff30000
On node 0 totalpages: 130864
  DMA zone: 4096 pages, LIFO batch:1
  Normal zone: 126768 pages, LIFO batch:16
  HighMem zone: 0 pages, LIFO batch:1
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
Processor #0 15:4 APIC version 16
ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 1, version 3, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ACPI: IRQ0 used by override.
ACPI: IRQ2 used by override.
ACPI: IRQ9 used by override.
Setting APIC routing to flat
Using ACPI (MADT) for SMP configuration information
Checking aperture...
CPU 0: aperture @ f0000000 size 128 MB
Built 1 zonelists
Kernel command line: root=/dev/sda3 console=tty0
Initializing CPU#0
PID hash table entries: 2048 (order: 11, 65536 bytes)
time.c: Using 1.193182 MHz PIT timer.
time.c: Detected 2202.908 MHz processor.
Console: colour VGA+ 80x25
Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
Memory: 506920k/523456k available (3826k kernel code, 0k reserved, 1987k data, 284k init)
Calibrating delay loop... 4308.99 BogoMIPS (lpj=2154496)
Mount-cache hash table entries: 256 (order: 0, 4096 bytes)
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 1024K (64 bytes/line)
CPU 0(1) -> Node 0
 tbxface-0118 [02] acpi_load_tables      : ACPI Tables successfully acquired
Parsing all Control Methods:..................................................................................................................................................
Table [DSDT](id F004) - 527 Objects with 45 Devices 146 Methods 25 Regions
ACPI Namespace successfully loaded at root ffffffff80717680
evxfevnt-0094 [03] acpi_enable           : Transition to ACPI mode successful
Using local APIC NMI watchdog using perfctr0
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 1024K (64 bytes/line)
CPU 0(1) -> Node 0
CPU0: AMD Athlon(tm) 64 Processor 3400+ stepping 08
per-CPU timeslice cutoff: 1024.28 usecs.
task migration cache decay timeout: 2 msecs.
Only one processor found.
Using local APIC timer interrupts.
Detected 12.516 MHz APIC timer.
time.c: Using PIT/TSC based timekeeping.
Brought up 1 CPUs
CPU0 attaching sched-domain:
 domain 0: span 01
  groups: 01
  domain 1: span 01
   groups: 01
   domain 2: span 01
    groups: 01
NET: Registered protocol family 16
PCI: Using configuration type 1
mtrr: v2.0 (20020519)
ACPI: Subsystem revision 20050211
evgpeblk-0979 [06] ev_create_gpe_block   : GPE 00 to 0F [_GPE] 2 regs on int 0x9
evgpeblk-0987 [06] ev_create_gpe_block   : Found 7 Wake, Enabled 0 Runtime GPEs in this block
Completing Region/Field/Buffer/Package initialization:.........................................................................................................................
Initialized 24/25 Regions 44/44 Fields 40/40 Buffers 13/14 Packages (536 nodes)
Executing all Device _STA and_INI methods:................................................
48 Devices found containing: 48 _STA, 0 _INI methods
ACPI: Interpreter enabled
ACPI: Using IOAPIC for interrupt routing
ACPI: PCI Root Bridge [PCI0] (00:00)
PCI: Probing PCI hardware (bus 00)
PCI: Via IRQ fixup
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 10 *11 14 15)
ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 *10 11 14 15)
ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 7 10 11 14 15)
ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 10 11 14 15) *0, disabled.
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
pnp: PnP ACPI: found 12 devices
SCSI subsystem initialized
usbcore: registered new driver usbfs
usbcore: registered new driver hub
PCI: Using ACPI for IRQ routing
** PCI interrupts are no longer routed automatically.  If this
** causes a device to stop working, it is probably because the
** driver failed to call pci_enable_device().  As a temporary
** workaround, the "pci=routeirq" argument restores the old
** behavior.  If this argument makes the device work again,
** please email the output of "lspci" to bjorn.helgaas@hp.com
** so I can fix the driver.
agpgart: Detected AGP bridge 0
agpgart: Maximum main memory to use for agp memory: 439M
agpgart: AGP aperture is 128M @ 0xf0000000
PCI-DMA: Disabling IOMMU.
IA32 emulation $Id: sys_ia32.c,v 1.32 2002/03/24 13:02:28 ak Exp $
Total HugeTLB memory allocated, 0
inotify device minor=63
Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
Initializing Cryptographic API
Real Time Clock Driver v1.12
Linux agpgart interface v0.100 (c) Dave Jones
Hangcheck: starting hangcheck timer 0.5.0 (tick is 180 seconds, margin is 60 seconds).
ACPI: Power Button (FF) [PWRF]
ACPI: Sleep Button (CM) [SLPB]
serio: i8042 AUX port at 0x60,0x64 irq 12
serio: i8042 KBD port at 0x60,0x64 irq 1
Serial: 8250/16550 driver $Revision: 1.90 $ 8 ports, IRQ sharing disabled
ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
mice: PS/2 mouse device common for all mice
input: AT Translated Set 2 keyboard on isa0060/serio0
input: ImExPS/2 Generic Explorer Mouse on isa0060/serio1
io scheduler noop registered
io scheduler anticipatory registered
io scheduler deadline registered
io scheduler cfq registered
Floppy drive(s): fd0 is 1.44M
FDC 0 is a post-1991 82077
RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize
loop: loaded (max 8 devices)
Intel(R) PRO/1000 Network Driver - version 5.6.10.1-k2
Copyright (c) 1999-2004 Intel Corporation.
ACPI: PCI interrupt 0000:00:0a.0[A] -> GSI 17 (level, low) -> IRQ 169
ACPI: PCI interrupt 0000:00:0a.0[A] -> GSI 17 (level, low) -> IRQ 169
eth0: Yukon Gigabit Ethernet 10/100/1000Base-T Adapter
      PrefPort:A  RlmtMode:Check Link State
forcedeth.c: Reverse Engineered nForce ethernet driver. Version 0.31.
netconsole: not configured, aborting
Linux video capture interface: v1.00
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
Probing IDE interface ide0...
hda: PLEXTOR DVD-ROM PX-116A2 0100, ATAPI CD/DVD-ROM drive
Probing IDE interface ide1...
hdc: WDC WD800BB-75DKA0, ATA DISK drive
Probing IDE interface ide2...
Probing IDE interface ide3...
Probing IDE interface ide4...
Probing IDE interface ide5...
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
ide1 at 0x170-0x177,0x376 on irq 15
hdc: max request size: 1024KiB
hdc: 156250000 sectors (80000 MB) w/2048KiB Cache, CHS=16383/255/63
hdc: cache flushes supported
 hdc: hdc1 hdc2 hdc3
hda: ATAPI 48X DVD-ROM drive, 256kB Cache
Uniform CD-ROM driver Revision: 3.20
3ware Storage Controller device driver for Linux v1.26.02.000.
libata version 1.10 loaded.
sata_via version 1.1
ACPI: PCI interrupt 0000:00:0f.0[B] -> GSI 20 (level, low) -> IRQ 177
sata_via(0000:00:0f.0): routed to hard irq line 4
ata1: SATA max UDMA/133 cmd 0xE800 ctl 0xE402 bmdma 0xD400 irq 177
ata2: SATA max UDMA/133 cmd 0xE000 ctl 0xD802 bmdma 0xD408 irq 177
ata1: dev 0 cfg 49:2f00 82:346b 83:7f21 84:4003 85:3469 86:3e01 87:4003 88:203f
ata1: dev 0 ATA, max UDMA/100, 234441648 sectors: lba48
ata1: dev 0 configured for UDMA/100
scsi0 : sata_via
ata2: no device found (phy stat 00000000)
scsi1 : sata_via
  Vendor: ATA       Model: WDC WD1200JD-00G  Rev: 02.0
  Type:   Direct-Access                      ANSI SCSI revision: 05
SCSI device sda: 234441648 512-byte hdwr sectors (120034 MB)
SCSI device sda: drive cache: write back
SCSI device sda: 234441648 512-byte hdwr sectors (120034 MB)
SCSI device sda: drive cache: write back
 sda: sda1 sda2 sda3 sda4
Attached scsi disk sda at scsi0, channel 0, id 0, lun 0
Fusion MPT base driver 3.01.18
Copyright (c) 1999-2004 LSI Logic Corporation
Fusion MPT SCSI Host driver 3.01.18
ieee1394: Initialized config rom entry `ip1394'
ieee1394: raw1394: /dev/raw1394 device initialized
sbp2: $Rev: 1219 $ Ben Collins <bcollins@debian.org>
ieee1394: Loaded CMP driver
ACPI: PCI interrupt 0000:00:10.4[C] -> GSI 21 (level, low) -> IRQ 185
ehci_hcd 0000:00:10.4: EHCI Host Controller
ehci_hcd 0000:00:10.4: irq 185, pci mem 0xfdf00000
ehci_hcd 0000:00:10.4: new USB bus registered, assigned bus number 1
ehci_hcd 0000:00:10.4: USB 2.0 initialized, EHCI 1.00, driver 10 Dec 2004
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 8 ports detected
ohci_hcd: 2004 Nov 08 USB 1.1 'Open' Host Controller (OHCI) Driver (PCI)
USB Universal Host Controller Interface driver v2.2
ACPI: PCI interrupt 0000:00:10.0[A] -> GSI 21 (level, low) -> IRQ 185
uhci_hcd 0000:00:10.0: UHCI Host Controller
uhci_hcd 0000:00:10.0: irq 185, io base 0xb400
uhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 2
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 2 ports detected
ACPI: PCI interrupt 0000:00:10.1[A] -> GSI 21 (level, low) -> IRQ 185
uhci_hcd 0000:00:10.1: UHCI Host Controller
uhci_hcd 0000:00:10.1: irq 185, io base 0xb800
uhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 3
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 2 ports detected
ACPI: PCI interrupt 0000:00:10.2[B] -> GSI 21 (level, low) -> IRQ 185
uhci_hcd 0000:00:10.2: UHCI Host Controller
uhci_hcd 0000:00:10.2: irq 185, io base 0xc000
uhci_hcd 0000:00:10.2: new USB bus registered, assigned bus number 4
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 2 ports detected
ACPI: PCI interrupt 0000:00:10.3[B] -> GSI 21 (level, low) -> IRQ 185
uhci_hcd 0000:00:10.3: UHCI Host Controller
uhci_hcd 0000:00:10.3: irq 185, io base 0xc400
uhci_hcd 0000:00:10.3: new USB bus registered, assigned bus number 5
hub 5-0:1.0: USB hub found
hub 5-0:1.0: 2 ports detected
usb 1-2: new high speed USB device using ehci_hcd and address 3
usbcore: registered new driver usblp
drivers/usb/class/usblp.c: v0.13: USB Printer Device Class driver
Initializing USB Mass Storage driver...
usb 2-1: new full speed USB device using uhci_hcd and address 2
drivers/usb/class/usblp.c: usblp0: USB Bidirectional printer dev 2 if 0 alt 0 proto 2 vid 0x03F0 pid 0x1904
scsi2 : SCSI emulation for USB Mass Storage devices
usbcore: registered new driver usb-storage
USB Mass Storage support registered.
usb-storage: device found at 3
usb-storage: waiting for device to settle before scanning
usbcore: registered new driver usbhid
drivers/usb/input/hid-core.c: v2.0:USB HID core driver
usbcore: registered new driver ov511
drivers/usb/media/ov511.c: v1.64 for Linux 2.5 : ov511 USB Camera Driver
drivers/usb/media/se401.c: SE401 usb camera driver version 0.24 registering
usbcore: registered new driver se401
usbcore: registered new driver usbled
Advanced Linux Sound Architecture Driver Version 1.0.8 (Thu Jan 13 09:39:32 2005 UTC).
ACPI: PCI interrupt 0000:00:11.5[C] -> GSI 22 (level, low) -> IRQ 193
PCI: Setting latency timer of device 0000:00:11.5 to 64
codec_read: codec 0 is not valid [0xfe0000]
codec_read: codec 0 is not valid [0xfe0000]
codec_read: codec 0 is not valid [0xfe0000]
codec_read: codec 0 is not valid [0xfe0000]
ALSA device list:
  #0: VIA 8237 with AD1980 at 0xc800, irq 193
oprofile: using NMI interrupt.
NET: Registered protocol family 2
IP: routing cache hash table of 2048 buckets, 32Kbytes
TCP established hash table entries: 32768 (order: 7, 524288 bytes)
TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
TCP: Hash tables configured (established 32768 bind 32768)
NET: Registered protocol family 1
NET: Registered protocol family 10
IPv6 over IPv4 tunneling driver
NET: Registered protocol family 17
powernow-k8: Found 1 AMD Athlon 64 / Opteron processors (version 1.00.09e)
acpi_utils-0071 [04] acpi_extract_package  : Invalid 'package' argument
acpi_processor-0316 [03] acpi_processor_get_per: Invalid _PSS data
powernow-k8:    0 : fid 0x0 (800 MHz), vid 0xa (1300 mV)
powernow-k8:    1 : fid 0xc (2000 MHz), vid 0x6 (1400 mV)
powernow-k8:    2 : fid 0xe (2200 MHz), vid 0x2 (1500 mV)
cpu_init done, current fid 0xe, vid 0x0
powernow-k8: ph2 null fid transition 0xe
ACPI wakeup devices:
PCI0 PS2K PS2M UAR2 UAR1 AC97 USB1 USB2 USB3 USB4 EHCI PWRB SLPB
ACPI: (supports S0 S1 S3 S4 S5)
ReiserFS: sda3: found reiserfs format "3.6" with standard journal
  Vendor: PLEXTOR   Model: CD-R   PX-W4824A  Rev: 1.03
  Type:   CD-ROM                             ANSI SCSI revision: 00
usb-storage: device scan complete
ReiserFS: sda3: using ordered data mode
ReiserFS: sda3: journal params: device sda3, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
ReiserFS: sda3: checking transaction log (sda3)
ReiserFS: sda3: Using r5 hash to sort names
VFS: Mounted root (reiserfs filesystem) readonly.
Freeing unused kernel memory: 284k freed
Adding 10265524k swap on /dev/sda2.  Priority:-1 extents:1
nvidia: module license 'NVIDIA' taints kernel.
ACPI: PCI interrupt 0000:01:00.0[A] -> GSI 16 (level, low) -> IRQ 201
NVRM: loading NVIDIA Linux x86_64 NVIDIA Kernel Module  1.0-7174  Tue Mar 22 06:45:40 PST 2005
eth0: network connection up using port A
    speed:           100
    autonegotiation: yes
    duplex mode:     full
    flowctrl:        symmetric
    irq moderation:  disabled
    scatter-gather:  enabled
eth0: no IPv6 routers present
Losing some ticks... checking if CPU frequency changed.



Das ist es, sorry ich war lange nicht da weil ich Gentoo neu installiert habe. Eigentlich läuft alles ganz toll. Nur nicht der Sound und die Grafikbeschleunigung.
ALSA läuft gut, bloß findet er angeblich das SoundkartenMODUL nicht.


Quellcode

1
2
3
4
5
6
/etc/init.d/alsasound start
 * Loading ALSA modules...
 *   Loading: snd-card-0...
FATAL: Module snd_via82xx not found.                                      [ !! ]
                                                                          [ ok ]
 * Restoring Mixer Levels...


Das darf ja nicht sein.Hab versucht den alsa-driver zu emergen, dort wird mit gesagt das ich alles schon im Kernel gemergt hätte.
Mist, nichts geht so wie ich will.


!
Wenn du den Fehler nicht finden kannst, ist es wahrscheinlich Gentoo

6

16.04.2005, 18:03

Du scheinst die Unterstützung fest im Kernel einkompiliert zu haben.

Dann kann alsasound auch kein modul laden.

Wie aber die configs aussehen müssen, wenn alsa fest einkompiliert ist, kann ich dir nicht sagen.

Ich find es ganz brauchbar, den kernel nur mit soundcore Unterstützung zu kompilieren und alsa sowie oss komplett wegzulassen.

Danach emerge alsa-driver alsa-utils und wenn du es benötigst alsa-oss.

Wenn dann
>>>/etc/init.d/alsasound start<<<

läuft, sollte dein Modul geladen werden.

Welche Graka haste denn.
Such mal nach Howtos, denn wenn du den Kernel neu backst, kannste vielleicht alles in einem Abwasch machen.

Denn auch bei nvidia und ati ist es zumeist besser, wenn du den Kernel-internen Direct Rendering Manager rauschmeißt.

Und es sieht so aus, als hättest du noch keinen agpgart für den amd64 eingebaut.
Da gibt es eine amd64 Funktion dazu.

Dann sollte alles laufen.

Viel Glück :D
Et gibt nüx Gutes, außer man tut es

7

16.04.2005, 19:56

Wenn Du ALSA fest im Kernel hast, brauchst Du keinen alias für snd-card-0 anzugeben. Modules update ist ebenfalls überflüssig, weil Du ja eben keine Module benutzt!

/dev/dsp ist die OSS-Schnittstelle für Sound. Wenn Du OSS-Kompatibilität deaktivierst, ist klar daß das nicht geht. Die ALSA-devices befinden sich in /dev/snd.

Für xmms gibt es ein ALSA-Output-plugin. Benutzt Du das ?
__
Rud

8

17.04.2005, 19:21

VIELEN DANK EUCH BEIDEN,

Ich habe ein bißchen nach eurer Anleitung rumgefummelt, und jetzt surren die Boxen in alt bekannter Weise! Danke Danke Danke. Ohne nette Hilfe hätte ich es nicht geschafft.

( Jetzt noch die Grafik und ich bin total unglaublich glücklich....)

Zur Grafik, Ich habe eine NVIDIA 5900. Die Grafik hatte auch mal richtig funktioniert. Nur leider sagt er mir neuerdings immer das er den Kernel nicht laden konnte, und sowas wie " Screens found, but none have a usabele configuration".
Wenn ich den Driver wieder auf NV umstellem ist alles perfekt.

Ich werde auch nochmal selber rumsuchen, aber über Hilfe freue ich mich immer...
Wenn du den Fehler nicht finden kannst, ist es wahrscheinlich Gentoo

9

17.04.2005, 19:36

Man hilft doch gern :)

Mach für Deine Grafik-Geschichten am besten einen neuen Thread auf und setze diesen hier bitte auf gelöst (Dazu einfach Deine erste Nachricht editieren und dem Titel ein [gelöst] hinzufügen).
__
Rud