I see...mmm...do you have a keyboard shortcut to open up a terminal/konsole ? if so, use it and open up one. In there use vim to open your /etc/X11/xorg.conf file.
If you don't know if you have one or simply don't have one set up, then press Alt + F1 to access the Applications menu.. (are you using gnome or KDE?, I believe this will work for either of them....but don't know about others like XFCE). Browse through the menu and open up a terminal/konsole. Now use vim to display your xorg.conf file. Edit it and add the following:
- Code: Select all
Section "Module"
.........................
Load "synaptics"
Load "mouse"
EndSection
Section "ServerLayout"
..........................................
InputDevice "Generic Keyboard"
InputDevice "Synaptics Touchpad"
InputDevice "USB Mouse"
EndSection
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
..................................
EndSection
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "SHMConfig" "true"
Option "HorizEdgeScroll" "0"
Option "Emulate3Buttons" "true"
EndSection
Section "InputDevice"
Identifier "USB Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "Auto"
EndSection
The dots (...........) mean that there might be other stuff in these sections that you shouldn't touch!
If you don't know how to use vim, then you can find tutorials online, however, you'll only need to know just a few things to make this work.
Open xorg.conf with vim
- Code: Select all
su
vim /etc/X11/xorg.conf
Press "insert" key to edit the file. Once your changes have been made press "escape" key and type ":w" (to save changes) and then ":q" (to quit)
After this you can either restart X (Ctrl + Alt + Backspace) or simply restart your computer (I usually prefer the latter)
I hope this works for ya