Pardon a PPS, since I don't need it at the moment ...
On Tue, 2011-09-20 at 17:14 +0200, Ralf Mardorf wrote:
PS
On Tue, 2011-09-20 at 17:01 +0200, Ralf Mardorf wrote:
Message:
23
Date: Tue, 20 Sep 2011 06:32:30 -0400
From: Paul Davis <paul(a)linuxaudiosystems.com>
Subject: Re: [LAU] ubuntu vs arch
To: Atte Andr? Jensen <atte(a)email.dk>
Cc: linux-audio-user(a)lists.linuxaudio.org
nouveau driver
doesn't work for my machine too. Nvidia proprietary and xorg nv, even
xorg vesa are ok.
Funny digest from my xorg.conf ...
Driver "nvidia"
#Driver "nv"
#Driver "nouveau"
#Driver "vesa"
Here the proprietary seems to be the best choice.
Sometimes I'm unable to get the proprietary driver running with
kernel-rts, if so, I switch to the "nv" driver. No problems for audio,
just 3D isn't supported.
... I'm not a Linux coder and it might be bad style, anyway, it doe's
the job. If I can't use the proprietary with a kernel-rt, but I need §d
for some usage, I add this script:
#! /bin/sh
# /etc/rcS.d/Switch_xorg_conf
rm /etc/X11/xorg.conf
case $(uname -r) in
*rt*)
cp /etc/X11/xorg.conf.nv /etc/X11/xorg.conf
;;
*)
cp /etc/X11/xorg.conf.nvidia /etc/X11/xorg.conf
;;
esac