Sound & Monitor problem

Hello there,
I’m a new openSuse user from Germany, close to setting fire to his mainboard ^^

I installed openSuse some time ago but I really only started to use / work with it in the last couple days.

My first problem is, there is no sound. No matter what I do. I went through a lot of tutorials and checked many threads in this forum, but nothing made a beep.

I checked the repositorys and drivers and everything looks fine (at least according to the threads&tutorials i found)

The other problem is, I have dual monitors. They work when I use Windows, but the second one has no life once I get into openSuse.

I would be very thankful for any help I get with this.

Cheers,
a_whistler

  • a whistler,

two things:
Please start one thread per problem, i.e. one for the sound problem (better in the multimedia forum) and one for the monitor problems.
Second: We need WAY mor einformation on your hardware.

Uwe

What openSUSE version ? 11.0 ? 11.1 ? 11.2 ? It makes a difference. Please be certain to open your mixer (kmix in kde, alsa mixer in gnome) and unmute and move up the volume in master, PCM, and speaker (if there is such a setting). Note in kmix you can add additional channels to get more mixer controls.

Then take a look here: SDB:AudioTroubleshooting - openSUSE

Don’t spend too much time on this. If you can’t get it working right away, post and we can help you further.

Hello,

in that case, I will just leave this one open for the monitor problem.

I’m using:
OpenSuse 11.1
KDE 4.1 (hopefully, there was something shifty as well…, it says KDE 3.5 at some point…)

My monitors are a Samsung (Samsung P2450H 24 Zoll HD LCD analog/digital schwarz: Amazon.de: Elektronik) and the second one is this model: Belinea 2225 S1W Test und Preisvergleich

And I’ve got a nvidia GeForce 8600

What more is needed? As I said, I only just started using openSuse…

I think the command xrandr -q with both monitors plugged in, will give you information that you need to know to configure both monitors. I do not know for certain if that command will work with the open source nvidia graphic driver and you may need to use the proprietary graphic driver instead.

I think if you install the proprietary nVidia graphic driver (guidance here: NVIDIA - openSUSE ) and then type: xrandr -q it may be VERY EASY (however I note 4.1 of KDE is buggy, … with 4.3.2 of KDE it is VERY EASY).

If you can not figure out the guide above, post here and someone can walk you thru what you need to do.

After installing the proprietary NVidia drivers, I’d use the NVidia XServer settings app to adjust the monitors. It gets installed with the driver, IIRC.

Uwe

Hello there,

this is what xrandr -q answers:

janik@linux-5jxv:~> xrandr -q
Screen 0: minimum 320 x 175, current 1920 x 1080, maximum 1920 x 1080
default connected 1920x1080+0+0 0mm x 0mm
1920x1080 50.0*
800x600 51.0 77.0 78.0 79.0 80.0 81.0 82.0 83.0 84.0 85.0
640x480 52.0 92.0 93.0 94.0 95.0 96.0 97.0
1680x1050 53.0
1440x900 54.0
1400x1050 55.0 56.0
1280x1024 57.0 58.0 59.0
1280x960 60.0 61.0
1280x800 62.0
1152x864 63.0
1024x768 64.0 65.0 66.0 67.0 68.0 69.0
960x720 70.0 71.0
928x696 72.0 73.0
896x672 74.0 75.0
832x624 76.0
720x400 86.0
700x525 87.0 88.0
640x512 89.0 90.0 91.0
640x400 98.0
640x350 99.0
576x432 100.0
512x384 101.0 102.0 103.0 104.0 105.0
416x312 106.0
400x300 107.0 108.0 109.0 110.0 111.0
360x200 112.0
320x240 113.0 114.0 115.0 116.0
320x200 117.0
320x175 118.0

Both screens are connected now, but I only connected the second one after I already entered my OS. Is there a problem with recognition?

And to be honest, you could have shown me a map of the Zurich-Underground and I would’ve known more about what I need to do ^^ (No offense, as I said, newbie to Linux :smiley: )

I’ll do the installation of the driver you recommended and post what xrandr says afterwards.

Thanks so far!

//edit: I already installed that driver, sorry, I answered before I took a closer look at the link.

