I started this post as the other title is not really related to nouveau and was getting long this is the last entry of the older post...
PS If log files are needed PLEASE tell me exactly where to find them as asking me for info like (what was the output of **** ) only frustrates me as I'm only an end user not a programmer.
Not knowing how to get the glx/grep part to be successful, Frustrated and Impatient I did a fresh install and booted to recovery mode with Netroot & followed the guide but without sudo as I was already root http://ossnotebook.blogspot.com/2009...r-work-in.html which is...
# install the driver
# this will remove your proprietary nvidia driver, in case you have that installed.
# gedit /etc/X11/xorg.conf
Run this to make sure it's working
With an answer...
direct rendering: Yes
Following it to the letter except using nano to write the Xorg.conf file, remembering to hit return after EndSection. Thanks Snowhog
Then I used the Suggested...
and got...
The program glxinfo is currently not installed. You can install it by typing
So I did that and tried again but got same...
Error: unable to open display
I then had to rename...
and
just to boot to default driver
Any suggestions on what's wrong?
PS If log files are needed PLEASE tell me exactly where to find them as asking me for info like (what was the output of **** ) only frustrates me as I'm only an end user not a programmer.
Not knowing how to get the glx/grep part to be successful, Frustrated and Impatient I did a fresh install and booted to recovery mode with Netroot & followed the guide but without sudo as I was already root http://ossnotebook.blogspot.com/2009...r-work-in.html which is...
Code:
sudo apt-get update
Code:
sudo apt-get upgrade
Code:
sudo apt-get dist-upgrade
# this will remove your proprietary nvidia driver, in case you have that installed.
Code:
sudo apt-get install xserver-xorg-video-nouveau
Section "Screen"
Identifier "Default Screen"
SubSection "Display"
Virtual 3840 3840
EndSubSection
EndSection
Section "Device"
Identifier "Default Device"
Driver "nouveau"
Option "NoLogo" "True"
EndSection
Identifier "Default Screen"
SubSection "Display"
Virtual 3840 3840
EndSubSection
EndSection
Section "Device"
Identifier "Default Device"
Driver "nouveau"
Option "NoLogo" "True"
EndSection
Code:
glxinfo | grep direct
direct rendering: Yes
Following it to the letter except using nano to write the Xorg.conf file, remembering to hit return after EndSection. Thanks Snowhog
Then I used the Suggested...
Code:
glxinfo | grep direct
The program glxinfo is currently not installed. You can install it by typing
Code:
apt-get install mesa-utils
Error: unable to open display
I then had to rename...
Code:
mv /ect/X11/xorg.conf /etc/X11/xorg.confA
Code:
startx
Any suggestions on what's wrong?
Comment