chartoo wrote:CTL+ALT+KPPLUS
I don't have a KPPlus key or is that the Linux name for the Windows key?
That's Void Main speak for the "+" on the Keypad (the one on the top row of numbers will not work, have to use the one on the keypad on the right of your keyboard).
Try renaming your /etc/X11/XF86Config to something else and let xorg start up with it's defaults
Thanks Void it worked like a charm 'cept the wheel on my wh eel mouse isn't working.
Without actually searching for the answer my guess is that you will actually have to create an xorg.conf file and set your mouse protocol there just as you would have done on the old XF86Config (IMPS/2, or similar).
You can have Xorg create a config for your system by doing this as root:
# Xorg -configure
If you are already running X you'll have to tell X to start on another display number:
# Xorg :1 -configure
That will create a /root/xorg.conf.new file. You can copy that file to /etc/X11/xorg.conf and edit it. If you want to test it before copying:
# X -xf86config /root/xorg.conf.new
or if you are already running X
# X :1 -xf86config /root/xorg.conf.new
It should just start with a black screen and a mouse cursor. You can get back to you other X session by pressing "CTRL+ALT+F7" where you can ^C the other X session (or kill it will you are in it with a "CTRL+ALT+BACKSPACE").
My guess is that if in the xorg.conf file you find the line under the Mouse0 section that says this:
- Code: Select all
Option "Protocol" "auto"
and change it to:
- Code: Select all
Option "Protocol" "IMPS/2"
restart X and it should work.
EDIT: Also, another way of generating a config is by running system-config-display (which is under your "System Settings" menu as "Display") and set your resolution. This should generate a /etc/X11/xorg.conf file.