You are not logged in.
wow. thanks for the fast replies... now i'm having trouble with the nvidia screen just freezing. it's right before kde actually starts loading... i will post my xorg log again ... (with just the EE lines)
loading.... please wait....
Offline
well, it was a problem with evdev. I changed to just 'mouse' as the driver for now, but here is the errors:
(EE) ioctl EVIOCGBIT failed: Inappropriate ioctl for device
(EE) PreInit failed for input device "MX700"
(WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi".
(WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi".
(WW) xf86OpenConsole: Could not save ownership of VT
(WW) xf86OpenConsole: chown /dev/tty0 failed: No such file or directory
thanks for the help so far! )
loading.... please wait....
Offline
Np, btw why do you need evdev anyway? for scrolling with the mouse? I dont use evdev and scrolling works just fine.
The ultimate Archlinux release name: "I am your father"
Offline
no, scrolling works fine. it's for the back and forward buttons on my MX700. or any 'extra' buttons for that matter. at least that's what i've used before to get it work. is there some new thing now to get those buttons to work?
loading.... please wait....
Offline
not really, just add some lines in xorg and it should work fine. I dont think you need the evdev driver in xorg 7.0. But I am not sure.
The ultimate Archlinux release name: "I am your father"
Offline
well i hope i don't need it any more. that would be great! if anyone knows how to get this to work w/o evdev, i'm all ears! )
loading.... please wait....
Offline
evdev is really easy, go back a bit on this thread and youll find help on setting up evdev. See this..
http://www.linux-gamers.net/modules/wfs … ticleid=46
you HAVE to set up a custom udev node for your mouse to get evdev to work.
Offline
Just in case some people don't know much about grep ...
When you post your xorg.conf, it's best to post it without the comment lines (the ones that start with a # symbol), since this makes finding things easier.
grep -v "^#" /etc/X11/xorg.conf > my_xorg.conf
Additionally, when posting the Xorg.0.log, you only need to include (EE) lines, as these indicate errors.
grep "^(EE)" /var/log/Xorg.0.log > my_xorg.log
^ means "start of line" in this case
Offline
good call vacant
.oO Komodo Dave Oo.
Offline
evdev is really easy, go back a bit on this thread and youll find help on setting up evdev. See this..
http://www.linux-gamers.net/modules/wfs … ticleid=46
you HAVE to set up a custom udev node for your mouse to get evdev to work.
It's not needed, you can use /dev/input/event1 instead, if you're sure your mouse will have that device node assigned each and every time.
Offline
It's not needed, you can use /dev/input/event1 instead, if you're sure your mouse will have that device node assigned each and every time.
JGC, I tried quite a few times to get things working without creating the node, but always ended up with the frozen nvidia screen. IMHO, I think its simpler to create the node so that even if you forget which USB port your mouse was plugged into(like during a hardware upgrade), you don't have to worry about X crashing/editing driver to "mouse"
This is how I set up my MS Intellimouse Explorer :
this is what i get with
#cat /proc/bus/input/devices
I: Bus=0003 Vendor=045e Product=008c Version=0057
N: Name="Microsoft Microsoft Wireless Optical Mouse® 1.0A"
P: Phys=usb-0000:06:08.1-1/input0
S: Sysfs=/class/input/input0
H: Handlers=mouse0 event0
B: EV=7
B: KEY=1f0000 0 0 0 0 0 0 0 0
B: REL=1c3
# Microsoft appearing twice is not a typo. This is important when you set up the rule. See below.
This is my custom udev rule, saved as 10-local.rules in /etc/udev/rules.d
KERNEL=="event*", SYSFS{manufacturer}=="Microsoft", SYSFS{product}=="Microsoft Wireless Optical Mouse® 1.0A", NAME=="input/ms1000", MODE=="0644"
I just used ms1000 cause I couldn't think of anything better. Just copy-paste whatever you get in /proc/bus/input/devices into the SYSFS{manufacturer} and SYSFS{product} part.
Offline
I enableed testing and current, and did pacman -S xorg-server to install. Install went fine, but X craps out when running Xorg -configure
I get a message saying Caught signal 11, and it exits without configuring.
NP, I though running xorgconfig would give me a conf file. Ran it fine, but when I run startx I get a message saying that it cannot find kbd, mouse, and nv drivers??! I was sure that this was an all inclusive install.
Anyone have any suggestions?
Offline
You have to install them separately:
pacman -S xf86-input-keyboard xf86-input-mouse xf86-video-nv
You should probably also install the VESA driver (xf86-video-vesa).
Offline
Never mind, I'm a goose
Offline