| View previous topic :: View next topic |
| Author |
Message |
GLS064 Tux's lil' helper

Joined: 21 Nov 2005 Posts: 147 Location: Braunschweig,Germany
|
Posted: Fri Dec 02, 2005 4:17 am Post subject: [solved] Alsa driver Problem |
|
|
Good Morning or good evening
I have to soundcards im my computer. Soundblaster Live ( emu10k1 ) and an onboard sound chip ( via82xx ). I followed the instruction from this Page and I have this problem when I boot my kernel :
"Error inserting snd-seq-device ( lib/modules/kernel-2.6.14.3/ ... ) unknown symbol in modul"
"Error inserting snd-emu10k1 ( lib/modules/kernel-2.6.14.3/ ... ) unknown symbol in modul"
"Error inserting snd-emu10k1-synth ( lib/modules/kernel-2.6.14.3/ ... ) unknown symbol in modul"
"Error inserting snd-mixer-oss ( lib/modules/kernel-2.6.14.3/ ... ) unknown symbol in modul"
...
and
the file
/dev/sound/dsp doesn't exist on my computer.
Bodo _________________ Gruss / Greetings Bodo
Global Airways - German Flightsim Community - www.flyglobal.de
Last edited by GLS064 on Sun Dec 04, 2005 12:30 pm; edited 1 time in total |
|
| Back to top |
|
 |
xaos5 Apprentice


Joined: 19 Apr 2005 Posts: 255 Location: Michigan
|
Posted: Fri Dec 02, 2005 10:03 am Post subject: |
|
|
try upgrading the kernel or alsa packages. also make sure you compile them as modules in the kernel config.
if you compiled your own kernel make sure you compiled the modules for it too. I do:
# make && make modules_install
I believe /dev/sound/dsp is for oss.
do this to see if your sound card is detected:
# lspci | grep audio
or
# lspci |
|
| Back to top |
|
 |
Vortex375 Veteran


Joined: 03 Mar 2005 Posts: 1704 Location: Deutschland
|
Posted: Fri Dec 02, 2005 10:06 am Post subject: |
|
|
Make sure /usr/src/linux is pointing to the correct kernel.
You can also delete /lib/modules/kernel-2.6.14.3 then reinstall the modules with this:
| Code: |
rm -R /lib/modules/kernel-2.6.14.3
cd /usr/src/linux
make modules_install
|
If you are using the alsa-driver package you also have to
I recommend rebooting after this, to make sure that all the new modules are loaded. |
|
| Back to top |
|
 |
GLS064 Tux's lil' helper

Joined: 21 Nov 2005 Posts: 147 Location: Braunschweig,Germany
|
Posted: Fri Dec 02, 2005 11:42 am Post subject: |
|
|
well, I tried this already. usr/src/linux/ point to the right kernel source. I also tried alsa from the project homepage.
When I run alsasound there is something strange. I have ( as I told ) only to sound cards ( Sound blaster Live and Via AC 97 onboard ). But alsaconf shows me 3 cards:
-emu10k1
-via82xx
and
- legacy device ( ISA chip ).
I have made a screenshot
http://www.people.freenet.de/bvthadden/alsaconf.jpg
But the mainboard ( KT4V from MSI ) does nont have any ISA Slots anymore.
Alsaconf tries to configure a sound card snd-*** always
Upgrading kernel ? To 2.6.15-rc4 ? I already use the latest Kernel Version ( stable ) from kernel.org. _________________ Gruss / Greetings Bodo
Global Airways - German Flightsim Community - www.flyglobal.de |
|
| Back to top |
|
 |
Vortex375 Veteran


