Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Multimedia
  • Search

No Sound!

Help with creation, editing, or playback of sounds, images, or video. Amarok, audacious, mplayer, grip, cdparanoia and anything else that makes a sound or plays a video.
Post Reply
Advanced search
21 posts • Page 1 of 1
Author
Message
SolidSnakex28
Apprentice
Apprentice
User avatar
Posts: 269
Joined: Sat Sep 03, 2005 1:34 am
Location: New York

No Sound!

  • Quote

Post by SolidSnakex28 » Sat Sep 17, 2005 11:19 pm

I have no sound at all! How do I enable sound?
Top
truc
Advocate
Advocate
User avatar
Posts: 3199
Joined: Mon Jul 25, 2005 9:24 am

  • Quote

Post by truc » Sat Sep 17, 2005 11:53 pm

Assuming u've just configured it with alsa, u can try unmuting channels

Code: Select all

alsamixer
should do the trick ;)
Top
pivertd
Apprentice
Apprentice
User avatar
Posts: 185
Joined: Sun Feb 08, 2004 1:10 pm
Location: Arlon, Belgium

  • Quote

Post by pivertd » Sat Sep 17, 2005 11:53 pm

I'm sorry, but that's a bit short as description of the problem.
You need to know :

1) Which sound card ? Which drivers ? Alsa, OSS ? (Correct kernels modules, and correctly loaded)
2) If you are under X, which sound manager do you use ? arts or esd ?
3) From which application ?

You can test if you well have a sound card in your computer (I give the output from my computer):

Code: Select all

pivert ~ # lspci | grep Multimedia
0000:01:0a.0 Multimedia audio controller: Creative Labs SB Live! EMU10k1 (rev 07)
I personally use alsa, and driver is compiled as module :

Code: Select all

pivert ~ # lsmod | grep snd
snd_seq_midi            6752  0
snd_emu10k1_synth       6848  0
snd_emux_synth         35776  1 snd_emu10k1_synth
snd_seq_virmidi         5952  1 snd_emux_synth
snd_seq_midi_emul       6592  1 snd_emux_synth
snd_pcm_oss            47072  0
snd_mixer_oss          16832  1 snd_pcm_oss
snd_seq_oss            33984  0
snd_seq_midi_event      5888  3 snd_seq_midi,snd_seq_virmidi,snd_seq_oss
snd_seq                50064  8 snd_seq_midi,snd_emux_synth,snd_seq_virmidi,snd_seq_midi_emul,snd_seq_oss,snd_seq_midi_event
snd_emu10k1           116164  3 snd_emu10k1_synth
snd_rawmidi            20704  3 snd_seq_midi,snd_seq_virmidi,snd_emu10k1
snd_seq_device          7180  7 snd_seq_midi,snd_emu10k1_synth,snd_emux_synth,snd_seq_oss,snd_seq,snd_emu10k1,snd_rawmidi
snd_ac97_codec         81404  1 snd_emu10k1
snd_pcm                81480  4 snd_pcm_oss,snd_emu10k1,snd_ac97_codec
snd_timer              21508  3 snd_seq,snd_emu10k1,snd_pcm
snd_page_alloc          7620  2 snd_emu10k1,snd_pcm
snd_util_mem            3328  2 snd_emux_synth,snd_emu10k1
snd_hwdep               7264  2 snd_emux_synth,snd_emu10k1
snd                    48292  16 snd_emux_synth,snd_seq_virmidi,snd_pcm_oss,snd_mixer_oss,snd_seq_oss,snd_seq,snd_emu10k1,snd_rawmidi,snd_seq_device,snd_ac97_codec,snd_pcm,snd_timer,snd_hwdep
soundcore               7648  1 snd
PS: You certainly do not need to have so much modules loaded. The most important for my sound card is the driver : snd_emu10k1 (for sblive)

You can then see if you have the /dev/dsp, and the correct right on it :

Code: Select all

pivert ~ # ls -lh /dev/dsp
lr-xr-xr-x  1 root root 9 sep 17 14:18 /dev/dsp -> sound/dsp
pivert ~ # ls -lh /dev/sound/dsp
crw-rw----  1 root audio 14, 3 jan  1  1970 /dev/sound/dsp
As you can see, in my config, the use need to be in audio group to be able to use the sound card.
My use is pivert, so I can check with :

Code: Select all

pivert ~ # groups pivert
pivert : users wheel audio cdrom cdrw usb slocate portage scanner music
pivert ~ #
If you have /dev/dsp, a good test is just to send some random datas or file to /dev/dsp.

Code: Select all

cat /bin/ls > /dev/dsp
This will produce noise for about 10 seconds. (try as root and as user)

Regards,
Top
SolidSnakex28
Apprentice
Apprentice
User avatar
Posts: 269
Joined: Sat Sep 03, 2005 1:34 am
Location: New York

  • Quote

Post by SolidSnakex28 » Sun Sep 18, 2005 12:50 am

Here's my error.
Sound server informational message:
Error while initializing the sound driver:
device /dev/dsp can't be opened (No such device)
The sound server will continue, using the null output device.
I get it when I start KDE.
Top
SolidSnakex28
Apprentice
Apprentice
User avatar
Posts: 269
Joined: Sat Sep 03, 2005 1:34 am
Location: New York

  • Quote

Post by SolidSnakex28 » Sun Sep 18, 2005 3:06 am

Anyone?
Top
Headrush
Watchman
Watchman
User avatar
Posts: 5597
Joined: Thu Nov 06, 2003 12:48 am
Location: Bizarro World

  • Quote

Post by Headrush » Sun Sep 18, 2005 3:24 am

You're missing the device nodes needed for OSS emulation.

Are you using the in kernel ALSA modules, or the alsa-driver package.

If in kernel, did you enable OSS emulation?

If alsa-driver, did you emerge alsa-oss ?

You could also set the KDE sound server to use native ALSA instead of OSS also.

Answering the questions pivertd asked would help tremendously. :wink:
Top
SolidSnakex28
Apprentice
Apprentice
User avatar
Posts: 269
Joined: Sat Sep 03, 2005 1:34 am
Location: New York

  • Quote

Post by SolidSnakex28 » Sun Sep 18, 2005 3:33 am

Ok, I don't know about drivers and sound card, but I'm pretty sure I'm using arts, and sound doesn't come from anywhere. For example, xmms reports playback, but the speakers give no sound, even though software and hardware volumes are up.
Top
Old School
Apprentice
Apprentice
User avatar
Posts: 252
Joined: Sat Nov 20, 2004 9:02 pm
Location: West Bank of the Coast Fork

  • Quote

Post by Old School » Sun Sep 18, 2005 7:15 am

