You are not logged in.
Pages: 1
I'm currently struggling to configure ALSA and noticed that I do not have the intel8x0 module (and several others that I think are relevant) installed. Well, I searched the package database (core/extra/community) but couldn't find anything.
So, is there any package that contains the intel8x0 kernel module?
Thanks in advance
Offline
alsa? your sound card?
probably this may help you, just "insmod snd_intel8x0"
I think it's with the kernel in the official repositories.
Offline
Not really. My problem is not that I don't know how to insert the module once I got it but that I don't know where to get it (which package contains it) in the first place.
Offline
The kernel (kernel26 package) contains it.
Offline
Weird, I of course have the kernel26 package installed. Any ideas?
Here is the output of lsmod (as you can see there is no intel8x0 module):
Module Size Used by
nls_cp437 7424 0
usb_storage 92736 0
isofs 33828 0
zlib_inflate 20096 1 isofs
udf 82724 0
crc_itu_t 3840 1 udf
ipv6 260260 10
oss_usb 111116 1
oss_ich 21104 3
osscore 536596 2 oss_usb,oss_ich
radeon 144544 3
drm 74280 4 radeon
fuse 52892 8
vfat 12800 0
fat 49312 1 vfat
joydev 11584 0
pcmcia 35116 0
psmouse 38288 0
i2c_i801 10768 0
serio_raw 7172 0
iTCO_wdt 12196 0
i2c_core 22420 1 i2c_i801
tifm_7xx1 7552 0
ohci1394 30256 0
iTCO_vendor_support 4996 1 iTCO_wdt
tifm_core 8476 1 tifm_7xx1
yenta_socket 25228 1
rsrc_nonstatic 12672 1 yenta_socket
pcmcia_core 33812 3 pcmcia,yenta_socket,rsrc_nonstatic
ieee1394 80452 1 ohci1394
irda 112568 0
crc_ccitt 3840 1 irda
ehci_hcd 35852 0
uhci_hcd 24080 0
sg 28852 0
usbcore 134256 5 usb_storage,oss_usb,ehci_hcd,uhci_hcd
video 18064 0
output 4608 1 video
container 5248 0
intel_agp 27068 0
agpgart 30804 2 drm,intel_agp
led_class 5508 0
wmi 7592 0
thermal 17052 0
processor 34732 2 thermal
evdev 11296 1
fan 6148 0
button 7824 0
battery 12036 0
ac 6020 0
ac97_bus 3584 0
ipw2200 141640 0
ieee80211 29512 1 ipw2200
ieee80211_crypt 6532 1 ieee80211
tg3 121604 0
libphy 18048 1 tg3
rtc_cmos 11424 0
rtc_core 17564 1 rtc_cmos
rtc_lib 4480 1 rtc_core
ext3 126344 2
jbd 46100 1 ext3
mbcache 8708 1 ext3
sr_mod 16708 0
cdrom 35360 1 sr_mod
sd_mod 27160 7
ata_piix 18308 6
ata_generic 6788 0
pata_acpi 6016 0
libata 153120 3 ata_piix,ata_generic,pata_acpi
scsi_mod 96460 5 usb_storage,sg,sr_mod,sd_mod,libata
dock 9616 1 libata
Offline
Here is the output of lsmod (as you can see there is no intel8x0 module):
Sure it is so, lsmod shows only the loaded modules.
Try with:
# modprobe -l | grep intel8x0
If it pops out, just follow the ALSA wiki page and try to setup correctly your sound card.
[Edit]
Try to find out also with pacman if it's correctly installed and where with
# pacman -Ql kernel26 | grep intel
HTH
Last edited by syntaxerrormmm (2008-12-12 10:41:04)
syntaxerrormmm - Homepage
Offline
Baufo wrote:Here is the output of lsmod (as you can see there is no intel8x0 module):
Sure it is so, lsmod shows only the loaded modules.
Heh, learning more Linux every day
Anyways:
modprobe -l | grep intel8x0
found nothing while
pacman -Ql kernel26 | grep intel8x0
returned
kernel26 /lib/modules/2.6.27-ARCH/kernel/sound/pci/snd-intel8x0.ko
kernel26 /lib/modules/2.6.27-ARCH/kernel/sound/pci/snd-intel8x0m.ko
kernel26 /usr/src/linux-2.6.27-ARCH/include/config/snd/intel8x0.h
kernel26 /usr/src/linux-2.6.27-ARCH/include/config/snd/intel8x0m.h
I checked an these files do indeed exist.
Offline
modprobe -l | grep intel8x0
found nothing
Try again after launch this command
# depmod -ae
this reconstruct the database and the dependencies for the kernel modules.
kernel26 /lib/modules/2.6.27-ARCH/kernel/sound/pci/snd-intel8x0.ko
So you have the module. After the depmod, you should be able to load that with
# modprobe snd-intel8x0
HTH
syntaxerrormmm - Homepage
Offline
I think you have OSS4 installed .
OSS4 installs its own modules and disables Alsa modules .
English is not my native language .
Offline
Pages: 1