Daniela Socas wrote:
> I already have installed nouveau driver but it keeps going on radeon'
> and i cant see the modules loaded cus the problem with lsmod.
> I deleted xorg.conf
You may check the kernel config, in particular:
-Device Drivers -> Graphics Support
AGP Support: AGP_NVIDIA=y
DRI Support: DRM=y
Nouveau Cards: DRM_NOUVEAU=y
Framebuffer Support: FB_NVIDIA=y
-Files systems -> Pseudo filesystems
PROC_FS=y
Xorg can set the display without an xorg.conf, however you may still
need to define some input device. As example, that's what I have onmy
netbook:
/etc/X11/xorg.conf.d/20-keyboard.conf
Section "InputClass"
Identifier "evdev keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "XkbModel" "hpmini110"
Option "XkbLayout" "fr"
Option "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection
/etc/X11/xorg.conf.d/50-touchpad.conf
Section "InputClass"
Identifier "Touchpad"
Driver "synaptics"
MatchIsTouchpad "on"
Option "SHMConfig" "on"
Option "ClickTime" "0"
Option "FingerLow" "25"
Option "FingerHigh" "35"
Option "MaxTapTime" "180"
Option "MaxTapMove" "220"
Option "VertEdgeScroll" "on"
Option "VertScrollDelta" "100" #"200"
Option "VertTwoFingerScroll" "off"
Option "HorizEdgeScroll" "off"
Option "MinSpeed" "0.08"
Option "MaxSpeed" "0.60"
Option "EdgeMotionMinSpeed" "100"
Option "EdgeMotionMaxSpeed" "100"
Option "AccelFactor" "0.1" #"0.003"
Option "LeftEdge" "1250"
Option "RightEdge" "5400"#"5500" "5700"
Option "TopEdge" "900"
Option "BottomEdge" "4800"
Option "TapButton" "1"
Option "TapButton2" "3"
Option "TapButton3" "2"
Option "ConstantDeceleration" "2"
EndSection
Section "InputClass"
Identifier "touchpad ignore duplicates"
MatchIsTouchpad "on"
MatchOS "Linux"
MatchDevicePath "/dev/input/mouse*"
Option "Ignore" "on"
EndSection
Pierre
--
http://linuxfromscratch.org/mailman/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page