LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Closed Thread
  Search this Thread
Old 05-24-2005, 04:37 AM   #1
LloydM
LQ Newbie
 
Registered: May 2005
Posts: 29

Rep: Reputation: 15


Last edited by LloydM; 05-27-2005 at 07:10 PM.
 
Old 05-24-2005, 07:13 AM   #2
masand
LQ Guru
 
Registered: May 2003
Location: INDIA
Distribution: Ubuntu, Solaris,CentOS
Posts: 5,522

Rep: Reputation: 69
i do not think u need alsa support the way u did

there is alsa suport integrated in the kernel itself

so why don't u remove those packages
 
Old 05-24-2005, 04:34 PM   #3
LloydM
LQ Newbie
 
Registered: May 2005
Posts: 29

Original Poster
Rep: Reputation: 15

Last edited by LloydM; 05-27-2005 at 07:10 PM.
 
Old 05-24-2005, 06:49 PM   #4
Electro
LQ Guru
 
Registered: Jan 2002
Posts: 6,042

Rep: Reputation: Disabled
After you installed the new ALSA drivers, you have to restart alsa or reboot the computer. As su - or root type service alsa restart. The script service will run the alsa script to unload the alsa modules and load them up again. Hopefully, the Fedora community did not throw out the System V init scripts or you have to unload the sound modules by hand.

The alsa documentation for the module does show example code to include in /etc/modprobe.conf. Go to http://www.alsa-project.org/alsa-doc...odule=intel8x0 and look for "Setting up modprobe and kmod support".

Try using aumix if alsamixer gives you nothing.
 
Old 05-25-2005, 12:09 AM   #5
LloydM
LQ Newbie
 
Registered: May 2005
Posts: 29

Original Poster
Rep: Reputation: 15

Last edited by LloydM; 05-27-2005 at 07:10 PM.
 
Old 05-25-2005, 12:59 AM   #6
Electro
LQ Guru
 
Registered: Jan 2002
Posts: 6,042

Rep: Reputation: Disabled
Code:
WARNING: Could not open '/lib/modules/2.6.11-1.27_FC3/kernel/sound/acore/snd-page-alloc.ko': No such file or directory
WARNING: Could not open '/lib/modules/2.6.11-1.27_FC3/kernel/sound/acore/snd.ko': No such file or directory
WARNING: Could not open '/lib/modules/2.6.11-1.27_FC3/kernel/sound/acore/snd-timer.ko': No such file or directory
WARNING: Could not open '/lib/modules/2.6.11-1.27_FC3/kernel/sound/acore/snd-pcm.ko': No such file or directory
WARNING: Could not open '/lib/modules/2.6.11-1.27_FC3/kernel/sound/pci/ac97/snd-ac97-codec.ko': No such file or directory
FATAL: Could not open '/lib/modules/2.6.11-1.27_FC3/kernel/sound/pci/snd-intel8x0.ko': No such file or directory
This means either the module nvsound is handling the device or it is already loaded.

If you want to use the driver from nVidia only use:
Code:
alias eth0 nvnet
alias usb-controller ehci-hcd
alias usb-controller1 ohci-hcd
alias ieee1394-controller ohci1394

# Loads nvsound (OSS only)
alias sound-slot-0 nvsound

# Sets nvsound mixer settings
install nvsound /sbin/modprobe --ignore-install nvsound ; sleep 1; /usr/bin/nvmix-reg -f /etc/nvmixrc -L >/dev/null 2>&1 || :
remove nvsound { /usr/bin/nvmix-reg -f /etc/nvmixrc -S >/dev/null 2>&1 || : ; }; /sbin/modprobe -r --ignore-remove nvsound
If you want to use driver from alsa only use:
Code:
alias eth0 nvnet
alias usb-controller ehci-hcd
alias usb-controller1 ohci-hcd
alias ieee1394-controller ohci1394

# ALSA portion
alias char-major-116 snd
alias snd-card-0 snd-intel8x0

# OSS/Free portion
alias char-major-14 soundcore
alias sound-slot-0 snd-card-0

# card 1
alias sound-service-0-0 snd-mixer-oss
alias sound-service-0-1 snd-seq-oss
alias sound-service-0-3 snd-pcm-oss
alias sound-service-0-8 snd-seq-oss
alias sound-service-0-12 snd-pcm-oss
For flexbility, use ALSA.

When using nvsound, you have to use nvmixer. Also make sure you have at least version 3.1 libraries for QT because the nvmixer uses it. All the information about nVidia sound driver is at http://download.nvidia.com/XFree86/n...easeNotes.html or in the driver.

You should not place .asoundrc in /root directory because it will not get used by anyone but root. You have to put it in the user's directory.

