You are not logged in.

#1 2008-12-10 12:32:23

Baufo
Member
Registered: 2008-12-01
Posts: 15

intel8x0 module - where do I get it

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 smile

Offline

#2 2008-12-10 12:54:57

huntxu
Member
Registered: 2008-12-07
Posts: 12

Re: intel8x0 module - where do I get it

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

#3 2008-12-10 13:31:40

Baufo
Member
Registered: 2008-12-01
Posts: 15

Re: intel8x0 module - where do I get it

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

#4 2008-12-10 13:38:01

lucke
Member
From: Poland
Registered: 2004-11-30
Posts: 4,018

Re: intel8x0 module - where do I get it

The kernel (kernel26 package) contains it.

Offline

#5 2008-12-12 10:17:50

Baufo
Member
Registered: 2008-12-01
Posts: 15

Re: intel8x0 module - where do I get it

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

#6 2008-12-12 10:38:18

syntaxerrormmm
Member
From: Italy
Registered: 2008-10-22
Posts: 80
Website

Re: intel8x0 module - where do I get it

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.

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

#7 2008-12-12 11:59:48

Baufo
Member
Registered: 2008-12-01
Posts: 15

Re: intel8x0 module - where do I get it

syntaxerrormmm wrote:
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 cool

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

#8 2008-12-12 13:18:54

syntaxerrormmm
Member
From: Italy
Registered: 2008-10-22
Posts: 80
Website

Re: intel8x0 module - where do I get it

Baufo wrote:
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.

Baufo wrote:
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

#9 2008-12-12 15:35:07

Nezmer
Member
Registered: 2008-10-24
Posts: 559
Website

Re: intel8x0 module - where do I get it

I think you have OSS4 installed .
OSS4 installs its own modules and disables Alsa modules .


English is not my native language .

Offline

Board footer

Powered by FluxBB