Joined: 03 Mar 2005 Posts: 1704 Location: Deutschland
|
Posted: Fri Dec 02, 2005 1:31 pm Post subject: |
|
|
Ok, now you needn't worry about that ISA option in alsaconf. That shows up for me too. I guess ISA cards do not support plug and play so they cannot be autodetected. That's why there is an extra option to probe for ISA cards.
That snd_*** thing is a nasty bug in alsaconf (that doesn't seem to get fixed ever).
You have to edit the file /etc/modules.d/alsa yourself and replace the snd_*** entries with valid entries.
For example I think for the soundblaster live it should look like this:
Edit this:
| Code: |
# --- BEGIN: Generated by ALSACONF, do not edit. ---
# --- ALSACONF version 1.0.9a ---
alias snd-card-0 snd-***
alias sound-slot-0 snd-***
|
so that it looks like this:
| Code: |
# --- BEGIN: Generated by ALSACONF, do not edit. ---
# --- ALSACONF version 1.0.9a ---
alias snd-card-0 snd-emu10k1
alias sound-slot-0 snd-emu10k1
|
Replace the "emu10k1" (if necessary) wich whatever is correct for your card.
Good luck!
Remember that you have to run "modules-update" after you made changes to the files /etc/modules.d/ or the changes won't take effect. After you ran "modules-update" you also have to restart alsasound with "/etc/init.d/alsasound restart". |
|
| Back to top |
|
 |
Headrush Veteran


Joined: 05 Nov 2003 Posts: 5580 Location: Bizarro World
|
Posted: Fri Dec 02, 2005 1:50 pm Post subject: |
|
|
Did you ever mess around with the alsa-driver package?
Please post the exact error when you modprobe the module. (No ... on the end, that part is important) _________________ Mac OS X 10.4.8 (Gentoo in Parallels now)
AMD64 Opteron Dual Core 4400+, 2x1GB DDR400, GeforceFX 7900GS Extra Pipelines Unlocked
300GB SATA Maxtor HD , Sony DRU810A DVD Burner, FlyVideo 3000 TV, SB Live! |
|
| Back to top |
|
 |
GNUtoo Veteran


Joined: 05 May 2005 Posts: 1892
|
Posted: Fri Dec 02, 2005 2:58 pm Post subject: |
|
|
checklist:
-do you have udev or devfs?
-is the kernel properly configured (normaly you can retrive the config from /proc/config.gz)
-are the modules ok (lsmod)
-have you choosen the right install method (the last time i installed alsa there were 2 methods: one for the modules and one when it was compiled inside the kernel)
-right settings...
-non interferences with others sound systems such as lirc or esd but here /dev/dsp should be avaliable
-mabe(i don't know well /dev) make a simlink of the real dsp file that is into dev to /dev/dsp |
|
| Back to top |
|
 |
GLS064 Tux's lil' helper

Joined: 21 Nov 2005 Posts: 147 Location: Braunschweig,Germany
|
Posted: Fri Dec 02, 2005 4:53 pm Post subject: |
|
|
| Headrush wrote: | Did you ever mess around with the alsa-driver package?
Please post the exact error when you modprobe the module. (No ... on the end, that part is important) |
here we go, the exact output :
| Code: |
Running modules-update...
Loading driver...
* Loading ALSA modules ...
* Loading: snd-card-0 ...
WARNING: Error inserting snd_hwdep (/lib/modules/2.6.14.3/alsa-driver/acore/snd-
hwdep.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_timer (/lib/modules/2.6.14.3/alsa-driver/acore/snd-
timer.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_pcm (/lib/modules/2.6.14.3/alsa-driver/acore/snd-pc
m.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_ac97_codec (/lib/modules/2.6.14.3/alsa-driver/pci/a
c97/snd-ac97-codec.ko): Unknown symbol in module, or unknown parameter (see dmes
g)
WARNING: Error inserting snd_seq_device (/lib/modules/2.6.14.3/alsa-driver/acore
/seq/snd-seq-device.ko): Unknown symbol in module, or unknown parameter (see dme
sg)
WARNING: Error inserting snd_rawmidi (/lib/modules/2.6.14.3/alsa-driver/acore/sn
d-rawmidi.ko): Unknown symbol in module, or unknown parameter (see dmesg)
FATAL: Error inserting snd_emu10k1 (/lib/modules/2.6.14.3/alsa-driver/pci/emu10k
1/snd-emu10k1.ko): Unknown symbol in module, or unknown parameter (see d [ !! ]
* Loading: snd-seq-oss ...
WARNING: Error inserting snd_seq_device (/lib/modules/2.6.14.3/alsa-driver/acore
/seq/snd-seq-device.ko): Unknown symbol in module, or unknown parameter (see dme
sg)
WARNING: Error inserting snd_timer (/lib/modules/2.6.14.3/alsa-driver/acore/snd-
timer.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_seq (/lib/modules/2.6.14.3/alsa-driver/acore/seq/sn
d-seq.ko): Unknown symbol in module, or unknown parameter (see dmesg)
FATAL: Error inserting snd_seq_oss (/lib/modules/2.6.14.3/alsa-driver/acore/seq/
oss/snd-seq-oss.ko): Unknown symbol in module, or unknown parameter (see [ !! ]
* Loading: snd-pcm-oss ...
WARNING: Error inserting snd_mixer_oss (/lib/modules/2.6.14.3/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.14.3/alsa-driver/acore/snd-
timer.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_pcm (/lib/modules/2.6.14.3/alsa-driver/acore/snd-pc
m.ko): Unknown symbol in module, or unknown parameter (see dmesg)
FATAL: Error inserting snd_pcm_oss (/lib/modules/2.6.14.3/alsa-driver/acore/oss/
snd-pcm-oss.ko): Unknown symbol in module, or unknown parameter (see dme [ !! ]
* Loading: snd-mixer-oss ...
FATAL: Error inserting snd_mixer_oss (/lib/modules/2.6.14.3/alsa-driver/acore/os
s/snd-mixer-oss.ko): Unknown symbol in module, or unknown parameter (see [ !! ]
* Loading: snd-pcm-oss ...
WARNING: Error inserting snd_mixer_oss (/lib/modules/2.6.14.3/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.14.3/alsa-driver/acore/snd-
timer.ko): Unknown symbol in module, or unknown parameter (see dmesg)
WARNING: Error inserting snd_pcm (/lib/modules/2.6.14.3/alsa-driver/acore/snd-pc
m.ko): Unknown symbol in module, or unknown parameter (see dmesg)
FATAL: Error inserting snd_pcm_oss (/lib/modules/2.6.14.3/alsa-driver/acore/oss/
snd-pcm-oss.ko): Unknown symbol in module, or unknown parameter (see dme [ !! ]
* Loading: snd-mixer-oss ...
FATAL: Error inserting snd_mixer_oss (/lib/modules/2.6.14.3/alsa-driver/acore/os
s/snd-mixer-oss.ko): Unknown symbol in module, or unknown parameter (see [ !! ]
* Loading: snd-seq ...
WARNING: Error inserting snd_seq_device (/lib/modules/2.6.14.3/alsa-driver/acore
/seq/snd-seq-device.ko): Unknown symbol in module, or unknown parameter (see dme
sg)
WARNING: Error inserting snd_timer (/lib/modules/2.6.14.3/alsa-driver/acore/snd-
timer.ko): Unknown symbol in module, or unknown parameter (see dmesg)
FATAL: Error inserting snd_seq (/lib/modules/2.6.14.3/alsa-driver/acore/seq/snd-
seq.ko): Unknown symbol in module, or unknown parameter (see dmesg) [ !! ]
* Loading: snd-seq ...
WARNING: Error inserting snd_seq_device (/lib/modules/2.6.14.3/alsa-driver/acore
/seq/snd-seq-device.ko): Unknown symbol in module, or unknown parameter (see dme
sg)
WARNING: Error inserting snd_timer (/lib/modules/2.6.14.3/alsa-driver/acore/snd-
timer.ko): Unknown symbol in module, or unknown parameter (see dmesg)
FATAL: Error inserting snd_seq (/lib/modules/2.6.14.3/alsa-driver/acore/seq/snd-
seq.ko): Unknown symbol in module, or unknown parameter (see dmesg) [ !! ]
* ERROR: Failed to load necessary drivers [ ok ]
* Restoring Mixer Levels ... [ ok ]
|
and the output of dmesg :
| Code: |
bodo # dmesg
s: 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
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_malloc_pages
snd_pcm: Unknown symbol snd_malloc_pages
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)
[<c0244eb9>] kobject_register+0x49/0x70
[<c01344b0>] mod_sysfs_setup+0x50/0xc0
[<c0135756>] load_module+0x8a6/0xb90
[<c0135ae2>] sys_init_module+0x72/0x200
[<c0103201>] 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)
[<c0244eb9>] kobject_register+0x49/0x70
[<c01344b0>] mod_sysfs_setup+0x50/0xc0
[<c0135756>] load_module+0x8a6/0xb90
[<c0135ae2>] sys_init_module+0x72/0x200
[<c0103201>] 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
kobject_register failed for snd (-17)
[<c0244eb9>] kobject_register+0x49/0x70
[<c01344b0>] mod_sysfs_setup+0x50/0xc0
[<c0135756>] load_module+0x8a6/0xb90
[<c0135ae2>] sys_init_module+0x72/0x200
[<c0103201>] 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
|
I uninstalled alsa-utils and alsa-drivers, after that, I removed the kernel modules and reinstalled them. Then I emerged alsa-drivers and alsa-utils
What is udev and devfs ? Under /etc/ I have a directory udev but devfs , I do not have. _________________ Gruss / Greetings Bodo
Global Airways - German Flightsim Community - www.flyglobal.de |
|
| Back to top |
|
 |
GNUtoo Veteran


Joined: 05 May 2005 Posts: 1892
|
Posted: Fri Dec 02, 2005 5:00 pm Post subject: |
|
|
the /dev/ directory is where devices files are stored
udev and devfs are manadging it (creating theses devices file)
devfs is a kernel "module"(i don't know how else you can call kernel part)
udev is a userspace program
udev is beter and devfs is deprecated
mount -t devfs none /dev
try this and try it also in fstab
->then look after /dev/dsp
if it devfs was mounted at startup try the oposite (remove it) |
|
| Back to top |
|
 |
Vortex375 Veteran


Joined: 03 Mar 2005 Posts: 1704 Location: Deutschland
|
Posted: Fri Dec 02, 2005 5:14 pm Post subject: |
|
|
| Quote: | mount -t devfs none /dev
try this and try it also in fstab
->then look after /dev/dsp |
That is not going to work since he can't even load the modules.
My guess would really be that you are running a different kernel as the one the /usr/src/linux symlink is pointing to. Did you check with "uname -a"? |
|
| Back to top |
|
 |
Headrush Veteran


Joined: 05 Nov 2003 Posts: 5580 Location: Bizarro World
|
Posted: Fri Dec 02, 2005 7:40 pm Post subject: |
|
|
GLS064, try this: | Code: | rm -rf /lib/modules/2.6.14.3/alsa-driver
depmod -a
modules-update |
Now reboot and see if the unsolved errors is gone. (The problem is there are duplicate sound modules in the modules folder, one from the kernel ALSA support and one from the alsa-driver package) (unmerging alsa-driver does NOT remove the kernel modules!) _________________ Mac OS X 10.4.8 (Gentoo in Parallels now)
AMD64 Opteron Dual Core 4400+, 2x1GB DDR400, GeforceFX 7900GS Extra Pipelines Unlocked
300GB SATA Maxtor HD , Sony DRU810A DVD Burner, FlyVideo 3000 TV, SB Live!
Last edited by Headrush on Sun Dec 04, 2005 11:19 am; edited 1 time in total |
|
| Back to top |
|
 |
ianwilder Tux's lil' helper


Joined: 30 Apr 2004 Posts: 121 Location: georgia.usa.earth
|
Posted: Sat Dec 03, 2005 12:12 am Post subject: |
|
|
| i found that the snd-*** problem was fixed sometimes and not others. and i am having trouble with the 1.0.10 modules all of a sudden. i finally figured out that if i do a /etc/init.d/alsasound stop and then made sure all modules were unloaded, _then_ did alsaconf, it works. ymmv |
|
| Back to top |
|
 |
xaos5 Apprentice


Joined: 19 Apr 2005 Posts: 255 Location: Michigan
|
Posted: Sat Dec 03, 2005 3:22 am Post subject: |
|
|
| if the problem is solved please put [solved] after the title of the thread. |
|
| Back to top |
|
 |
Tolstoi Guru


Joined: 20 May 2004 Posts: 358 Location: Hamburg, Germany
|
Posted: Sat Dec 03, 2005 3:41 am Post subject: |
|
|
I've got an onboard sound chip. This is what just worked for me:
- recompiled the kernel with alsa as modules
- emerged alsa-driver
- modules-update
- alsaconf
Anyhow this thread helped me, cause I was a bit confused about this issue before  |
|
| Back to top |
|
 |
Vortex375 Veteran


Joined: 03 Mar 2005 Posts: 1704 Location: Deutschland
|
Posted: Sat Dec 03, 2005 7:23 am Post subject: |
|
|
| Quote: | This is what just worked for me:
- recompiled the kernel with alsa as modules
- emerged alsa-driver |
This cannot work since you can either have alsa-driver installed or you can have alsa enabled in the kernel. Both don't work at once.
I guess you meant you disabled alsa in the kernel? |
|
| Back to top |
|
 |
Tolstoi Guru


Joined: 20 May 2004 Posts: 358 Location: Hamburg, Germany
|
Posted: Sat Dec 03, 2005 12:47 pm Post subject: |
|
|
Yes, that's what I wanted to say  |
|
| Back to top |
|
 |
GLS064 Tux's lil' helper

Joined: 21 Nov 2005 Posts: 147 Location: Braunschweig,Germany
|
Posted: Sat Dec 03, 2005 4:56 pm Post subject: |
|
|
| new_to_non_X86 wrote: | the /dev/ directory is where devices files are stored
udev and devfs are manadging it (creating theses devices file)
devfs is a kernel "module"(i don't know how else you can call kernel part)
udev is a userspace program
udev is beter and devfs is deprecated
mount -t devfs none /dev
try this and try it also in fstab
->then look after /dev/dsp
if it devfs was mounted at startup try the oposite (remove it) |
ok, I did now just a mount to see what filesystemes are mounted on my system
| Code: |
/dev/hdb5 on / type reiserfs (rw,noatime)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
udev on /dev type tmpfs (rw,nosuid)
devpts on /dev/pts type devpts (rw)
/dev/hda7 on /Windows/d type vfat (rw)
/dev/hda8 on /Windows/e type vfat (rw)
none on /dev/shm type tmpfs (rw,noexec,nosuid,nodev)
usbfs on /proc/bus/usb type usbfs (rw,devmode=0664,devgid=85)
localhost bodo #
|
devfs seems not to be mounted. If I add it to fstab, I also had it to had to mstab, right ?
| Code: |
src # ls -al
total 126767
drwxr-xr-x 8 root root 496 Dec 2 17:09 .
drwxr-xr-x 18 root root 536 Dec 2 14:15 ..
-rw-r--r-- 1 root root 0 Nov 25 14:50 .keep
lrwxrwxrwx 1 root root 14 Nov 27 09:14 linux -> linux-2.6.14.3
drwxr-xr-x 19 root root 1280 Nov 24 08:37 linux-2.6.12-gentoo-r6
drwxr-xr-x 18 root root 688 Nov 25 16:24 linux-2.6.14-gentoo-r2
-rwxr-xr-x 1 root root 39186327 Dec 2 16:55 linux-2.6.14-rc5
drwxr-xr-x 19 root root 1328 Nov 26 22:31 linux-2.6.14.2
-rwxr--r-- 1 root root 39184746 Nov 24 08:48 linux-2.6.14.2.tar.bz2
drwxr-xr-x 19 root root 1304 Dec 2 21:21 linux-2.6.14.3
-rwxr-xr-x 1 root root 39186327 Nov 27 09:10 linux-2.6.14.3.tar.bz2
drwxr-xr-x 18 root root 624 Dec 2 17:00 linux-2.6.15-rc4
-rwxr-xr-x 1 root root 6024923 Nov 27 09:11 patch-2.6.15-rc2.bz2
drwxr-xr-x 2 root root 88 Dec 2 17:10 patch-2.6.15-rc4
-rw-r--r-- 1 root root 6093858 Dec 2 17:09 patch-2.6.15-rc4.bz2
localhost src #
localhost bodo # uname -r
2.6.14.3
|
I will also try the tip from Headbrush, but not today any more.
Greetings Bodo _________________ Gruss / Greetings Bodo
Global Airways - German Flightsim Community - www.flyglobal.de |
|
| Back to top |
|
 |
Vortex375 Veteran


Joined: 03 Mar 2005 Posts: 1704 Location: Deutschland
|
Posted: Sat Dec 03, 2005 5:30 pm Post subject: |
|
|
Trying to mount devfs is rather pointless because usually if it's not mounted it meanst you are using udev.
You shouldn't add thing manually to the mtab (I think) because these shows filesystems that are currently mounted and should be update automatically.
Headrush's tip seems to make a lot more sense.  |
|
| Back to top |
|
 |
GLS064 Tux's lil' helper

Joined: 21 Nov 2005 Posts: 147 Location: Braunschweig,Germany
|
Posted: Sun Dec 04, 2005 4:51 am Post subject: |
|
|
ok, devfs doesn't exist om my system
| Code: |
/ # mount -t devfs none /dev
mount: unknown filesystem type 'devfs'
|
What do I do now ? _________________ Gruss / Greetings Bodo
Global Airways - German Flightsim Community - www.flyglobal.de |
|
| Back to top |
|
 |
GLS064 Tux's lil' helper

Joined: 21 Nov 2005 Posts: 147 Location: Braunschweig,Germany
|
Posted: Sun Dec 04, 2005 4:57 am Post subject: |
|
|
ah, I found this :
| Code: |
devfs ist veraltet und wurde aus dem stabilen 2.6 Kernelbaum mit dem Release 2.6.13 entfernt. Benutzer von 2.6 Kernelen wird hiermit empfohlen auf udev zu wechseln. Für weitere Informationen zu udev, lesen Sie bitte den Gentoo udev Leitfaden..
Translation : devfs is old and it was removed out of the Kerneltree 2.6 with the Release from 2.6.13. User of 2.6 kernels should switch to udev. For more Information to udev, please read the Gentoo HowTo.
|
udev is already mountet on my system as default _________________ Gruss / Greetings Bodo
Global Airways - German Flightsim Community - www.flyglobal.de |
|
| Back to top |
|
 |
Headrush Veteran


Joined: 05 Nov 2003 Posts: 5580 Location: Bizarro World
|
Posted: Sun Dec 04, 2005 11:22 am Post subject: |
|
|
GLS064, did you try what I said?
And if so, what are the exact errors now? (There is no way the error can be the same if you did what I said) _________________ Mac OS X 10.4.8 (Gentoo in Parallels now)
AMD64 Opteron Dual Core 4400+, 2x1GB DDR400, GeforceFX 7900GS Extra Pipelines Unlocked
300GB SATA Maxtor HD , Sony DRU810A DVD Burner, FlyVideo 3000 TV, SB Live! |
|
| Back to top |
|
 |
GLS064 Tux's lil' helper

Joined: 21 Nov 2005 Posts: 147 Location: Braunschweig,Germany
|
Posted: Sun Dec 04, 2005 12:30 pm Post subject: |
|
|
Ok, I finally got it to run. But don't ask me, please. I think, something was really mixed up. Again, thanks a lot for the help  _________________ Gruss / Greetings Bodo
Global Airways - German Flightsim Community - www.flyglobal.de |
|
| Back to top |
|
 |
|