Sorry for the dual post,

I kept playing with the system and I found the nvidia x server settings.

I also found out how to set the seperate x screen thing, but I CAN’T save the changes to the xorg.conf… When I click the “Save to X Configuration File” button, the dialog box tells me this:

Unable to remove old X config backup file ‘/etc/X11/xorg.conf.backup’.

Suggestions? Completely wrong way to go!?

I would say there is a problem with recognition.

Did you have your second monitor plugged in when you typed that command ?

I vague recall now reading a bug report on this …

Take a look at post #12 on this thread: nvidia driver 190.42 problem - openSUSE Forums

Hey,

I guess you mean this:

Extract the EDID file from within windows. I used the program softMCCS which can be found here. Open the program and go to file -> Save EDID as. The filename you choose doesn’t matter, but make sure use the binary (bin) format. Put this on a memory stick or use some other method to copy it to your linux filesystem.

Boot into linux and put the EDID file in your /etx/X11 folder (it could actually go anywhere, but I found this to be convenient).

Code:

sudo mv /path/to/your/edid.bin /etc/X11/.

Backup your current xorg.conf file (if you have one).

Code:

sudo mv xorg.conf xorg.conf_backup

Create a new minimal xorg.conf file. Alternately, you can choose just to add to your existing one.

Code:

sudo touch /etc/X11/xorg.conf

Edit xorg.conf and create a simple device section containing the following:

Code:

Section “Device”
Identifier “Device0”
Driver “nvidia”
VendorName “NVIDIA Corporation”
Option “ConnectedMonitor” “DFP-0”
Option “CustomEDID” “DFP-0:/etc/X11/youredid.bin”
EndSection

Replace “youredid.bin” with whatever you named your EDID file. The two Option lines are what does the trick. The first tells the driver you have a display connected on the internal DFP-0 port. The second tells it not to probe for an EDID, but rather to use the one you are providing.

Restart X and you should see the NVIDIA logo flashing right at you.


My problem is, no more windows… ^^ How am I supposed to get this EDID File!? Is it the same with any computer!?
(Sorry if I misunderstand some things, this stuff here is really testing my english ^^)

Okay I think I made a little mistake…

sudo mv /path/to/your/edid.bin /etc/X11/. would’ve been correct, but I misspelled it x11 (small x) Does that mean I overwrote my x11 file with the edid.bin? There was no error thrown and the edid.bin is gone…

Would that be… Worrysome!?

(this no editing thing is…)

You must have moved it somewhere. Just go find it and move it to the correct location! :slight_smile:

Okay… I followed the instruction, now my second screen isn’t even detected anymore…

I’ll repeat the whole thing tomorrow. Thanks so far and good night (its getting late over here ^^)

Any more? Where was it detected the 1st time? " xrandr -q " did not show it.

  • a whistler wrote, On 11/18/2009 08:46 PM:
    > Unable to remove old X config backup file ‘/etc/X11/xorg.conf.backup’.

No right. Launch it as the superuser, i.e., in a console type “kdesu nvidia-settings” or “gnomesu nvidia-settings”

HTH
Uwe

Hello,

I followed the instructions again and I did everything they recommended…

Now it doesn’t even show that there is a second screen in the Nvidia Settings anymore (after I installed the driver you recommended there was at least a second screen, which however, I could not use in anything but TwinView).

And there’s a message that my sounddevise isn’t recognised anymore (but I still have sound…)

Any suggestions where to go from here!?

I did the xrandr -q again, no changes…

  • a whistler wrote, On 11/19/2009 09:16 PM:
    > I followed the instructions again and I did everything they
    > recommended…
    >
    > Now it doesn’t even show that there is a second screen in the Nvidia
    > Settings anymore (after I installed the driver you recommended there was
    > at least a second screen, which however, I could not use in anything but
    > TwinView).

Start from scratch, I’d say. Backup and delete any /etc/X11/xorg.conf (if there is any) and reinstall the NVidia driver. Fastest approach, IMHO.

Uwe

Okay…

But thats where I came from…

  • a whistler wrote, On 11/22/2009 02:46 PM:
    > But thats where I came from…

Your decision :slight_smile:

Uwe