Re: [blfs-support] Fwd: Startx error server found

2013-08-01 Thread Pierre M.R.
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


Re: [blfs-support] Fwd: Startx error server found

2013-08-01 Thread Armin K.
On 08/01/2013 09:50 AM, Pierre M.R. wrote:
 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

This is something you DON'T want. Never, ever mix framebuffer drivers
with KMS ones.

 -Files systems - Pseudo filesystems
 PROC_FS=y
 

-- 
http://linuxfromscratch.org/mailman/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


Re: [blfs-support] Fwd: Startx error server found

2013-08-01 Thread Pierre M.R.
Armin K. wrote:
  Framebuffer Support: FB_NVIDIA=y
 This is something you DON'T want. Never, ever mix framebuffer drivers
 with KMS ones.


If kms is available for nvidia you are right.However fb is required (FB=y).

Pierre
-- 
http://linuxfromscratch.org/mailman/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


Re: [blfs-support] Fwd: Startx error server found

2013-07-31 Thread Matt Burgess
On Wed, 2013-07-31 at 16:36 -0400, 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 

Does your kernel have module support configured (CONFIG_MODULES=y).
Does /proc get mounted correctly at boot?

Matt.


-- 
http://linuxfromscratch.org/mailman/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page