Paulo: > Anyone knows how to do to this sound card work in Linux? > Thanks
I'm using one of those. I'm not sure it will work for you, because ISA cards work differently when you have many of them ... My settings: kernel 2.2.10, I've got opl3, opl3sa2, ad1848, mpu401, sound and soundcore compiled as modules. As you want to set the Pnp options before loading these modules, you can't compile them straight into the kernel. The package isapnptools *must* be installed if you want linux to set the card options, otherwise you'll have to boot windows and *then* loadlin. I'm running slink. The options are ( /etc/modutils ) : alias char-major-14 opl3sa2 pre-install opl3sa2 modprobe "-k" "ad1848" post-install opl3sa2 modprobe "-k" "opl3" options opl3sa2 io=0x370 mss_io=0x530 mpu_io=0x330 irq=5 dma=0 dma2=3 options opl3 io=0x388 run update-modules to make these settings available in /etc/conf.modules. The pnp settings ( /etc/isapnp.conf ): (READPORT 0x0203) (ISOLATE PRESERVE) (IDENTIFY *) (VERBOSITY 2) (CONFLICT (IO FATAL)(IRQ FATAL)(DMA FATAL)(MEM FATAL)) # or WARNING (CONFIGURE YMH0020/-1 (LD 0 (IO 0 (SIZE 16) (BASE 0x0220)) (IO 1 (SIZE 8) (BASE 0x0530)) (IO 2 (SIZE 4) (BASE 0x0388)) (IO 3 (SIZE 2) (BASE 0x0330)) (IO 4 (SIZE 2) (BASE 0x0370)) (INT 0 (IRQ 5 (MODE +E))) (DMA 0 (CHANNEL 0)) (DMA 1 (CHANNEL 3)) (NAME "YMH0020/-1[0]{OPL3-SAX Sound Board}") (ACT Y) )) (CONFIGURE YMH0020/-1 (LD 1 (NAME "YMH0020/-1[1]{OPL3-SAX Sound Board}") )) (CONFIGURE YMH0020/-1 (LD 2 (NAME "YMH0020/-1[2]{OPL3-SAX Sound Board}") )) (CONFIGURE YMH0020/-1 (LD 3 (NAME "YMH0020/-1[3]{OPL3-SAX Sound Board}") )) (WAITFORKEY) Hope this helps ... -- Yannick