0

Actually I wanted to correct the well known Ubuntu brightness issue as addressed in this YouTubeVideo

In essence, the guy says to change the Nvidia driver from open source to any other proprietary one.

But I did a mistake of cancelling the change before it could successfully do it, thus not properly assigning the new one and not even going back to the old one.

It looked somewhat like this:

Software & Updates

And now I am stuck in the console mode. I have tried installing Nvidia-304 from there, but no luck.

I believe I need to reset some internal settings, but have no idea How To?.

Relevant log and configuration files:

  • I think it is 50-synaptics.conf only as it says in the log, that error in line 10 of 50-synaptics.conf. Moreover the file before it does not even have a line 10. – Akshay Madan Feb 26 '15 at 14:39

2 Answers2

0

You can try to boot ubuntu in recovery mode. (For how to boot in recovery-mode see this: How can I start in safe mode?).

When booting in recovery mode you will get a low resolution X, so you can log into your desktop and do changes.

From there you can open System Settings and the Additional Drivers and try again. After this you can boot again like normal to try your new configuration.

stalet
  • 589
  • 4
  • 13
0

Your /usr/share/X11/xorg.conf.d/20-intel.conf is malformed: it misses EndSection at its end. That's why Xorg complains that

[    23.187] Parse error on line 10 of section Device in file /usr/share/X11/xorg.conf.d/50-synaptics.conf
    "Section" is not a valid keyword in this section.

With EndSection missing, Xorg thinks, it's still inside the Section from 20-intel.conf when encountering the first non-empty, non-comment line 10 of the subsequent 50-synaptics.conf, and it doesn't like to start a new Section inside another Section.

Here's how it should look:

Section "Device"
    Identifier "card0"
    Driver "intel"
    Option "Backlight" "intel_backlight"
    BusID "PCI:0:2:0"
EndSection

You can safely delete /usr/share/X11/xorg.conf.d/20-intel.conf~.

David Foerster
  • 36,264
  • 56
  • 94
  • 147