initscripts обновился до 2012.06.1-1
Лично у меня проблемы с кирилицей в консоли изчезли.
30-keybord.conf не создавал
просто подредактировал соответствующую секцию в 10-evdev.conf
спасибо за наводку…
помог снос конфигов thunar
Странно, что ещё не пофиксили. Однокликовая навигация напрягает :(
Самое интересное… под root такого глюка не наблюдается
Запущенный HAL явно превращает настройку иксов в пляску с бубном :) Осмелюсь порекомендовать его отключить.
Вот мой вариант xorg.conf
Может поможет

Section "ServerLayout"
	Option		"AllowEmptyInput"	"false"
	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"
EndSection
Section "Module"
	Load  "glx"
	Load  "extmod"
	Load  "dri2"
	Load  "dbe"
	Load  "dri"
EndSection
Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
	Option	"XkbLayout"		"us,ru"
	Option	"XkbOptions"	"grp:ctrl_shift_toggle,grp_led:scroll"
	Option	"XkbVariant"		",winkeys"
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   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection
Section "Device"
	Identifier  "Card0"
	Driver      "nvidia"
	VendorName  "nVidia Corporation"
	BoardName   "G70 [GeForce 7800 GS]"
	BusID       "PCI:1:0: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
EndSection
для начала
pacman -S xf86-input-keyboard xf86-input-mouse

затем сгенерируй xorg.conf и пропиши в самом начале

Option “AllowEmptyInput” “false”

виснуть ничего не будет даже если не запущен HAL
дальше уже изучай /var/log/Xorg.0.log
файервол отключён

[[email protected] ~]# rpcinfo -p 192.168.0.1
   program vers proto   port  service
    100000    4   tcp    111  portmapper
    100000    3   tcp    111  portmapper
    100000    2   tcp    111  portmapper
    100000    4   udp    111  portmapper
    100000    3   udp    111  portmapper
    100000    2   udp    111  portmapper
    100024    1   udp  36743  status
    100024    1   tcp  52825  status
    100021    1   udp  51528  nlockmgr
    100021    3   udp  51528  nlockmgr
    100021    4   udp  51528  nlockmgr
    100021    1   tcp  32882  nlockmgr
    100021    3   tcp  32882  nlockmgr
    100021    4   tcp  32882  nlockmgr
    100003    2   tcp   2049  nfs
    100003    3   tcp   2049  nfs
    100003    4   tcp   2049  nfs
    100003    2   udp   2049  nfs
    100003    3   udp   2049  nfs
    100003    4   udp   2049  nfs
    100005    3   udp  38589  mountd
    100005    3   tcp  46871  mountd

иногда “не зависает” и сразу выдаёт такую ошибку
mount.nfs: Argument list too long
Ради эксперимента сделал 192.168.0.2 сервером и расшарил каталог там…. Всё работает…
Чертовщина какая-то… видимо есть какое-то ограничение по ip
Ситуация самая простейшая. В сети две машины с Arch. На одной есть папка /home которую хочется обозревать на второй

сначала покурил здесь - http://wiki.archlinux.org/index.php/Nfs (русский вариант WiKi кстати очень сильно отличается от ангицкого)
Для начала на обеих машинах
pacman -S nfs-utils rpcbind

——————————————————————-
Первая машина 192.168.0.1

/etc/exports
/home 192.168.0.2(rw,sync)

/etc/conf.d/nfs-common.conf
STATD_OPTS=“–no-notify”

/etc/hosts.allow
nfsd: ALL
rpcbind: ALL
mountd:ALL


/etc/rc.conf
DAEMONS=(…. rpcbind nfs-common nfs-server @netfs)

Вторая машина 192.168.0.2

/etc/hosts.allow
rpcbind: 192.168.0.1/255.255.255.255

/etc/rc.conf
DAEMONS=(…. rpcbind nfs-common @netfs)
——————————————————————-

После перезагрузки на втором компе делаю
#mount 192.168.0.1:/home /mnt/share
В ответ долгое молчание и
mount.nfs: mount system call failed

Кто подскажет, где подкрутить?
Как всё просто оказываеться…. премного благодарен :)