Re: Xorg - how can I configure this thing??

2009-07-10 Thread Jakub Lach

Hello.

6.   Make sure the following 2 lines are in /etc/rc.conf: 
 hald_enable=YES 
 dbus_enable=YES

That's not necessary if you (re)configure X server without HAL. Just
pointing, since
lots of people recommends anybody with input problems to add those lines. 

It's still possible to run X server without HAL, even the newest one.

-best regards, 
Jakub Lach

-- 
View this message in context: 
http://www.nabble.com/Xorg---how-can-I-configure-this-thing---tp24417470p24428745.html
Sent from the freebsd-questions mailing list archive at Nabble.com.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Xorg - how can I configure this thing??

2009-07-09 Thread Glen Barber
On Thu, Jul 9, 2009 at 4:23 PM, herbsherbert.raim...@gmx.net wrote:
 Hi Daemons,
 I am stuck with a fresh installation, FreeBSD 7.2 with the usual X Server 
 environment..

 Usually I invoke xorgconfig to set up the hardware I have, like mouse
 driver, monitor frequency, resolution and so on.

 The new X server 1.6.0 seems to have some sort of autoconfig. I compiled
 the /usr/ports/X11-wm/fluxbox - it installs the X Server with Fluxbox.

 Then I type startx.

 The twm windowmanager shows up, but accepts no input. Mousepointer
 stuck, no key input.

 I cannot even create a /etx/X11/xorg.conf file by invoking ./xorgconfig ..

 What am I doing wrong? Can anybody give me a hint in the right
 direction?


Run 'X -configure' then add this to the end:

Section ServerFlags
option  AutoAddDevicesoff
option  AllowEmptyInput   off
EndSection

You can test with 'X -config /root/xorg.conf.new'

If it works, copy /root/xorg.conf.new to /etc/X11/xorg.conf

HTH

-- 
Glen Barber
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Xorg - how can I configure this thing??

2009-07-09 Thread Daniel Underwood
See 5.4.2 Configuring X11

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-config.html
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Xorg - how can I configure this thing??

2009-07-09 Thread Andrew Gould
On Thu, Jul 9, 2009 at 3:23 PM, herbsherbert.raim...@gmx.net wrote:
 Hi Daemons,
 I am stuck with a fresh installation, FreeBSD 7.2 with the usual X Server 
 environment..

 Usually I invoke xorgconfig to set up the hardware I have, like mouse
 driver, monitor frequency, resolution and so on.

 The new X server 1.6.0 seems to have some sort of autoconfig. I compiled
 the /usr/ports/X11-wm/fluxbox - it installs the X Server with Fluxbox.

 Then I type startx.

 The twm windowmanager shows up, but accepts no input. Mousepointer
 stuck, no key input.

 I cannot even create a /etx/X11/xorg.conf file by invoking ./xorgconfig ..

 What am I doing wrong? Can anybody give me a hint in the right
 direction?

 Thanks!
 herb langhans


Herb,

1.  Get to a terminal (ctl-alt-F2 should get you there).

2.  Log in as root.

3.  Execute:'Xorg -config'
 This command should probe your hardware and create a sample
xorg.conf file (xorg.conf.new, I think) in root's home directory.

4.  Using your favorite console-based editor, edit the new xorg.conf.new file.
 In the ServerLayout section, add the following:
Option AllowEmptyInputfalse

5.  Save the xorg.conf.new file to  /etc/X11/xorg.conf

6.   Make sure the following 2 lines are in /etc/rc.conf:
 hald_enable=YES
 dbus_enable=YES

7.  Reboot the computer and test X.

Best of luck,

Andrew
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Xorg - how can I configure this thing??

2009-07-09 Thread Warren Block

On Thu, 9 Jul 2009, Glen Barber wrote:


Run 'X -configure' then add this to the end:

Section ServerFlags
option  AutoAddDevices  off
option  AllowEmptyInput off
EndSection


The first option is unnecessary in most cases.

The second is only needed if you want to configure mouse and keyboard in 
the xorg.conf file instead of automatically with hal.  And either or 
both lines can go in the ServerLayout section, an additional ServerFlags 
section is not needed.


-Warren Block * Rapid City, South Dakota USA
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Xorg - how can I configure this thing??

2009-07-09 Thread Warren Block

On Thu, 9 Jul 2009, Andrew Gould wrote:


1.  Get to a terminal (ctl-alt-F2 should get you there).

2.  Log in as root.

3.  Execute:'Xorg -config'
This command should probe your hardware and create a sample
xorg.conf file (xorg.conf.new, I think) in root's home directory.

4.  Using your favorite console-based editor, edit the new xorg.conf.new file.
In the ServerLayout section, add the following:
   Option AllowEmptyInputfalse

5.  Save the xorg.conf.new file to  /etc/X11/xorg.conf

6.   Make sure the following 2 lines are in /etc/rc.conf:
hald_enable=YES
dbus_enable=YES


Step 4 says ignore HAL for input configuration, use mouse and keyboard 
config from xorg.conf and step 6 sets up HAL.  It's best to pick one or 
the other.  The Handbook uses the hal version, making step 4 is 
unnecessary.


-Warren Block * Rapid City, South Dakota USA
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Xorg - how can I configure this thing??

2009-07-09 Thread Glen Barber
Hi, Warren

On Thu, Jul 9, 2009 at 5:37 PM, Warren Blockwbl...@wonkity.com wrote:
 On Thu, 9 Jul 2009, Glen Barber wrote:

 Run 'X -configure' then add this to the end:

 Section ServerFlags
        option  AutoAddDevices        off
        option  AllowEmptyInput       off
 EndSection

 The first option is unnecessary in most cases.


Most cases, yes.  As far as I know, it won't _hurt_ if it is included,
but not necessary.

 The second is only needed if you want to configure mouse and keyboard in the
 xorg.conf file instead of automatically with hal.  And either or both lines
 can go in the ServerLayout section, an additional ServerFlags section is not
 needed.


True.  I file this in the works for me category.

-- 
Glen Barber
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Xorg - how can I configure this thing??

2009-07-09 Thread herbs
Glen, Daniel, Andrew, Warren,
thanks a ton - will try your tricks carefully and try not to wreck the
installation.

Is quite a science, the 'easy automatic configuration'.

I let you know tomorrow how it worked out
Cheers
herb langhans

-- 
*** Herbert Langhans, Warschau
*** Sprachtraining Langhans
*** http://www.langhans.com.pl
*** herbert at langhans.com.pl
*** NIP 526-229-61-51
*** Regon  014911759
*** Tel. 603 341 441
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org