|
|
最近遇到的问题,键盘的“斜杠”打不出来,“问号”却可以打出来。我用的是ibus输入法,以前用scim的时候没发现。
谁遇到类似问题吗?
[PHP]
cat /etc/X11/xorg.conf
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
Option "AIGLX" "true"
EndSection
Section "Files"
# FontPath "/usr/local/share/fonts"
FontPath "/usr/share/fonts/truetype"
EndSection
Section "Module"
Load "freetype"
# Load "xtt"
Load "extmod"
Load "glx"
Load "dri"
Load "drm"
Load "dbe"
Load "record"
Load "xtrap"
# Load "type1"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option " rotocol" "ImPS/2"
Option "Emulate3Buttons"
Option "Device" "/dev/input/mice"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd" #evdev
Option "XkbModel" "logiik"
Option "XkbRules" "xorg"
Option "XkbLayout" "us"
EndSection
Section "ServerFlags"
Option "AutoAddDevices" "false"
EndSection
Section "Monitor"
Identifier "Monitor0"
### Comment all HorizSync and VertRefresh values to use DDC:
HorizSync 31.5 - 82.0
VertRefresh 50.0 - 90.0
EndSection
Section "Device"
Identifier "Card0"
Driver "radeon"
BusID " CI:1:0:0"
Option "DRI" "true"
Option "RenderAccel" "true"
Option "XAANoOffscreenPixmaps" "true"
Option "AGPMode" "4"
Option "EnablePageFlip" "true"
Option "GARTSize" "64"
#Option "AccelMethod" "EXA" # or XXA
#Option "AGPFastWrite" "1"
#Option "BackingStore" "true"
#enable (partial) PowerPlay features
Option "DynamicClocks" "on"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1280x1024" "1024x768"
EndSubSection
EndSection
Section "DRI"
Group "video"
Mode 0660
EndSection
Section "Extensions"
Option "Composite" "Enable"
EndSection
[/PHP] |
|