You are not logged in.
Pages: 1
Hello to all.
I have some problems installing xorg in this netbook. I can install the base system but when I do X -config /root/xorg.config.new it seems that can launch X system but not, it only show me a sad blank screen.
I tried to copy a xorg.conf from eeebuntu, that can launch it, but don't work neither.
Maybe a problem with firmware? I don't know if it's a problem with Xorg or with installation in general.
Anyone that can install Arch in this netbook could help me?
La blasfemia es el único lenguaje entendido por todos los programadores.
Offline
If you use HAL you shouldn't even need to use an xorg.conf. Have you read the wiki pages relating to installation of X.org and the pages relating to Arch on the Eee's?
Offline
Hal and dbus installed and I get two errors, first of all I cannot launch the X, when I try X -config /etc/X11/xorg.conf I get the following message:
X: error while loading shared libraries: /usr/lib/libhal.so.1: file too short.
I try reinstalling hal and it works, but when I launch X -config I cannot use the keyboard, the cursor don't appear...
Power off, power on and go to point numer one again. Reinstall hal and try.
I tried to disable input hotplugging, not appears to work. I revise the xorg.conf for monitor, card... Everything appears to be ok. Here's a copy:
Section "Serverlayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/100dpi:unscaled"
FontPath "/usr/share/fonts/75dpi:unscaled"
FontPath "/usr/share/fonts/TTF"
FontPath "/usr/share/fonts/Type1"
Section "Module"
Load "record"
Load "dri2"
Load "dri"
Load "extmod"
Load "dbe"
Load "glx"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Asus"
ModelName "eeePC 10008HA"
EndSection
Section "Device"
Identifier "Card0"
Driver "intel"
VendorName "Intel Corporation"
BoardName "Mobile 945GME Express Integrated Graphics Controller"
BusID "PCI:0:2:0
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 1
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 15
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
The 10-keymap.fdi has:
<merge key="input.xkb.layout" type="string">es</merge>
<merge key="input.xkb.variant" type="string></merge>
I don't know how can I do. I follow the installation process of the beginners guide, install the base system, wlan up, update the system with pacman, add user, install sudo, sound up, when I try to install X I can't.
I follow this steps to install X:
Install the intel driver, xf86-input-evdev, mesa, xorg, xf86-input-keyboard and xf86-input-mouse, xf86-input-synaptics, install hal and dbus. Try to launch X and get errors.
Anyone can help me?
Thanks
La blasfemia es el único lenguaje entendido por todos los programadores.
Offline
You went with the xorg.conf, so define the keyboard there as well:
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbLayout" "es"
EndSection
Offline
Pages: 1