That option is not an option that you get with an utility, in Linux most of the configurations are stored in text files, changing those files you change the system behaviour.
To edit your Graphical Interface configuration you have to edit the file:
/etc/X11/xorg.confSince that file stores system wide configurations, you have to be root to edit it.
So you should:
1) login as root in text mode.
2) edit that text file, since you are without a GUI, you have to edit it using a console,
nano is the one that does this job, it is a text editor that runs entirely in console mode. You have to run it like this:
- Code: Select all
nano /etc/X11/xorg.conf
it will open the /etc/X11/xorg.conf.
3) you can now scroll in the file, navigate it using your keyboard arrows and edit the text as you would do in a common graphical editor.
Find the line that says:
- Code: Select all
Option "UseEvents" "True"
and change it like this:
- Code: Select all
Option "UseEvents" "False"
4) you have now to save your changes, as you would do with an ordinary text editor, you can do it using some keyboard shortcuts, all the shortcuts are listed in the lower part of your console when you run
nano, to save the changes press:
Ctrl+O
it will ask you where to save that file, you can press enter to overwrite the old
xorg.conf file.
To exit from
nano press:
Ctrl+X
5) if your card works with the latest Nvidia drivers, I would not downgrade them, so, if that is the case, install the latest nvidia drivers using:
- Code: Select all
equo install nvidia-drivers
and ensure that they are selected to be used, running:
- Code: Select all
eselect opengl set nvidia
6) now you can reboot hoping for a GUI
