as the title says i need some help installing the drivers for my mx440 graphics card and soundblaster live 5.1 usb card on mandrake 10.2. So far i have downloaded the linux version of the nvidia driver but i cant get it to install even in root. ( i am a first time linux user so detailed help would be appreciated) Thanks in advance, Chris

Dani AI

Generated

A compact, practical checklist for (focused on getting a Creative USB sound device working on Mandrake 10.2). The usual issues are: the kernel not exposing the USB audio device to ALSA, mixer channels muted, or applications still talking to legacy OSS (/dev/dsp) instead of ALSA. The steps below are diagnostic and corrective; running the commands will show exactly what the system sees and how to fix it.

Useful diagnostic commands (run as root or prefix with sudo):

dmesg | tail -n 50
lsusb
cat /proc/asound/cards
aplay -l
ls -l /dev/snd /dev/dsp

If the USB sound device is not listed by ALSA, try loading the kernel driver and re-checking:

modprobe snd-usb-audio
cat /proc/asound/cards
aplay -l

If ALSA lists the card but music players still fail because /dev/dsp is missing or the player uses OSS, enable ALSA's OSS compatibility or use an ALSA output for the player:

modprobe snd_pcm_oss
# example wrappers / forcing ALSA output:
aoss xmms file.mp3
mplayer -ao alsa file.mp3
alsamixer -c 0    # check/unmute PCM, Master, Front

Permissions and packaging notes: make sure the user is in the audio group so apps can open device nodes:

groups
usermod -a -G audio yourusername   # run as root

If modules fail to load, install the ALSA packages that match the running kernel (use Mandrake Control Center or urpmi to add ALSA driver/utilities). Common pitfalls: muted channels in alsamixer, the player configured for OSS instead of ALSA, or a missing snd-usb-audio module. Useful outputs for debugging are the exact output of the diagnostic commands above and the last 50 lines of dmesg; those reveal whether the kernel recognizes the device and which module claims it.

i just wanted to update this. i just finished getting my nvidia driver installed correctly and i think its working right as games are lots better. however, i still am at a loss on getting my soundblaster live 5.1 to run music. it plays the system sounds and such but just not music i get the device /dev/dsp/does not exist error. i am a newbe but i want to learn this and i am likeing it so far :) can anybody point me in the right direction? is there a creative driver? or is it 3rd party? or do i have to change something myself? i dont know much so any guidenence will be appreciated thanks! :)

*bump* somebody has to know about this! seriously i am not using linux untill i know how to make it all work! im beginning to realize how good windows actually is

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.