From a91ee95f60d9907d1f71c789a89b0874a3371e5f Mon Sep 17 00:00:00 2001 From: klanger Date: Wed, 10 Nov 2010 00:20:58 -0800 Subject: [PATCH] --- docs/user/asuseee900/index.mdwn | 102 +++++++++++++++++++++++++++++++- 1 file changed, 101 insertions(+), 1 deletion(-) diff --git a/docs/user/asuseee900/index.mdwn b/docs/user/asuseee900/index.mdwn index e313792a..5232d93c 100644 --- a/docs/user/asuseee900/index.mdwn +++ b/docs/user/asuseee900/index.mdwn @@ -91,7 +91,107 @@ Now you have to update pkgin and upgrade any applications that are already on yo #pkgin update && pkgin full-upgrade - +## Installing X11 + +For X11, you can follow [DragonFly Installing X(http://www.dragonflybsd.org/docs/newhandbook/X/#index3h2)] main instructions and simply copy listed below xorg.conf to /etc/X11/ directory (it has full support for mulitmonitor setup). + + # pkgin in modular-xorg-server + # pkgin in modular-xorg-drivers + # pkgin in modular-xorg-libs + # pkgin in modular-xorg-apps + # pkgin in modular-xorg-fonts + +Ready to use eeepc 900 xorg.conf: + + Section "ServerLayout" + Identifier "X.org Configured" + Screen 0 "Screen0" 0 0 + InputDevice "Mouse0" "CorePointer" + InputDevice "Keyboard0" "CoreKeyboard" + EndSection + + Section "Files" + ModulePath "/usr/pkg/lib/xorg/modules" + FontPath "/usr/pkg/lib/X11/fonts/misc/" + FontPath "/usr/pkg/lib/X11/fonts/TTF/" + FontPath "/usr/pkg/lib/X11/fonts/OTF" + FontPath "/usr/pkg/lib/X11/fonts/Type1/" + FontPath "/usr/pkg/lib/X11/fonts/100dpi/" + FontPath "/usr/pkg/lib/X11/fonts/75dpi/" + EndSection + + Section "Module" + Load "glx" + Load "dbe" + Load "extmod" + Load "dri" + Load "dri2" + EndSection + + Section "InputDevice" + Identifier "Keyboard0" + Driver "kbd" + #Option "XkbLayout" #"insert your keyboard layout" #for non-english users + EndSection + + Section "InputDevice" + Identifier "Mouse0" + Driver "mouse" + Option "Protocol" "auto" + Option "Device" "/dev/sysmouse" + Option "ZAxisMapping" "4 5 6 7" + Option "Protocol" "Auto" + Option "Protocol" "/dev/psm0" + EndSection + + Section "Monitor" + Identifier "Monitor0" + VendorName "Monitor Vendor" + ModelName "Monitor Model" + HorizSync 30-107 + VertRefresh 48-120 + Option "DPMS" + EndSection + + Section "Device" + ### Available Driver options are:- + ### Values: : integer, : float, : "True"/"False", + ### : "String", : " Hz/kHz/MHz" + ### [arg]: arg optional + #Option "NoAccel" # [] + #Option "SWcursor" # [] + #Option "ColorKey" # + #Option "CacheLines" # + #Option "Dac6Bit" # [] + #Option "DRI" # [] + #Option "NoDDC" # [] + #Option "ShowCache" # [] + #Option "XvMCSurfaces" # + #Option "PageFlip" # [] + Identifier "Card0" + Driver "intel" + VendorName "Unknown Vendor" + BoardName "Unknown Board" + BusID "PCI:0:2:0" + EndSection + + Section "Screen" + Identifier "Screen0" + Device "Card0" + Monitor "Monitor0" + SubSection "Display" + Viewport 0 0 + Depth 24 + Virtual 2048 2048 + EndSubSection + EndSection + + Section "ServerFlags" + Option "DontZap" "off" + Option "AllowEmptyInput" "off" + Option "AutoAddDevices" "off" + EndSection + Following experience is from running DragonFly 2.8.2 on netbook (eeepc 900). -- 2.41.0