BTW, I do not have an nForce board, so the information I got was from the ReleaseNotes file.
 
Old 05-26-2005, 01:27 AM   #7
LloydM
LQ Newbie
 
Registered: May 2005
Posts: 29

Original Poster
Rep: Reputation: 15

Last edited by LloydM; 05-27-2005 at 07:11 PM.
 
Old 05-26-2005, 03:44 PM   #8
Electro
LQ Guru
 
Registered: Jan 2002
Posts: 6,042

Rep: Reputation: Disabled
You do not need to run snddevices. RTFM!

Code:
alias /dev/mixer snd-mixer-oss
alias /dev/dsp snd-pcm-oss
alias /dev/midi snd-seq-oss
This is wrong. Sheesh I gave you the lines and you insulted me when using someone else lines which did not work.

Read http://www.alsa-project.org/alsa-doc...odule=intel8x0 it will tell you how compile them. Using a program like yum-install will not work well.

Installing ALSA is very, very easy. I lost count how many times I successfully installed it. If you want to use someone else instructions other than what I gave you, thats fine. Usually they are wrong.

BTW, post your modprobe.conf file.
 
Old 05-27-2005, 01:56 AM   #9
LloydM
LQ Newbie
 
Registered: May 2005
Posts: 29

Original Poster
Rep: Reputation: 15

Last edited by LloydM; 05-27-2005 at 07:11 PM.
 
Old 05-29-2005, 01:55 AM   #10
Electro
LQ Guru
 
Registered: Jan 2002
Posts: 6,042

Rep: Reputation: Disabled
Why u edit and erase what you posted?
 
Old 05-29-2005, 03:39 AM   #11
J.W.
LQ Veteran
 
Registered: Mar 2003
Location: Boise, ID
Distribution: Mint
Posts: 6,642

Rep: Reputation: 87
LloydM -- it's not entirely clear what the background is with this thread, but the purpose of the edit function should be to make minor modifications to an existing post rather than to erase the entire contents of the post. Unfortunately, as it now stands, this thread is pretty much useless given that there's only one half of the discussion remaining. I'm not sure what your reason for doing this was, but I'd ask that this not be repeated. Thanks -- J.W.

Last edited by J.W.; 05-29-2005 at 03:47 AM.
 
Old 06-24-2005, 12:16 PM   #12
HellSpawn
Member
 
Registered: Jan 2005
Location: Venezuela
Distribution: Ubuntu 5.10 64bits
Posts: 81

Rep: Reputation: 15
I think this thread could've been useful for me

I have an nForce3 MB and useing nvsound driver and useing the configuration from the readme, but some programas tell me that they can't use /dev/dsp and it seems that this is not posible with nvsound and the the conf from the readme...

So... what should I do?
Should a get back to intel8x0 an use

Code:
# ALSA portion
alias char-major-116 snd
alias snd-card-0 snd-intel8x0

# OSS/Free portion
alias char-major-14 soundcore
alias sound-slot-0 snd-card-0

# card 1
alias sound-service-0-0 snd-mixer-oss
alias sound-service-0-1 snd-seq-oss
alias sound-service-0-3 snd-pcm-oss
alias sound-service-0-8 snd-seq-oss
alias sound-service-0-12 snd-pcm-oss
And then make a .asoundrc?? Or is there a way around to keep the OSS nvsound driver with multiple applications shareing /dev/dsp??

I think I get stronger sound with nvsound but missing the /dev/dsp stuff...
 
Old 06-24-2005, 12:28 PM   #13
J.W.
LQ Veteran
 
Registered: Mar 2003
Location: Boise, ID
Distribution: Mint
Posts: 6,642

Rep: Reputation: 87
HellSpawn - unfortunately I think it's best to create a new thread, as this one does not have much use anymore due to the removal of the original and followup posts. Due to these factors, I have decided to close this thread.

In terms of addressing your issue, one thing to check would be to verify that the permissions on /dev/dsp and /dev/mixer are appropriate (they should be 666) -- J.W.
 
  


Closed Thread



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Gnome: make volume hotkeys alter PCM chanel instead of MASTER (ALSA) qwijibow Linux - General 2 10-22-2023 01:32 AM
No Master or PCM volume working J_stuart Ubuntu 2 10-17-2005 03:43 PM
i ajdust my alsa mixer and every time i reboot my pc the mixer change what to do ? SlackwareMan Linux - Newbie 1 07-30-2004 01:39 AM
PCM anyone? (alsa) dhbiker Slackware 9 04-21-2004 06:52 AM
No PCM through ALSA wuck Linux - Software 1 11-07-2003 07:23 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 06:55 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration