• Welcome to Overclockers Forums! Join us to reply in threads, receive reduced ads, and to customize your site experience!

Multimedia for linux!

Overclockers is supported by our readers. When you click a link to make a purchase, we may earn a commission. Learn More.

eli

Member
Joined
Dec 9, 2001
What are the best music players for linux? I would like to get MP3's on my machine. Is there a way i can get my onboard audio working? I have an epox 8kha.
I want this OS to do everything! :)


Thanks!
 
The 8KHA+ uses the AC97 Audio drivers I believe, linux can cope with Mp3s - use noatun or xmms.
 
XMMS is what I use. I aims to clone the Winamp gui. You can even use Winamp skins with it.
 
PenguinFreak said:
The 8KHA+ uses the AC97 Audio drivers I believe, linux can cope with Mp3s - use noatun or xmms.

Yeah, how do i get the sound drivers installed? Are they on the mobo cd?


Or do i have to d/l them from a site?
 
eli said:


Yeah, how do i get the sound drivers installed? Are they on the mobo cd?


Or do i have to d/l them from a site?

Bring up a console and type lsmod

Cut and paste everyline with snd in it, and post it here.
 
PenguinFreak said:


Bring up a console and type lsmod

Cut and paste everyline with snd in it, and post it here.

I brough up Konsole and typed in lsmod and all i got was bash: command not found error. I'm such a greenhorn.
 
Module Size Used by
ppp_deflate 41760 0 (autoclean)
bsd_comp 4352 1 (autoclean)
ppp_async 6768 1 (autoclean)
ppp_generic 19392 3 (autoclean) [ppp_deflate bsd_comp ppp_async]
slhc 5504 1 (autoclean) [ppp_generic]
lt_serial 20432 3 (autoclean)
lt_modem 314720 0 (autoclean) [lt_serial]
nls_iso8859-1 2832 1 (autoclean)
sr_mod 15456 0 (autoclean)
soundcore 4464 1 (autoclean)
binfmt_misc 6416 1
iscsi 22080 0 (unused)
autofs 11584 0 (autoclean) (unused)
eepro100 17696 0
appletalk 20880 0 (autoclean)
ipx 16544 0 (autoclean)
ipchains 39232 0
ide-scsi 8320 0
scsi_mod 95792 3 [sr_mod iscsi ide-scsi]
ide-cd 27040 1
cdrom 28640 0 [sr_mod ide-cd]
mousedev 4448 1
hid 19120 0 (unused)
input 3840 0 [mousedev hid]
usb-uhci 21600 0 (unused)
usbcore 51808 1 [hid usb-uhci]
ext3 64624 2
jbd 41056 2 [ext3]


this is what i get
 
Yea, I don't see any sound stuff in there.

Anyone remember what module is for AC '97 Codec sound?
 
XWRed1 said:
Yea, I don't see any sound stuff in there.

Anyone remember what module is for AC '97 Codec sound?

It was mentioned in an earlier thread. I'll have a look for it.
 
snd-seq-oss 28944 0 (unused)
snd-seq-midi-event 3216 0 [snd-seq-oss]
snd-seq 41856 0 [snd-seq-oss snd-seq-midi-event]
snd-seq-device 3984 0 [snd-seq-oss snd-seq]
snd-pcm-oss 18624 0
snd-pcm-plugin 15792 0 [snd-pcm-oss]
snd-mixer-oss 4800 0 [snd-pcm-oss]
snd-card-via8233 5952 0
snd-pcm 31616 0 [snd-pcm-oss snd-pcm-plugin snd-card-via8233]
snd-timer 8528 0 [snd-seq snd-pcm]
snd-ac97-codec 25056 0 [snd-card-via8233]
snd-mixer 24544 0 [snd-mixer-oss snd-ac97-codec]
snd 35248 1 [snd-seq-oss snd-seq-midi-event snd-seq snd-se
q-device snd-pcm-oss snd-pcm-plugin snd-mixer-oss snd-card-via8233 snd-pcm snd-t
imer snd-ac97-codec snd-mixer]
soundcore 4208 4 [snd]

These are IdeaMagnate's modules, he has the epox 8kha+ mobo as well.

you will need to insmod them in a certain order.
 
Those are from Alsa, though, which this guy may not necessarily have.

Actually, the following should be all he needs to modprobe:
snd-ac97-codec
snd-mixer-oss

Modprobe should more or less sort out most of the module dependencies from that.
 
Back