LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 02-17-2005, 05:48 AM   #1
dimension8300
LQ Newbie
 
Registered: Feb 2005
Location: UK
Distribution: SUSE 9.2
Posts: 13

Rep: Reputation: 0
Question Strange things a foot with AC97 sound card


Hi I am running SUSE 9.2 with a Intel AC97 sound card.

When I boot, there is no sound.
If I go to control panel / Yast Modules / Hardware / Sound and reset the values under the options button. Sound starts working.

BUT, when I log out or reboot, it disapears!

I am slowly learning about Linux and am loving the fact that there is so much to play with.

Any help would be greatfully recieved.

Cheers!
 
Old 02-17-2005, 05:55 AM   #2
__J
Senior Member
 
Registered: Dec 2004
Distribution: Slackware, ROCK
Posts: 1,973

Rep: Reputation: 46
are you using kde or gnome? their mixers ( I think both have this IIRC, but I use aumix for this) have options to restore the mixer values at login.
 
Old 02-17-2005, 05:59 AM   #3
dimension8300
LQ Newbie
 
Registered: Feb 2005
Location: UK
Distribution: SUSE 9.2
Posts: 13

Original Poster
Rep: Reputation: 0
Hi I am using KDE at the mo!

Were would I find the option to restore mixers at login?
 
Old 02-17-2005, 06:24 AM   #4
__J
Senior Member
 
Registered: Dec 2004
Distribution: Slackware, ROCK
Posts: 1,973

Rep: Reputation: 46
check in kmix( the kde sound mixer, should be under the multimedia section in your menu's) or kcontrol ( the kde control center, should have a button on your panel or under somewhere like "system" or something in your menu's) under the sound section.

Last edited by __J; 02-17-2005 at 06:27 AM.
 
Old 02-17-2005, 01:04 PM   #5
dimension8300
LQ Newbie
 
Registered: Feb 2005
Location: UK
Distribution: SUSE 9.2
Posts: 13

Original Poster
Rep: Reputation: 0
Hi Have just tried that! The Kmix has selected restore volumes at log in but my sound still disappears after i log out.

What about changing the driver?
 
Old 02-17-2005, 02:03 PM   #6
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
I don't know if this will help, but perhaps you could run alsaconf as root. It may perform the neccessary changes.

Also, the alsasound service loads in the default using alsactl. The settings come from /etc/asound.state.
What is the output of: sed -n /control.[12] /,/}/p' /etc/asound.state
 
Old 02-17-2005, 05:05 PM   #7
dimension8300
LQ Newbie
 
Registered: Feb 2005
Location: UK
Distribution: SUSE 9.2
Posts: 13

Original Poster
Rep: Reputation: 0
Hi jschiwal

I ran alsaconf, which ran well. It detected two cards (I only have one!)
intel8x0 Intel Corp. 82801EB/ER AC'97
legacy Probe legacy ISA (Non-PnP) Chip
I told it to configure the intel8x0 card.

It enabled sound but when I restarted the sound was disabled again.

I am new to Linux so could you explain what I do regarding your next statement.
(What is the output of: sed -n /control.[12] /,/}/p' /etc/asound.state)

Could grub have anything to do with it, as I have had a number of issues with it. My loader is as follows: -
(hd1,7)/boot/vmlinuz root=/dev/hdb8 vga=0x31a selinix=0 splash=silent resume=/dev/hdb7 desktop elevator=as showopts
(hd1,7)/boot/initrd
 
Old 02-17-2005, 09:59 PM   #8
PTrenholme
Senior Member
 
Registered: Dec 2004
Location: Olympia, WA, USA
Distribution: Fedora, (K)Ubuntu
Posts: 4,187

Rep: Reputation: 354Reputation: 354Reputation: 354Reputation: 354
I don't think this has anything to do with your problem, but I had to disable ALISA to get reliable sound working under KDE. (ALISA grabs exclusice control of the sound card.)

Have you tried the Gnome desktop? It seemed much better with sound applications. (On the other hand, I do use KDE most of the time since I find the desktop easier to use and configure.)
 
Old 02-18-2005, 10:10 AM   #9
dimension8300
LQ Newbie
 
Registered: Feb 2005
Location: UK
Distribution: SUSE 9.2
Posts: 13

Original Poster
Rep: Reputation: 0
Ok Sorted

I was told to removed all this from grub on another forum: -
resume=/dev/hdb7 desktop elevator=as showopts

Hardware then found my web cam which was missing.(which has a built in mic).
So I unplugged the web cam and restarted, and well there you go, all is fine again.
Must have been a conflict between my web cam and my sound card.

Thanks for all you help and sugguestions.
If anyone can see if there is another reason why it worked, that would be cool. I'm just glad things seam to be moving!
 
Old 02-22-2005, 04:23 AM   #10
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
Glad you got things working.

Quote:
I am new to Linux so could you explain what I do regarding your next statement.
(What is the output of: sed -n /control.[12] /,/}/p' /etc/asound.state)
Alsa reloads the sound settings when you boot up. It's possible that they are set too low to hear.
The sed command, entered in the console, prints out a section of the file that contains the initial settings.

Here is the same command on my desktop:
Quote:
matrix:/etc/rc.d # sed -n '/control.[12] /,/}/p' /etc/asound.state
control.1 {
comment.access 'read write'
comment.type BOOLEAN
iface MIXER
name 'Master Playback Switch'
value.0 true
value.1 true
}
control.2 {
comment.access 'read write'
comment.type INTEGER
comment.range '0 - 31'
iface MIXER
name 'Master Playback Volume'
value.0 24
value.1 24
}
I used the sed command to display just the part of the file that I wanted to look at. This file is very long with around 26 sections. Only the first two were of interest.
 
  


Reply



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
regarding sound card(AC97) zameer_india Linux - Software 29 01-03-2005 06:58 AM
ac97 Audio-card no sound on debian,need help. coder_ma Linux - Newbie 1 04-13-2004 01:01 AM
VIA VT8223 AC97 sound card problems Jay_highlands Linux - Hardware 10 11-27-2003 09:37 PM
AC97 sound card does not work in Mandrake 9.1 Silent_Gunner Linux - Hardware 2 10-05-2003 06:41 PM
AC97 Sound Card and the Chipmunks ddpicard Linux - General 6 03-05-2002 04:23 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 04:34 PM.

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