LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 01-27-2006, 06:30 PM   #1
carlosinfl
Senior Member
 
Registered: May 2004
Location: Orlando, FL
Distribution: Arch
Posts: 2,905

Rep: Reputation: 77
I have No Sound


I just installed Debian Linux AMD64 and also KDE 3.5. Everything worked great. This is my first time installing KDE rather than Gnome but I don't have sound. Is there a way I can configure my sound on this system? I know my sound card is recognized since Gnome on AMD64 had no problem with this same onboard sound via motherboard.

Any suggestions or ways to check are very greatful!
 
Old 01-27-2006, 06:41 PM   #2
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally Posted by Carlwill
I just installed Debian Linux AMD64 and also KDE 3.5. Everything worked great. This is my first time installing KDE rather than Gnome but I don't have sound. Is there a way I can configure my sound on this system? I know my sound card is recognized since Gnome on AMD64 had no problem with this same onboard sound via motherboard.

Any suggestions or ways to check are very greatful!
I see in your sig that you are running a 2.6 kernel so make sure that the alsa-base and alsa-utils are installed then as root alsaconf select your sound card from the list. Once logged into KDE open the Konsole and run the alsamixer to make sure that the Master and PCM volumes are at about 75%. If running 2.4 kernel then you need one more package use uname -r then apt-cache alsa-modules output_of_uname_r and install the package that matches then use procedure in first and second sentences.
 
Old 01-27-2006, 06:56 PM   #3
carlosinfl
Senior Member
 
Registered: May 2004
Location: Orlando, FL
Distribution: Arch
Posts: 2,905

Original Poster
Rep: Reputation: 77
Happy - Thanks that worked!

BTW - Have you been able to install Nvidia drivers on your 64 machine?
 
Old 01-27-2006, 08:00 PM   #4
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally Posted by Carlwill
Happy - Thanks that worked!

BTW - Have you been able to install Nvidia drivers on your 64 machine?
Yes you need these lines in your /etc/apt/sources.list.

Code:
## Nvidia drivers for unstable
#deb http://people.debian.org/~rdonald/nvidia unstable/amd64/
#deb http://people.debian.org/~rdonald/nvidia unstable/all/
deb http://people.debian.org/~rdonald/nvidia unstable nvidia-graphics-drivers
deb http://people.debian.org/~rdonald/nvidia unstable nvidia-xconfig
deb http://people.debian.org/~rdonald/nvidia unstable nvidia-settings
deb http://people.debian.org/~rdonald/nvidia unstable nvidia-kernel-common
Then apt-get update and apt-get install kernel-kbuild-2.6-3 kernel-headers-2.6.8-11-amd64-generic nvidia-kernel-source=1.0.8178-1 nvidia-kernel-common=1.0.8178-1 module-assistant now as root in the /usr/src directory m-a -i prepare and then to build the module m-a a-i -i -t -f nvidia-kernel if it complains here about the compiler not matching the running kernel use either export CC=/usr/bin/gcc-3.4 or export CC=/usr/bin/gcc-4.0 and repeat the previous command. Now for the extra needed apt-get install nvidia-glx=1.0.8178-1 nvidia-glx-dev=1.0.8178-1. then you can either use dpkg-reconfigure xserver-xorg and choose the nvidia for the module to use or edit the /etc/X11/xorg.conf file in the sections below. For the kernel-headers-2.6.8-11-amd64-generic this was the install kernels headers you are still running this I believe at the moment so use uname -r to check if not then apt-cache search kernel-headers output_of_uname_r_command and install the ones that match your install kernel you will probably have to change the lines in your sources.list back to testing if you have already not done so and then apt-get update to refresh the cache to get them.

Code:
Section "Module"
        Load    "bitmap"
        Load    "dbe"
        Load    "ddc"
#       Load    "dri"
        Load    "extmod"
        Load    "freetype"
        Load    "glx"
        Load    "int10"
        Load    "record"
        Load    "type1"
        Load    "vbe"
        Load    "v4l"
        Load    "xtrap"
        Load    "type1"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "SWcursor"                  # [<bool>]
        #Option     "HWcursor"                  # [<bool>]
        #Option     "NoAccel"                   # [<bool>]
        #Option     "ShowCache"                 # [<bool>]
        #Option     "ShadowFB"                  # [<bool>]
        #Option     "UseFBDev"                  # [<bool>]
        #Option     "Rotate"                    # [<str>]
        #Option     "VideoKey"                  # <i>
        #Option     "FlatPanel"                 # [<bool>]
        #Option     "FPDither"                  # [<bool>]
        #Option     "CrtcNumber"                # <i>
        Identifier  "Card0"
        Driver      "nvidia"
        Option      "NoLogo" "on"
        Option      "NvAgp"  "1"
        Option      "RenderAccel" "true"
        Option      "BackingStore" "On"
#       Option      "IgnoreEDID"  "on"
        Option      "IgnoreDisplayDevices"  "TV"
#       Option      "NoBandWidthTest" "1"
#       Option      "AllowGLXWithComposite" "true"
        Screen       0
        VendorName  "PNY"
        BoardName   "Verto 5900SE NV35 [GeForce FX 5900SE]"
        BusID       "PCI:1:0:0"
EndSection
The important parts are in the Module section to make sure the Load "dri" and if present Load "GLCore" have the # in front of the lines so they will not be used and you put in the Load "glx". For the Device section you should change the Driver "nv" to nvidia. You would have to restart the X server by logging out if running X and use the Left CTRL + Left ALT and backspace keys at the same time to kill and respawn the X server if from the command line then /etc/init.d/kdm restart.

Edit: Almost forgot Debian has changed the name of the kernel images to linux-image-... linux-headers ... so you may have to be searching for those if needed.

Last edited by HappyTux; 01-27-2006 at 08:06 PM.
 
  


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 On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
No sound coming from my sound blaster audigy 2 ZS platinum sound card msab Linux - Hardware 9 12-05-2010 05:10 AM
FC2: Sound Card (SiS SI7012) Detect But Donot Play Sound rajanaeem Linux - Hardware 0 10-22-2004 03:41 PM
How to make a sound on Realtec ALC-650 card sound on a Shuttle ST62K? Laurent Linux - Hardware 0 05-30-2004 11:57 AM
No Sound : request_module: failed /sbin/modprobe -- sound-slot-0. error = 256 Mebuh Linux - General 0 01-26-2004 07:51 AM
Can I load both oss (kernel sound drivers) and alsa in 2 sound cared system? cmisip Linux - General 0 04-12-2003 01:27 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 03: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