Start Xmms
Go to Preferences
Click the Audio I/O plugins tab
Under Input Plugins click CD Audio Player
Click Configure
Click Digital audio extraction
That should get XMMS working
Post the results of the suggestions pivertd made, as Headrush said, they would really help nail down your problem
www.otw20.com

The further a society drifts from truth, the more it will hate those who speak it.
George Orwell
Top
Vortex375
Veteran
Veteran
User avatar
Posts: 1739
Joined: Thu Mar 03, 2005 7:39 pm
Location: Deutschland

  • Quote

Post by Vortex375 » Sun Sep 18, 2005 10:31 am

Before you do anything else I recommend you read this

http://www.gentoo.org/doc/en/alsa-guide.xml

Follow all the steps in this guide, then post again if you are still having trouble. :)
Top
SolidSnakex28
Apprentice
Apprentice
User avatar
Posts: 269
Joined: Sat Sep 03, 2005 1:34 am
Location: New York

  • Quote

Post by SolidSnakex28 » Sun Sep 18, 2005 4:18 pm

Yeah, that did nothing.
Top
truc
Advocate
Advocate
User avatar
Posts: 3199
Joined: Mon Jul 25, 2005 9:24 am

  • Quote

Post by truc » Sun Sep 18, 2005 4:21 pm

If you don't read all the posts here and don't answer, I don't thing u cannot expect beeing helped (?!)
Top
SolidSnakex28
Apprentice
Apprentice
User avatar
Posts: 269
Joined: Sat Sep 03, 2005 1:34 am
Location: New York

  • Quote

Post by SolidSnakex28 » Sun Sep 18, 2005 4:38 pm

Ok.

truc: Yeah, I tried alsamixer, unmuted all channels, raised all possible volumes, nothing.

pivertd:
Sound card:
-Multimedia audio controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller (rev 01)
Driver:
-intel_8x0
Using alsa. Yes, I do have /dev/dsp, and it is correctly configured. Yes, I'm in the audio group. I got no sound when I 'cat /bin/ls /dev/dsp' under root and user.

Headrush: Yeah, I emerged alsa-oss.

menelmacar: I don't have that option in xmms.

Vortex375: I tried that, the genkernel way. It doesn't work.
Top
Old School
Apprentice
Apprentice
User avatar
Posts: 252
Joined: Sat Nov 20, 2004 9:02 pm
Location: West Bank of the Coast Fork

  • Quote

Post by Old School » Sun Sep 18, 2005 9:19 pm

SolidSnakex28 wrote:
menelmacar: I don't have that option in xmms.
Try

Code: Select all

emerge -s xmms-cdaudio
If you don't have it, emerge then try the steps I listed above.
edit: If you have the MAD MPEG Decoder plugin, disable it.
www.otw20.com

The further a society drifts from truth, the more it will hate those who speak it.
George Orwell
Top
truc
Advocate
Advocate
User avatar
Posts: 3199
Joined: Mon Jul 25, 2005 9:24 am

  • Quote

Post by truc » Sun Sep 18, 2005 10:07 pm

Isn't it a nforce mobo? if so what about trying nforce driver givenby nvidia?


And, did you already have sound (other distro, windows...)?


[stupid]
did you try the other outputs of the sound card
[/stupid]
Top
SolidSnakex28
Apprentice
Apprentice
User avatar
Posts: 269
Joined: Sat Sep 03, 2005 1:34 am
Location: New York

  • Quote

Post by SolidSnakex28 » Sun Sep 18, 2005 10:23 pm

truc wrote:Isn't it a nforce mobo? if so what about trying nforce driver givenby nvidia?


And, did you already have sound (other distro, windows...)?


[stupid]
did you try the other outputs of the sound card
[/stupid]
Of course! I had windows, suse, knoppix all with sound. Hold on though, I'm gonna try the recompile with sound support.
Top
SolidSnakex28
Apprentice
Apprentice
User avatar
Posts: 269
Joined: Sat Sep 03, 2005 1:34 am
Location: New York

  • Quote

Post by SolidSnakex28 » Sun Sep 18, 2005 11:04 pm

