No Sound [Sigmatel C-Major Audio] :: Fedora 7


 
Thread Tools Search this Thread
Operating Systems Linux No Sound [Sigmatel C-Major Audio] :: Fedora 7
# 1  
Old 08-16-2007
No Sound [Sigmatel C-Major Audio] :: Fedora 7

I've been fighting for a few days now with trying to get my soundcard to recognize. I am currently using a Latitude D630 with Sigmatel C-Major Audio using the Intel ICH8 Family.

My problem appears to be that the computer cannot detect a sound card but it was only able to install default drivers of the Intel Corporation 82801H (ICH8 Family) sound. I've made numerous attempts to reconfigure the Alsa drivers and installed a couple different Mixers and sound players to see if the software I was using was somehow the issue.

Right now, the Sigmatel drivers aren't loaded and none of the players I have can find a driver other than the Null driver. my lspci gave nothing but relation to the Intel Corporation 82801H (ICH8 Family) PCI Express, HD Audio Controller, and USB UHCI & EHCI.

I'm sure I am forgetting to mention something but if anyone knows or knows where I can find how to fix this, I'd be very grateful.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Slackware

Problems with audio recording in Audacity 2.0.5. Slackware64 14.1; Intel HD Audio.

I'm trying to record audio using Audacity 2.0.5 installed from SlackBuilds. My system is 64-bit Slackware 14.1 and a sound card is Intel HD Audio. I didn't change my sound system to OSS. (Default sound system in Slackware 14.1 is ALSA, isn't it?) First, I set Internal Microphone slider in KMix... (2 Replies)
Discussion started by: qzxcvbnm
2 Replies

2. Slackware

X terminal: Redirecting remote sound to my local audio device

Hello everybody, I'm testing some aspects of X Terminal implementation and it's going great. I can use remote applications on my local slow workstation at remote's processor speed by redirecting the remote DISPLAY variable to "my_local_ip:0.0"; but i'm having troubles to get remote audio and... (2 Replies)
Discussion started by: semash!
2 Replies

3. Red Hat

fedora grub help, moving to tri boot (XP, ubuntu, fedora soemething)

I will shortly be adding a fedora flavor to my devel box. I currently have XP (installed first on an ssd), ubuntu 10.04 (installed second on the first partition of a platter drive), and I want to add either Cent or SL on the second partition of the platter drive. I will probably also want to... (0 Replies)
Discussion started by: LMHmedchem
0 Replies

4. Red Hat

Firefox no audio on fedora while streaming video

My apology if i'm not on the right forum to post. Hope anybody out there could help me out with this problem. i'm running firefox 3.5 on fedora, then streaming video from websites like youtube produces no audio. i have flash-plugin from adobe installed on the system here is the what i have... (1 Reply)
Discussion started by: etcpasswd
1 Replies

5. AIX

major no

hi what is meant by major no in vg what is meant by concurrent vg i cant understand these two things (3 Replies)
Discussion started by: senmak
3 Replies

6. Red Hat

Wireless and Sound Problems with HP Pavilion dv7 and Fedora Core 10

I have just bought a new HP Pavilion dv7 notebook (17", AMD Turion) and installed Fedora Core 10. I would like to add that i installed a completely eyecandy-less base system, only then installed a naked x-org Xserver and mwm (Motif Window Manager) on top of it. There is neither KDE nor GNOME nor... (2 Replies)
Discussion started by: bakunin
2 Replies

7. Linux

Dual Boot Win XP And Fedora with Fedora Installed First

Hi everyone, I hope this question goes here. Anyways, I have a unique situation where my friend's comp has Fedora installed and wants to add Win XP as a dual boot without formatting the drive. Is it possible to create a partition on the current hard drive and then install win xp? I couldn't find... (4 Replies)
Discussion started by: eltinator
4 Replies

8. OS X (Apple)

SigmaTel High Definition Audio 9200

Would anyone here know how modify the appleHDA.kext for use with a Sigmatel HD Audio STAC9200? Help would be much appreciated. Thank you (0 Replies)
Discussion started by: Heather
0 Replies

9. UNIX for Dummies Questions & Answers

sound card and audio song

Hello, How can i install the sound card on solaris 9.00 and also, how can i play MP3 and audio songs on solaris.... pls provide me the complete steps.... thnks (4 Replies)
Discussion started by: taurian1234
4 Replies
Login or Register to Ask a Question
Audio::File(3pm)					User Contributed Perl Documentation					  Audio::File(3pm)

NAME
Audio::File - Audio file abstraction library SYNOPSIS
use Audio::File; my $file = Audio::File->new( "foo.bar" ); print "The ". $file->type() ."-file ". $file->name ." is ". int $file->audio_properties->length() ." seconds long. "; print "It's interpreted by ". $file->tag->artist() ." and called ". $file->tag->title() ". "; DESCRIPTION
Audio::File abstracts a single audio file, independant of its format. Using this module you can access a files meta-info like title, album, etc. as well as the files audio-properties like its length and bitrate. Currently only the formats flac, ogg vorbis and mp3 are supported, but support for other formats may be easily added. METHODS
new $file = Audio::File->new( "foobar.flac" ); Constructor. It takes the filename of the your audio file as its only argument and returns an instance of Audio::File::${Type} if the corresponding file type is supported. The file type will be determined using the file extension. Currently flac, ogg and mp3 are supported but new formats may be added easily by creating a Audio::File::${Type} that inherits from Audio::File::Type, which is the base class for all file type classes. The methods and behaviour of the returned are documented in Audio::File::Type. TODO
o Add possibility to change file and its tags. o better (easier) interface? o user shouldn't be forced to use Audio::File if he only want's the files tag or audio properties. o Add possibility to access raw audio data (Audio::File::Data) That could be done via Audio::Data or equivalent. SEE ALSO
Audio::File::Type, Audio::File::Tag, Audio::File::AudioProperties AUTHOR
Florian Ragwitz <flora@cpan.org> COPYRIGHT AND LICENSE
Copyright (C) 2004 Florian Ragwitz This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. perl v5.10.0 2009-08-09 Audio::File(3pm)