Ok, I just did the kernel recompile with alsa support, and followed the instructions in the handbook. Here's some of the error messages I get:
Running modules-update...
Loading driver...
* Loading ALSA modules ...
* Loading: snd-card-0 ...
WARNING: Error inserting snd_timer (/lib/modules/2.6.12-gentoo-r6/alsa-driver/acore/snd-timer.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_pcm (/lib/modules/2.6.12-gentoo-r6/alsa-driver/acore/snd-pcm.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_ac97_codec (/lib/modules/2.6.12-gentoo-r6/alsa-driver/pci/ac97/snd-ac97-codec.ko): Unknown symbol in module, or unknown parameter (see dmesg)
FATAL: Error inserting snd_intel8x0 (/lib/modules/2.6.12-gentoo-r6/alsa-driver/pci/snd-intel8x0.ko): Unknown symbol in module, or unknown parameter (see [ !! ]
* Loading: snd-seq-oss ...
WARNING: Error inserting snd_seq_device (/lib/modules/2.6.12-gentoo-r6/alsa-driver/acore/seq/snd-seq-device.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_timer (/lib/modules/2.6.12-gentoo-r6/alsa-driver/acore/snd-timer.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_seq (/lib/modules/2.6.12-gentoo-r6/alsa-driver/acore/seq/snd-seq.ko): Unknown symbol in module, or unknown parameter (see dmesg)
FATAL: Error inserting snd_seq_oss (/lib/modules/2.6.12-gentoo-r6/alsa-driver/acore/seq/oss/snd-seq-oss.ko): Unknown symbol in module, or unknown parameter (see dmesg) [ !! ]
* Loading: snd-pcm-oss ...
WARNING: Error inserting snd_mixer_oss (/lib/modules/2.6.12-gentoo-r6/alsa-driver/acore/oss/snd-mixer-oss.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_timer (/lib/modules/2.6.12-gentoo-r6/alsa-driver/acore/snd-timer.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_pcm (/lib/modules/2.6.12-gentoo-r6/alsa-driver/acore/snd-pcm.ko): Unknown symbol in module, or unknown parameter (see dmesg)
FATAL: Error inserting snd_pcm_oss (/lib/modules/2.6.12-gentoo-r6/alsa-driver/acore/oss/snd-pcm-oss.ko): Unknown symbol in module, or unknown parameter (see dmesg) [ !! ]
* Loading: snd-mixer-oss ...
FATAL: Error inserting snd_mixer_oss (/lib/modules/2.6.12-gentoo-r6/alsa-driver/acore/oss/snd-mixer-oss.ko): Unknown symbol in module, or unknown parameter (see dmesg) [ !! ]
* Loading: snd-seq ...
WARNING: Error inserting snd_seq_device (/lib/modules/2.6.12-gentoo-r6/alsa-driver/acore/seq/snd-seq-device.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_timer (/lib/modules/2.6.12-gentoo-r6/alsa-driver/acore/snd-timer.ko): Unknown symbol in module, or unknown parameter (see dmesg)
FATAL: Error inserting snd_seq (/lib/modules/2.6.12-gentoo-r6/alsa-driver/acore/seq/snd-seq.ko): Unknown symbol in module, or unknown parameter (see dme [ ok ]
* Restoring Mixer Levels ... [ ok ]
Setting default volumes...
ArsenalGear snake # dmesg
_oss: disagrees about version of symbol snd_unregister_oss_device
snd_mixer_oss: Unknown symbol snd_unregister_oss_device
snd_mixer_oss: disagrees about version of symbol snd_ctl_find_id
snd_mixer_oss: Unknown symbol snd_ctl_find_id
snd_mixer_oss: Unknown symbol snd_verbose_printk
snd_mixer_oss: disagrees about version of symbol snd_register_oss_device
snd_mixer_oss: Unknown symbol snd_register_oss_device
snd_mixer_oss: disagrees about version of symbol snd_card_file_add
snd_mixer_oss: Unknown symbol snd_card_file_add
snd_mixer_oss: disagrees about version of symbol snd_mixer_oss_notify_callback
snd_mixer_oss: Unknown symbol snd_mixer_oss_notify_callback
snd_mixer_oss: disagrees about version of symbol snd_cards
snd_mixer_oss: Unknown symbol snd_cards
snd_mixer_oss: disagrees about version of symbol snd_ctl_notify
snd_mixer_oss: Unknown symbol snd_ctl_notify
snd_mixer_oss: disagrees about version of symbol snd_info_create_card_entry
snd_mixer_oss: Unknown symbol snd_info_create_card_entry
snd_mixer_oss: disagrees about version of symbol snd_card_file_remove
snd_mixer_oss: Unknown symbol snd_card_file_remove
snd_mixer_oss: disagrees about version of symbol snd_info_unregister
snd_mixer_oss: Unknown symbol snd_info_unregister
snd_mixer_oss: disagrees about version of symbol snd_ctl_find_numid
snd_mixer_oss: Unknown symbol snd_ctl_find_numid
kobject_register failed for snd (-17)
[<c0278976>] kobject_register+0x36/0x60
[<c01322ed>] mod_sysfs_setup+0x3d/0x90
[<c01334ec>] load_module+0x8ec/0xb90
[<c0133816>] sys_init_module+0x56/0x210
[<c0102c19>] syscall_call+0x7/0xb
snd_seq_device: disagrees about version of symbol snd_info_register
snd_seq_device: Unknown symbol snd_info_register
snd_seq_device: disagrees about version of symbol snd_info_create_module_entry
snd_seq_device: Unknown symbol snd_info_create_module_entry
snd_seq_device: disagrees about version of symbol snd_info_free_entry
snd_seq_device: Unknown symbol snd_info_free_entry
snd_seq_device: disagrees about version of symbol snd_seq_root
snd_seq_device: Unknown symbol snd_seq_root
snd_seq_device: Unknown symbol snd_verbose_printk
snd_seq_device: disagrees about version of symbol snd_device_new
snd_seq_device: Unknown symbol snd_device_new
snd_seq_device: disagrees about version of symbol snd_info_unregister
snd_seq_device: Unknown symbol snd_info_unregister
snd_timer: disagrees about version of symbol snd_info_register
snd_timer: Unknown symbol snd_info_register
snd_timer: disagrees about version of symbol snd_info_create_module_entry
snd_timer: Unknown symbol snd_info_create_module_entry
snd_timer: disagrees about version of symbol snd_info_free_entry
snd_timer: Unknown symbol snd_info_free_entry
snd_timer: Unknown symbol snd_verbose_printk
snd_timer: disagrees about version of symbol snd_unregister_device
snd_timer: Unknown symbol snd_unregister_device
snd_timer: disagrees about version of symbol snd_device_new
snd_timer: Unknown symbol snd_device_new
snd_timer: disagrees about version of symbol snd_info_unregister
snd_timer: Unknown symbol snd_info_unregister
snd_timer: disagrees about version of symbol snd_register_device
snd_timer: Unknown symbol snd_register_device
snd_seq: disagrees about version of symbol snd_timer_stop
snd_seq: Unknown symbol snd_timer_stop
snd_seq: disagrees about version of symbol snd_info_register
snd_seq: Unknown symbol snd_info_register
snd_seq: disagrees about version of symbol snd_info_create_module_entry
snd_seq: Unknown symbol snd_info_create_module_entry
snd_seq: disagrees about version of symbol snd_info_free_entry
snd_seq: Unknown symbol snd_info_free_entry
snd_seq: disagrees about version of symbol snd_seq_root
snd_seq: Unknown symbol snd_seq_root
snd_seq: disagrees about version of symbol snd_timer_close
snd_seq: Unknown symbol snd_timer_close
snd_seq: Unknown symbol snd_verbose_printk
snd_seq: disagrees about version of symbol snd_timer_open
snd_seq: Unknown symbol snd_timer_open
snd_seq: disagrees about version of symbol snd_timer_start
snd_seq: Unknown symbol snd_timer_start
snd_seq: disagrees about version of symbol snd_timer_resolution
snd_seq: Unknown symbol snd_timer_resolution
snd_seq: disagrees about version of symbol snd_timer_pause
snd_seq: Unknown symbol snd_timer_pause
snd_seq: disagrees about version of symbol snd_unregister_device
snd_seq: Unknown symbol snd_unregister_device
snd_seq: disagrees about version of symbol snd_info_unregister
snd_seq: Unknown symbol snd_info_unregister
snd_seq: disagrees about version of symbol snd_register_device
snd_seq: Unknown symbol snd_register_device
eth0: DSPCFG accepted after 0 usec.
eth0: link up.
eth0: Setting full-duplex based on negotiated link capability.
[drm] Initialized drm 1.0.0 20040925
ACPI: PCI Interrupt 0000:00:02.0[A] -> GSI 16 (level, low) -> IRQ 16
[drm] Initialized i915 1.1.0 20040405 on minor 0:
mtrr: base(0xf0020000) is not aligned on a size(0x800000) boundary
NET: Registered protocol family 10
Disabled Privacy Extensions on device c04425a0(lo)
IPv6 over IPv4 tunneling driver
eth0: no IPv6 routers present
kobject_register failed for snd_page_alloc (-17)
[<c0278976>] kobject_register+0x36/0x60
[<c01322ed>] mod_sysfs_setup+0x3d/0x90
[<c01334ec>] load_module+0x8ec/0xb90
[<c0133816>] sys_init_module+0x56/0x210
[<c0102c19>] syscall_call+0x7/0xb
kobject_register failed for snd (-17)
[<c0278976>] kobject_register+0x36/0x60
[<c01322ed>] mod_sysfs_setup+0x3d/0x90
[<c01334ec>] load_module+0x8ec/0xb90
[<c0133816>] sys_init_module+0x56/0x210
[<c0102c19>] syscall_call+0x7/0xb
snd_timer: disagrees about version of symbol snd_info_register
snd_timer: Unknown symbol snd_info_register
snd_timer: disagrees about version of symbol snd_info_create_module_entry
snd_timer: Unknown symbol snd_info_create_module_entry
snd_timer: disagrees about version of symbol snd_info_free_entry
snd_timer: Unknown symbol snd_info_free_entry
snd_timer: Unknown symbol snd_verbose_printk
snd_timer: disagrees about version of symbol snd_unregister_device
snd_timer: Unknown symbol snd_unregister_device
snd_timer: disagrees about version of symbol snd_device_new
snd_timer: Unknown symbol snd_device_new
snd_timer: disagrees about version of symbol snd_info_unregister
snd_timer: Unknown symbol snd_info_unregister
snd_timer: disagrees about version of symbol snd_register_device
snd_timer: Unknown symbol snd_register_device
snd_pcm: disagrees about version of symbol snd_info_register
snd_pcm: Unknown symbol snd_info_register
snd_pcm: disagrees about version of symbol snd_info_create_module_entry
snd_pcm: Unknown symbol snd_info_create_module_entry
snd_pcm: disagrees about version of symbol snd_timer_notify
snd_pcm: Unknown symbol snd_timer_notify
snd_pcm: disagrees about version of symbol snd_timer_interrupt
snd_pcm: Unknown symbol snd_timer_interrupt
snd_pcm: disagrees about version of symbol snd_info_free_entry
snd_pcm: Unknown symbol snd_info_free_entry
snd_pcm: Unknown symbol snd_verbose_printk
snd_pcm: disagrees about version of symbol snd_ctl_register_ioctl
snd_pcm: Unknown symbol snd_ctl_register_ioctl
snd_pcm: disagrees about version of symbol snd_card_file_add
snd_pcm: Unknown symbol snd_card_file_add
snd_pcm: disagrees about version of symbol snd_unregister_device
snd_pcm: Unknown symbol snd_unregister_device
snd_pcm: disagrees about version of symbol snd_timer_new
snd_pcm: Unknown symbol snd_timer_new
snd_pcm: disagrees about version of symbol snd_device_new
snd_pcm: Unknown symbol snd_device_new
snd_pcm: disagrees about version of symbol snd_ctl_unregister_ioctl
snd_pcm: Unknown symbol snd_ctl_unregister_ioctl
snd_pcm: disagrees about version of symbol snd_info_create_card_entry
snd_pcm: Unknown symbol snd_info_create_card_entry
snd_pcm: disagrees about version of symbol snd_power_wait
snd_pcm: Unknown symbol snd_power_wait
snd_pcm: disagrees about version of symbol snd_device_free
snd_pcm: Unknown symbol snd_device_free
snd_pcm: disagrees about version of symbol snd_card_file_remove
snd_pcm: Unknown symbol snd_card_file_remove
snd_pcm: disagrees about version of symbol snd_info_unregister
snd_pcm: Unknown symbol snd_info_unregister
snd_pcm: disagrees about version of symbol snd_device_register
snd_pcm: Unknown symbol snd_device_register
snd_pcm: disagrees about version of symbol snd_register_device
snd_pcm: Unknown symbol snd_register_device
snd_ac97_codec: disagrees about version of symbol snd_info_register
snd_ac97_codec: Unknown symbol snd_info_register
snd_ac97_codec: disagrees about version of symbol snd_ctl_add
snd_ac97_codec: Unknown symbol snd_ctl_add
snd_ac97_codec: disagrees about version of symbol snd_info_free_entry
snd_ac97_codec: Unknown symbol snd_info_free_entry
snd_ac97_codec: disagrees about version of symbol snd_ctl_find_id
snd_ac97_codec: Unknown symbol snd_ctl_find_id
snd_ac97_codec: Unknown symbol snd_verbose_printk
snd_ac97_codec: disagrees about version of symbol snd_ctl_new1
snd_ac97_codec: Unknown symbol snd_ctl_new1
snd_ac97_codec: disagrees about version of symbol snd_ctl_remove_id
snd_ac97_codec: Unknown symbol snd_ctl_remove_id
snd_ac97_codec: disagrees about version of symbol snd_component_add
snd_ac97_codec: Unknown symbol snd_component_add
snd_ac97_codec: disagrees about version of symbol snd_pcm_hw_rule_add
snd_ac97_codec: Unknown symbol snd_pcm_hw_rule_add
snd_ac97_codec: disagrees about version of symbol snd_device_new
snd_ac97_codec: Unknown symbol snd_device_new
snd_ac97_codec: disagrees about version of symbol snd_info_create_card_entry
snd_ac97_codec: Unknown symbol snd_info_create_card_entry
snd_ac97_codec: disagrees about version of symbol snd_info_unregister
snd_ac97_codec: Unknown symbol snd_info_unregister
snd_intel8x0: disagrees about version of symbol snd_ac97_pcm_close
snd_intel8x0: Unknown symbol snd_ac97_pcm_close
snd_intel8x0: disagrees about version of symbol snd_ac97_resume
snd_intel8x0: Unknown symbol snd_ac97_resume
snd_intel8x0: disagrees about version of symbol snd_pcm_new
snd_intel8x0: Unknown symbol snd_pcm_new
snd_intel8x0: disagrees about version of symbol snd_pcm_limit_hw_rates
snd_intel8x0: Unknown symbol snd_pcm_limit_hw_rates
snd_intel8x0: disagrees about version of symbol snd_card_register
snd_intel8x0: Unknown symbol snd_card_register
snd_intel8x0: disagrees about version of symbol snd_card_free
snd_intel8x0: Unknown symbol snd_card_free
snd_intel8x0: disagrees about version of symbol snd_pcm_lib_preallocate_pages_for_all
snd_intel8x0: Unknown symbol snd_pcm_lib_preallocate_pages_for_all
snd_intel8x0: disagrees about version of symbol snd_card_proc_new
snd_intel8x0: Unknown symbol snd_card_proc_new
snd_intel8x0: disagrees about version of symbol snd_ac97_pcm_open
snd_intel8x0: Unknown symbol snd_ac97_pcm_open
snd_intel8x0: disagrees about version of symbol snd_ac97_set_rate
snd_intel8x0: Unknown symbol snd_ac97_set_rate
snd_intel8x0: disagrees about version of symbol snd_ac97_update_bits
snd_intel8x0: Unknown symbol snd_ac97_update_bits
snd_intel8x0: disagrees about version of symbol snd_ac97_mixer
snd_intel8x0: Unknown symbol snd_ac97_mixer
snd_intel8x0: disagrees about version of symbol snd_ac97_bus
snd_intel8x0: Unknown symbol snd_ac97_bus
snd_intel8x0: Unknown symbol snd_verbose_printk
snd_intel8x0: disagrees about version of symbol snd_ac97_pcm_double_rate_rules
snd_intel8x0: Unknown symbol snd_ac97_pcm_double_rate_rules
snd_intel8x0: disagrees about version of symbol snd_card_new
snd_intel8x0: Unknown symbol snd_card_new
snd_intel8x0: disagrees about version of symbol snd_ac97_suspend
snd_intel8x0: Unknown symbol snd_ac97_suspend
snd_intel8x0: disagrees about version of symbol snd_pcm_lib_malloc_pages
snd_intel8x0: Unknown symbol snd_pcm_lib_malloc_pages
snd_intel8x0: disagrees about version of symbol snd_pcm_lib_ioctl
snd_intel8x0: Unknown symbol snd_pcm_lib_ioctl
snd_intel8x0: disagrees about version of symbol snd_pcm_lib_free_pages
snd_intel8x0: Unknown symbol snd_pcm_lib_free_pages
snd_intel8x0: disagrees about version of symbol snd_card_pci_suspend
snd_intel8x0: Unknown symbol snd_card_pci_suspend
snd_intel8x0: disagrees about version of symbol snd_pcm_set_ops
snd_intel8x0: Unknown symbol snd_pcm_set_ops
snd_intel8x0: disagrees about version of symbol snd_card_set_pm_callback
snd_intel8x0: Unknown symbol snd_card_set_pm_callback
snd_intel8x0: disagrees about version of symbol snd_pcm_hw_constraint_list
snd_intel8x0: Unknown symbol snd_pcm_hw_constraint_list
snd_intel8x0: disagrees about version of symbol snd_device_new
snd_intel8x0: Unknown symbol snd_device_new
snd_intel8x0: disagrees about version of symbol snd_ac97_get_short_name
snd_intel8x0: Unknown symbol snd_ac97_get_short_name
snd_intel8x0: disagrees about version of symbol snd_pcm_suspend_all
snd_intel8x0: Unknown symbol snd_pcm_suspend_all
snd_intel8x0: disagrees about version of symbol snd_ac97_pcm_assign
snd_intel8x0: Unknown symbol snd_ac97_pcm_assign
snd_intel8x0: disagrees about version of symbol snd_pcm_hw_constraint_integer
snd_intel8x0: Unknown symbol snd_pcm_hw_constraint_integer
snd_intel8x0: disagrees about version of symbol snd_pcm_hw_constraint_msbits
snd_intel8x0: Unknown symbol snd_pcm_hw_constraint_msbits
snd_intel8x0: disagrees about version of symbol snd_pcm_period_elapsed
snd_intel8x0: Unknown symbol snd_pcm_period_elapsed
snd_intel8x0: disagrees about version of symbol snd_ac97_tune_hardware
snd_intel8x0: Unknown symbol snd_ac97_tune_hardware
kobject_register failed for snd (-17)
[<c0278976>] kobject_register+0x36/0x60
[<c01322ed>] mod_sysfs_setup+0x3d/0x90
[<c01334ec>] load_module+0x8ec/0xb90
[<c0133816>] sys_init_module+0x56/0x210
[<c0102c19>] syscall_call+0x7/0xb
snd_seq_device: disagrees about version of symbol snd_info_register
snd_seq_device: Unknown symbol snd_info_register
snd_seq_device: disagrees about version of symbol snd_info_create_module_entry
snd_seq_device: Unknown symbol snd_info_create_module_entry
snd_seq_device: disagrees about version of symbol snd_info_free_entry
snd_seq_device: Unknown symbol snd_info_free_entry
snd_seq_device: disagrees about version of symbol snd_seq_root
snd_seq_device: Unknown symbol snd_seq_root
snd_seq_device: Unknown symbol snd_verbose_printk
snd_seq_device: disagrees about version of symbol snd_device_new
snd_seq_device: Unknown symbol snd_device_new
snd_seq_device: disagrees about version of symbol snd_info_unregister
snd_seq_device: Unknown symbol snd_info_unregister
snd_timer: disagrees about version of symbol snd_info_register
snd_timer: Unknown symbol snd_info_register
snd_timer: disagrees about version of symbol snd_info_create_module_entry
snd_timer: Unknown symbol snd_info_create_module_entry
snd_timer: disagrees about version of symbol snd_info_free_entry
snd_timer: Unknown symbol snd_info_free_entry
snd_timer: Unknown symbol snd_verbose_printk
snd_timer: disagrees about version of symbol snd_unregister_device
snd_timer: Unknown symbol snd_unregister_device
snd_timer: disagrees about version of symbol snd_device_new
snd_timer: Unknown symbol snd_device_new
snd_timer: disagrees about version of symbol snd_info_unregister
snd_timer: Unknown symbol snd_info_unregister
snd_timer: disagrees about version of symbol snd_register_device
snd_timer: Unknown symbol snd_register_device
snd_seq: disagrees about version of symbol snd_timer_stop
snd_seq: Unknown symbol snd_timer_stop
snd_seq: disagrees about version of symbol snd_info_register
snd_seq: Unknown symbol snd_info_register
snd_seq: disagrees about version of symbol snd_info_create_module_entry
snd_seq: Unknown symbol snd_info_create_module_entry
snd_seq: disagrees about version of symbol snd_info_free_entry
snd_seq: Unknown symbol snd_info_free_entry
snd_seq: disagrees about version of symbol snd_seq_root
snd_seq: Unknown symbol snd_seq_root
snd_seq: disagrees about version of symbol snd_timer_close
snd_seq: Unknown symbol snd_timer_close
snd_seq: Unknown symbol snd_verbose_printk
snd_seq: disagrees about version of symbol snd_timer_open
snd_seq: Unknown symbol snd_timer_open
snd_seq: disagrees about version of symbol snd_timer_start
snd_seq: Unknown symbol snd_timer_start
snd_seq: disagrees about version of symbol snd_timer_resolution
snd_seq: Unknown symbol snd_timer_resolution
snd_seq: disagrees about version of symbol snd_timer_pause
snd_seq: Unknown symbol snd_timer_pause
snd_seq: disagrees about version of symbol snd_unregister_device
snd_seq: Unknown symbol snd_unregister_device
snd_seq: disagrees about version of symbol snd_info_unregister
snd_seq: Unknown symbol snd_info_unregister
snd_seq: disagrees about version of symbol snd_register_device
snd_seq: Unknown symbol snd_register_device
snd_seq_oss: disagrees about version of symbol snd_info_register
snd_seq_oss: Unknown symbol snd_info_register
snd_seq_oss: disagrees about version of symbol snd_info_create_module_entry
snd_seq_oss: Unknown symbol snd_info_create_module_entry
snd_seq_oss: disagrees about version of symbol snd_info_free_entry
snd_seq_oss: Unknown symbol snd_info_free_entry
snd_seq_oss: disagrees about version of symbol snd_seq_root
snd_seq_oss: Unknown symbol snd_seq_root
snd_seq_oss: disagrees about version of symbol snd_unregister_oss_device
snd_seq_oss: Unknown symbol snd_unregister_oss_device
snd_seq_oss: Unknown symbol snd_verbose_printk
snd_seq_oss: disagrees about version of symbol snd_register_oss_device
snd_seq_oss: Unknown symbol snd_register_oss_device
snd_seq_oss: disagrees about version of symbol snd_seq_device_register_driver
snd_seq_oss: Unknown symbol snd_seq_device_register_driver
snd_seq_oss: disagrees about version of symbol snd_seq_create_kernel_client
snd_seq_oss: Unknown symbol snd_seq_create_kernel_client
snd_seq_oss: disagrees about version of symbol snd_info_unregister
snd_seq_oss: Unknown symbol snd_info_unregister
kobject_register failed for snd (-17)
[<c0278976>] kobject_register+0x36/0x60
[<c01322ed>] mod_sysfs_setup+0x3d/0x90
[<c01334ec>] load_module+0x8ec/0xb90
[<c0133816>] sys_init_module+0x56/0x210
[<c0102c19>] syscall_call+0x7/0xb
snd_mixer_oss: disagrees about version of symbol snd_info_register
snd_mixer_oss: Unknown symbol snd_info_register
snd_mixer_oss: disagrees about version of symbol snd_info_free_entry
snd_mixer_oss: Unknown symbol snd_info_free_entry
snd_mixer_oss: disagrees about version of symbol snd_unregister_oss_device
snd_mixer_oss: Unknown symbol snd_unregister_oss_device
snd_mixer_oss: disagrees about version of symbol snd_ctl_find_id
snd_mixer_oss: Unknown symbol snd_ctl_find_id
snd_mixer_oss: Unknown symbol snd_verbose_printk
snd_mixer_oss: disagrees about version of symbol snd_register_oss_device
snd_mixer_oss: Unknown symbol snd_register_oss_device
snd_mixer_oss: disagrees about version of symbol snd_card_file_add
snd_mixer_oss: Unknown symbol snd_card_file_add
snd_mixer_oss: disagrees about version of symbol snd_mixer_oss_notify_callback
snd_mixer_oss: Unknown symbol snd_mixer_oss_notify_callback
snd_mixer_oss: disagrees about version of symbol snd_cards
snd_mixer_oss: Unknown symbol snd_cards
snd_mixer_oss: disagrees about version of symbol snd_ctl_notify
snd_mixer_oss: Unknown symbol snd_ctl_notify
snd_mixer_oss: disagrees about version of symbol snd_info_create_card_entry
snd_mixer_oss: Unknown symbol snd_info_create_card_entry
snd_mixer_oss: disagrees about version of symbol snd_card_file_remove
snd_mixer_oss: Unknown symbol snd_card_file_remove
snd_mixer_oss: disagrees about version of symbol snd_info_unregister
snd_mixer_oss: Unknown symbol snd_info_unregister
snd_mixer_oss: disagrees about version of symbol snd_ctl_find_numid
snd_mixer_oss: Unknown symbol snd_ctl_find_numid
kobject_register failed for snd_page_alloc (-17)
[<c0278976>] kobject_register+0x36/0x60
[<c01322ed>] mod_sysfs_setup+0x3d/0x90
[<c01334ec>] load_module+0x8ec/0xb90
[<c0133816>] sys_init_module+0x56/0x210
[<c0102c19>] syscall_call+0x7/0xb
snd_timer: disagrees about version of symbol snd_info_register
snd_timer: Unknown symbol snd_info_register
snd_timer: disagrees about version of symbol snd_info_create_module_entry
snd_timer: Unknown symbol snd_info_create_module_entry
snd_timer: disagrees about version of symbol snd_info_free_entry
snd_timer: Unknown symbol snd_info_free_entry
snd_timer: Unknown symbol snd_verbose_printk
snd_timer: disagrees about version of symbol snd_unregister_device
snd_timer: Unknown symbol snd_unregister_device
snd_timer: disagrees about version of symbol snd_device_new
snd_timer: Unknown symbol snd_device_new
snd_timer: disagrees about version of symbol snd_info_unregister
snd_timer: Unknown symbol snd_info_unregister
snd_timer: disagrees about version of symbol snd_register_device
snd_timer: Unknown symbol snd_register_device
snd_pcm: disagrees about version of symbol snd_info_register
snd_pcm: Unknown symbol snd_info_register
snd_pcm: disagrees about version of symbol snd_info_create_module_entry
snd_pcm: Unknown symbol snd_info_create_module_entry
snd_pcm: disagrees about version of symbol snd_timer_notify
snd_pcm: Unknown symbol snd_timer_notify
snd_pcm: disagrees about version of symbol snd_timer_interrupt
snd_pcm: Unknown symbol snd_timer_interrupt
snd_pcm: disagrees about version of symbol snd_info_free_entry
snd_pcm: Unknown symbol snd_info_free_entry
snd_pcm: Unknown symbol snd_verbose_printk
snd_pcm: disagrees about version of symbol snd_ctl_register_ioctl
snd_pcm: Unknown symbol snd_ctl_register_ioctl
snd_pcm: disagrees about version of symbol snd_card_file_add
snd_pcm: Unknown symbol snd_card_file_add
snd_pcm: disagrees about version of symbol snd_unregister_device
snd_pcm: Unknown symbol snd_unregister_device
snd_pcm: disagrees about version of symbol snd_timer_new
snd_pcm: Unknown symbol snd_timer_new
snd_pcm: disagrees about version of symbol snd_device_new
snd_pcm: Unknown symbol snd_device_new
snd_pcm: disagrees about version of symbol snd_ctl_unregister_ioctl
snd_pcm: Unknown symbol snd_ctl_unregister_ioctl
snd_pcm: disagrees about version of symbol snd_info_create_card_entry
snd_pcm: Unknown symbol snd_info_create_card_entry
snd_pcm: disagrees about version of symbol snd_power_wait
snd_pcm: Unknown symbol snd_power_wait
snd_pcm: disagrees about version of symbol snd_device_free
snd_pcm: Unknown symbol snd_device_free
snd_pcm: disagrees about version of symbol snd_card_file_remove
snd_pcm: Unknown symbol snd_card_file_remove
snd_pcm: disagrees about version of symbol snd_info_unregister
snd_pcm: Unknown symbol snd_info_unregister
snd_pcm: disagrees about version of symbol snd_device_register
snd_pcm: Unknown symbol snd_device_register
snd_pcm: disagrees about version of symbol snd_register_device
snd_pcm: Unknown symbol snd_register_device
snd_pcm_oss: disagrees about version of symbol snd_pcm_lib_read
snd_pcm_oss: Unknown symbol snd_pcm_lib_read
snd_pcm_oss: disagrees about version of symbol snd_info_register
snd_pcm_oss: Unknown symbol snd_info_register
snd_pcm_oss: disagrees about version of symbol snd_pcm_hw_constraints_init
snd_pcm_oss: Unknown symbol snd_pcm_hw_constraints_init
snd_pcm_oss: disagrees about version of symbol snd_pcm_hw_param_near
snd_pcm_oss: Unknown symbol snd_pcm_hw_param_near
snd_pcm_oss: disagrees about version of symbol snd_pcm_kernel_ioctl
snd_pcm_oss: Unknown symbol snd_pcm_kernel_ioctl
snd_pcm_oss: disagrees about version of symbol snd_pcm_stop
snd_pcm_oss: Unknown symbol snd_pcm_stop
snd_pcm_oss: disagrees about version of symbol snd_info_free_entry
snd_pcm_oss: Unknown symbol snd_info_free_entry
snd_pcm_oss: disagrees about version of symbol snd_unregister_oss_device
snd_pcm_oss: Unknown symbol snd_unregister_oss_device
snd_pcm_oss: disagrees about version of symbol snd_pcm_hw_param_set
snd_pcm_oss: Unknown symbol snd_pcm_hw_param_set
snd_pcm_oss: Unknown symbol snd_verbose_printk
snd_pcm_oss: disagrees about version of symbol snd_pcm_open_substream
snd_pcm_oss: Unknown symbol snd_pcm_open_substream
snd_pcm_oss: disagrees about version of symbol snd_register_oss_device
snd_pcm_oss: Unknown symbol snd_register_oss_device
snd_pcm_oss: disagrees about version of symbol snd_pcm_lib_readv
snd_pcm_oss: Unknown symbol snd_pcm_lib_readv
snd_pcm_oss: disagrees about version of symbol snd_card_file_add
snd_pcm_oss: Unknown symbol snd_card_file_add
snd_pcm_oss: disagrees about version of symbol snd_pcm_kernel_capture_ioctl
snd_pcm_oss: Unknown symbol snd_pcm_kernel_capture_ioctl
snd_pcm_oss: disagrees about version of symbol snd_pcm_lib_writev
snd_pcm_oss: Unknown symbol snd_pcm_lib_writev
snd_pcm_oss: disagrees about version of symbol snd_mixer_oss_ioctl_card
snd_pcm_oss: Unknown symbol snd_mixer_oss_ioctl_card
snd_pcm_oss: disagrees about version of symbol snd_pcm_mmap_data
snd_pcm_oss: Unknown symbol snd_pcm_mmap_data
snd_pcm_oss: disagrees about version of symbol snd_pcm_devices
snd_pcm_oss: Unknown symbol snd_pcm_devices
snd_pcm_oss: disagrees about version of symbol snd_pcm_hw_param_mask
snd_pcm_oss: Unknown symbol snd_pcm_hw_param_mask
snd_pcm_oss: disagrees about version of symbol snd_pcm_hw_constraints_complete
snd_pcm_oss: Unknown symbol snd_pcm_hw_constraints_complete
snd_pcm_oss: disagrees about version of symbol snd_pcm_hw_refine
snd_pcm_oss: Unknown symbol snd_pcm_hw_refine
snd_pcm_oss: disagrees about version of symbol snd_pcm_kernel_playback_ioctl
snd_pcm_oss: Unknown symbol snd_pcm_kernel_playback_ioctl
snd_pcm_oss: disagrees about version of symbol snd_info_create_card_entry
snd_pcm_oss: Unknown symbol snd_info_create_card_entry
snd_pcm_oss: disagrees about version of symbol snd_pcm_notify
snd_pcm_oss: Unknown symbol snd_pcm_notify
snd_pcm_oss: disagrees about version of symbol snd_pcm_release_substream
snd_pcm_oss: Unknown symbol snd_pcm_release_substream
snd_pcm_oss: disagrees about version of symbol snd_pcm_lib_write
snd_pcm_oss: Unknown symbol snd_pcm_lib_write
snd_pcm_oss: disagrees about version of symbol snd_card_file_remove
snd_pcm_oss: Unknown symbol snd_card_file_remove
snd_pcm_oss: disagrees about version of symbol snd_info_unregister
snd_pcm_oss: Unknown symbol snd_info_unregister
kobject_register failed for snd (-17)
[<c0278976>] kobject_register+0x36/0x60
[<c01322ed>] mod_sysfs_setup+0x3d/0x90
[<c01334ec>] load_module+0x8ec/0xb90
[<c0133816>] sys_init_module+0x56/0x210
[<c0102c19>] syscall_call+0x7/0xb
snd_mixer_oss: disagrees about version of symbol snd_info_register
snd_mixer_oss: Unknown symbol snd_info_register
snd_mixer_oss: disagrees about version of symbol snd_info_free_entry
snd_mixer_oss: Unknown symbol snd_info_free_entry
snd_mixer_oss: disagrees about version of symbol snd_unregister_oss_device
snd_mixer_oss: Unknown symbol snd_unregister_oss_device
snd_mixer_oss: disagrees about version of symbol snd_ctl_find_id
snd_mixer_oss: Unknown symbol snd_ctl_find_id
snd_mixer_oss: Unknown symbol snd_verbose_printk
snd_mixer_oss: disagrees about version of symbol snd_register_oss_device
snd_mixer_oss: Unknown symbol snd_register_oss_device
snd_mixer_oss: disagrees about version of symbol snd_card_file_add
snd_mixer_oss: Unknown symbol snd_card_file_add
snd_mixer_oss: disagrees about version of symbol snd_mixer_oss_notify_callback
snd_mixer_oss: Unknown symbol snd_mixer_oss_notify_callback
snd_mixer_oss: disagrees about version of symbol snd_cards
snd_mixer_oss: Unknown symbol snd_cards
snd_mixer_oss: disagrees about version of symbol snd_ctl_notify
snd_mixer_oss: Unknown symbol snd_ctl_notify
snd_mixer_oss: disagrees about version of symbol snd_info_create_card_entry
snd_mixer_oss: Unknown symbol snd_info_create_card_entry
snd_mixer_oss: disagrees about version of symbol snd_card_file_remove
snd_mixer_oss: Unknown symbol snd_card_file_remove
snd_mixer_oss: disagrees about version of symbol snd_info_unregister
snd_mixer_oss: Unknown symbol snd_info_unregister
snd_mixer_oss: disagrees about version of symbol snd_ctl_find_numid
snd_mixer_oss: Unknown symbol snd_ctl_find_numid
kobject_register failed for snd (-17)
[<c0278976>] kobject_register+0x36/0x60
[<c01322ed>] mod_sysfs_setup+0x3d/0x90
[<c01334ec>] load_module+0x8ec/0xb90
[<c0133816>] sys_init_module+0x56/0x210
[<c0102c19>] syscall_call+0x7/0xb
snd_seq_device: disagrees about version of symbol snd_info_register
snd_seq_device: Unknown symbol snd_info_register
snd_seq_device: disagrees about version of symbol snd_info_create_module_entry
snd_seq_device: Unknown symbol snd_info_create_module_entry
snd_seq_device: disagrees about version of symbol snd_info_free_entry
snd_seq_device: Unknown symbol snd_info_free_entry
snd_seq_device: disagrees about version of symbol snd_seq_root
snd_seq_device: Unknown symbol snd_seq_root
snd_seq_device: Unknown symbol snd_verbose_printk
snd_seq_device: disagrees about version of symbol snd_device_new
snd_seq_device: Unknown symbol snd_device_new
snd_seq_device: disagrees about version of symbol snd_info_unregister
snd_seq_device: Unknown symbol snd_info_unregister
snd_timer: disagrees about version of symbol snd_info_register
snd_timer: Unknown symbol snd_info_register
snd_timer: disagrees about version of symbol snd_info_create_module_entry
snd_timer: Unknown symbol snd_info_create_module_entry
snd_timer: disagrees about version of symbol snd_info_free_entry
snd_timer: Unknown symbol snd_info_free_entry
snd_timer: Unknown symbol snd_verbose_printk
snd_timer: disagrees about version of symbol snd_unregister_device
snd_timer: Unknown symbol snd_unregister_device
snd_timer: disagrees about version of symbol snd_device_new
snd_timer: Unknown symbol snd_device_new
snd_timer: disagrees about version of symbol snd_info_unregister
snd_timer: Unknown symbol snd_info_unregister
snd_timer: disagrees about version of symbol snd_register_device
snd_timer: Unknown symbol snd_register_device
snd_seq: disagrees about version of symbol snd_timer_stop
snd_seq: Unknown symbol snd_timer_stop
snd_seq: disagrees about version of symbol snd_info_register
snd_seq: Unknown symbol snd_info_register
snd_seq: disagrees about version of symbol snd_info_create_module_entry
snd_seq: Unknown symbol snd_info_create_module_entry
snd_seq: disagrees about version of symbol snd_info_free_entry
snd_seq: Unknown symbol snd_info_free_entry
snd_seq: disagrees about version of symbol snd_seq_root
snd_seq: Unknown symbol snd_seq_root
snd_seq: disagrees about version of symbol snd_timer_close
snd_seq: Unknown symbol snd_timer_close
snd_seq: Unknown symbol snd_verbose_printk
snd_seq: disagrees about version of symbol snd_timer_open
snd_seq: Unknown symbol snd_timer_open
snd_seq: disagrees about version of symbol snd_timer_start
snd_seq: Unknown symbol snd_timer_start
snd_seq: disagrees about version of symbol snd_timer_resolution
snd_seq: Unknown symbol snd_timer_resolution
snd_seq: disagrees about version of symbol snd_timer_pause
snd_seq: Unknown symbol snd_timer_pause
snd_seq: disagrees about version of symbol snd_unregister_device
snd_seq: Unknown symbol snd_unregister_device
snd_seq: disagrees about version of symbol snd_info_unregister
snd_seq: Unknown symbol snd_info_unregister
snd_seq: disagrees about version of symbol snd_register_device
snd_seq: Unknown symbol snd_register_device
Is there any hope?

EDIT: After reading the handbook, I fixed the error I get at startup. But, I get this at boot time:
FATAL: Module snd_intel8x0 not found.
Can I add it?
Top
SolidSnakex28
Apprentice
Apprentice
User avatar
Posts: 269
Joined: Sat Sep 03, 2005 1:34 am
Location: New York

  • Quote

Post by SolidSnakex28 » Mon Sep 19, 2005 1:06 am

Anyone?
FATAL: Module snd_intel8x0 not found.
Great, I fixed that problem too. I have no problems at boot, alsa works perfectly, and everything is like it should be.

Except that I have no sound.

EDIT: Well, I have sound. Here's the solution for those interested:
Disable everything except Master, MasterM, PCM, and AUX.
Top
schmobag
Tux's lil' helper
Tux's lil' helper
Posts: 91
Joined: Tue Feb 17, 2004 10:02 pm
Location: Los Angeles

  • Quote

Post by schmobag » Sun Oct 02, 2005 6:01 pm

THANK YOU!

I have had sound working for over a year, but after a recent kernel update sound went away. There were no errors, nothing that I could see I was doing wrong, just no sound. After beating my head against a wall for two days, rebuilding my kernel with alsa either builtin or as a module, your post led me in the right direction. I did a little experimenting in alsamixer, and I've narrowed the problem down to the "Headphone Jack Sense" and "Line Jack Sense" controls. If those two are set to "Mute", I get sound.

SolidSnakex28: When you run alsamixer, is the problem caused by the "Headphone Jack Sense" and "Line Jack Sense" controls not being mute? The better we can describe the problem, the better the devs and documentation people can deal with it.
Top
SolidSnakex28
Apprentice
Apprentice
User avatar
Posts: 269
Joined: Sat Sep 03, 2005 1:34 am
Location: New York

  • Quote

Post by SolidSnakex28 » Sun Oct 02, 2005 7:47 pm

That's exactly it.
Top
UTgamer
Veteran
Veteran
User avatar
Posts: 1326
Joined: Sun Aug 10, 2003 7:19 pm
Location: Troisdorf (Köln) Deutschland

  • Quote

Post by UTgamer » Sun Oct 02, 2005 9:10 pm

I found another solution, with a sound monolythic kernel, were all features work, see:
http://forums.gentoo.org/viewtopic-p-27 ... ml#2769117

Regards
AMD Phenom II x4 >> CFLAGS="-march=amdfam10 -O2 -mmmx -msse3 -mfpmath=sse,387 -pipe -ffast-math" is stable and here in use.

Did Intel produce at any time bugfree HW?
http://www.urbanmyth.org/microcode/
http://www.heise.de/newsticker/meldung/91748
Top
schmobag
Tux's lil' helper
Tux's lil' helper
Posts: 91
Joined: Tue Feb 17, 2004 10:02 pm
Location: Los Angeles

  • Quote

Post by schmobag » Sun Oct 02, 2005 9:36 pm

I started with a monolithic kernel, and had this problem despite that fact.
Top
Post Reply

21 posts • Page 1 of 1

Return to “Multimedia”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic