Help - No Mouse!

After the latest upgrade this morning, I lost my mouse. It shows up in the middle of the screen, but no movement. I've checked in multiple desktops/wms including xfce4 and fluxbox. has Arch changed the device name? I have a standard 3-button MS USB mouse, /dev/input/mice in xorg.conf. hwd shows:
Generic PS/2 Wheel mouse xtype: PS2 device: /dev/psaux
but it's always been /dev/input/mice in xorg.conf. I tried changing it to /dev/psaux with no success, but I notice there's also a /dev/input/mouse0, so I'll try changing it to that to see if that works after I post this.
The only other thing I noticed is that module i2c_isa no longer loads. Not sure if the mouse is related to that or not, or if i2c_isa has been replaced with i2c_core or what. xf86-input-mouse is up to date. USB works with my camera and palm, so I don't think it's USB. Any help appreciated, KB only is getting old fast!
>> well, it's not the hardware. i was afraid my motherboard might have yakked on me, but i booted into slax and both the USB and a PS2 mouse worked fine. I rebuilt the kernel image in case it missed a module, checked the bios - everything's the same there (worked in slax anyway, so that's obviously not it), and tried /dev/input/mouse0.
here's lsmod:
Module Size Used by
radeon 122400 2
ipv6 250468 10
cpufreq_ondemand 7180 1
ohci_hcd 20100 0
snd_via82xx 23192 0
snd_mpu401_uart 7168 1 snd_via82xx
ehci_hcd 32012 0
rtc_cmos 7584 0
rtc_core 14984 1 rtc_cmos
rtc_lib 3072 1 rtc_core
k8temp 4864 0
shpchp 29332 0
pci_hotplug 26784 1 shpchp
uhci_hcd 22416 0
amd64_agp 9860 1
i2c_viapro 8084 0
evdev 8192 4
thermal 12956 0
fan 4100 0
button 6544 0
ac 4356 0
powernow_k8 14100 0
freq_table 4112 2 cpufreq_ondemand,powernow_k8
processor 27992 2 thermal,powernow_k8
visor 17932 0
usbserial 30312 1 visor
drm 71572 3 radeon
nvidia_agp 6940 0
agpgart 27096 3 amd64_agp,drm,nvidia_agp
via_rhine 20744 0
mii 4992 1 via_rhine
snd_seq_oss 29312 0
snd_seq_midi_event 6528 1 snd_seq_oss
snd_seq 46800 4 snd_seq_oss,snd_seq_midi_event
snd_pcm_oss 36896 0
snd_mixer_oss 14464 2 snd_pcm_oss
snd_cs46xx 78408 3
gameport 11784 3 snd_via82xx,snd_cs46xx
snd_rawmidi 19232 2 snd_mpu401_uart,snd_cs46xx
snd_seq_device 6924 3 snd_seq_oss,snd_seq,snd_rawmidi
snd_ac97_codec 95268 2 snd_via82xx,snd_cs46xx
ac97_bus 2432 1 snd_ac97_codec
snd_pcm 68996 4 snd_via82xx,snd_pcm_oss,snd_cs46xx,snd_ac97_codec
snd_timer 19332 2 snd_seq,snd_pcm
snd 44644 16 snd_via82xx,snd_mpu401_uart,snd_seq_oss,snd_seq,snd_pcm_oss,snd_mixer_oss,snd_cs46xx,snd_rawmidi,snd_seq_device,snd_ac97_codec,snd_pcm,snd_timer
soundcore 6496 2 snd
snd_page_alloc 8072 3 snd_via82xx,snd_cs46xx,snd_pcm
w83781d 25644 0
hwmon_vid 3328 1 w83781d
i2c_core 20096 2 i2c_viapro,w83781d
usbcore 123016 6 ohci_hcd,ehci_hcd,uhci_hcd,visor,usbserial
ext3 119560 8
jbd 54440 1 ext3
mbcache 7040 1 ext3
ide_cd 35360 0
cdrom 33952 1 ide_cd
ide_floppy 15872 0
via82cxxx 8324 0 [permanent]
generic 4740 0 [permanent]
ide_disk 14208 11
ide_core 111172 5 ide_cd,ide_floppy,via82cxxx,generic,ide_disk
the ease of arch has spoiled me. I can't think of what else to check ATM. :confused:
Okay - I got my old PS/2 mouse working at least - just forgot to load the psmouse module for that one. Still no USB mouse though - any ideas? thankx.
Last edited by slackhack (2007-10-27 17:43:51)

the configuration sarah31 send you should work without problems:
here is a little autodetect.....:
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/psaux"
#Option "Buttons" "3"
#Option "ZAxisMapping" "4 5"
this will autoprobe your mouse protocol (indeed it's IMPS/2 for all PS/2 mouses afaik, but it's worth a try), i've commented out the buttons lines, maybe they don't like your mouse....
then u should check wheather your /dev/psaux device exists.
also check if in your "ServerLayout" Section in your XF86Config this line exists:
InputDevice "Mouse0" "CorePointer"

Similar Messages

  • Help with Mouse!!!!!!!Please

    /*I need to figure out how to get my Buttons to react with the Mouse. I can draw right now but not because I clicked with the button. This program works. Just some guidence would be helpful. Thanks.
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    public class MultiButton2 extends Applet implements ActionListener,MouseListener,
    MouseMotionListener
    Button redButton = new Button("Red");
    Button blackButton = new Button("Black");
    Button eraserButton = new Button("Eraser");
    Button clearButton = new Button("Clear");
    int last_x =-10;
    int last_y =-10;
    int xpos =-10;
    int ypos =-10;
    Color drawColor1 = (Color.black);
    Color drawColor2 = (Color.red);
    public void init()
    redButton.addActionListener(this);
    add(redButton);
    blackButton.addActionListener(this);
    add(blackButton);
    eraserButton.addActionListener(this);
    add(eraserButton);
    clearButton.addActionListener(this);
    add(clearButton);
    addMouseListener(this);
    addMouseMotionListener(this);
    public void actionPerformed(ActionEvent e)
    public void mouseDragged(MouseEvent evt)
    xpos = evt.getX();
    ypos = evt.getY();
    repaint();
    public void mousePressed(MouseEvent evt)
    last_x = evt.getX();
    last_y = evt.getY();
    public void mouseMoved(MouseEvent evt) { }
    public void mouseClicked(MouseEvent evt) { }
    public void mouseReleased(MouseEvent evt) { }
    public void mouseEntered(MouseEvent evt) { }
    public void mouseExited(MouseEvent evt) { }
    public void update(Graphics g)
    paint(g);
    public void paint(Graphics g)
    Color drawColor = (Color.black);
    g.setColor(drawColor);
    g.drawLine(last_x,last_y,xpos,ypos);
    last_x = xpos;
    last_y = ypos;
    }

    NOAH,
    You helped so much I get things so confused THANK YOU SOOOOOOOOOOO MUCH
    YOU"RE THE BEST!!!!! I like Java over C++. It's just sometimes I can't get the program to do what I want. YOU HAVE A WOINDERFUL DAY!!!!!!

  • Help my mouse doesn't function

    Help!, my mouse doesn't react anymore. It can move but when i click it does nothing. Tried it with an USB-mouse, wireless mouse and the trackpad on the macbook itself

    Re-Start the system. Do a SMC reset. Chjck the USB ports to see if they are still working, insert some other USB device like an external hard drive.
    If in the end the built in Trackpad still does not work it is time to take it to Apple and have it looked and fixed if you can afford it.

  • Changing size area with help of mouse for custom tree control....

    Hi,
    I was creating a module pool program where I get tree control on left handise and HTML viewer on right hand side taking the help of example 'SAPSIMPLE_TREE_CONTROL_DEMO' . But I wanted the left hand side custom control adjustable i.e I move the size area by using mouse. (The way it happens in SAP standard screen) How can I do this ?
    Please hlep.
    Regards,
    Jainam,

    Solved it myself. I have to use split container for this....

  • Help implementing mouse multi record select deselect with shift/ctrl click

    Forms 10.1.2.3 on Solaris Sparc 64 bit
    We are trying to implement mouse multi record select/deselect using shift and ctrl click. I have read that you need the appcore library to do this but because we aren't using Oracle Applications (EBS) we can't have the appcore library.
    Has anyone implemented this function without the appcore library?
    Thanks

    Why not just use a CheckBox to indicate the selected records? The downfall to almost all methods is that you end up looping through the block to see which records are selected. An alternative to this is to use a record group to record which the selected records. I created a nice little wrapper package to work with Record Groups (RG). Take a look at Forms - Record Group Processing (Duplicate Value Checking). As the name suggests, this example demonstrates how to use an RG to perform duplicate checking, but you can easily adapt the process to keep track of selected records. I use RG's for this all the time. By using the RG, it eliminates the need to LOOP through the datablock - which can be very time consuming. Instead, you loop through the RG and only navigate to the specific records you need too in order to process that record. Looping through the RG is much faster than looping through the block - especially if you have a lot of records displayed in your block.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Need help mighty mouse for re-install

    hello,
    I installed the software "steer mouse" on the imac G5 INTEL of
    my father but not being able to configure it I decided to remove it
    system (10.45) and when I am turned over in the preferences system to
    see the adjustments of his mighty mouse I realized that I did not have
    more the photograph of this mouse in order to regulate the various
    buttons but cursors to move unfortunately to say the scrolling speeds
    of the cursor, I do not manage to find the installor of this mouse, I
    would thus like to know how I can make.
    thank you to help me, I am French with a low level of English and thus
    I use Sherlock for the translations.
    imac G5 20 pouces intel   Mac OS X (10.4.5)  

    Welcome, you should be posting in the intel forum, I'll ask to have your post moved there. You need to pair your mouse with your computer. Open Bluetooth Setup Assistant and follow the instructions, you will b given a code for the mouse.

  • Cf# file, lost help viewer, & mouse tracking speed very fast...

    Yes really ! - I do believe it all happened at once.
    No recent system changes/updates/hacks - OS has latest updates - all worked splendidly...until:
    put the mac to sleep, back 1/2 hr later & changed mouse batteries - woke it up & mouse speed is superfast,help viewer wasn't working & files starting with cf# keep appearing momentarily in ~/library/preferences/ . the format seems to be cf#xxxxx - a different one each time
    maybe the file thing is nothing to do with it? - but would be interested in what it is.
    Help viewer fixed by trashing cache & plists - now fine
    Mouse speed can be slowed to a crawl using sys prefs-mouse & keyboard-tracking speed but just one step up from that; it's superfast again. The speed does increase even more if the slider is moved higher.
    So Question - finally! - is this lot related in any way?
    what's the cf#7zgE1 file about?
    what other files might compromise the mouse tracking speed ( I have no mouse-enhancing software )
    Thankyou

    re: cf#xxxx files, you wrote:"I'd love to, but they appear/disappear in an instant - took 7 attempts with grab to get a shot that included one. Nothing in console, no startup/login items at all."The information macjack provided in the link you cited isn't particularly relevant. All that document describes is the Mac OS X facilities for creating and managing preferences files, part of Core Foundation Framework. It doesn't explain the cf#xxxx files, it merely discusses preferences from a programmer's perspective.
    Since the appearance of these, and their mention on the Discussions, is a relatively new phenomenon, I'd be more inclined to suspect they are the side effect of some third-party application you may have installed recently, e.g. some bit of new shareware, a widget, etc. Such an app may be temporarily writing and removing those files, but the fact that they begin with "cf" may have been a developer's choice. The file names don't even correspond to the standard for preferences files. Just because they're in the Preferences folder does not make them preferences.
    I don't see them on my system. You'll have to monitor apps you launch, running widgets, third-party menu extras, etc. to see if the creation of the files begins after some such process is launched.
    If they show up, as you noted, with just Mail and Safari running (assuming you did not open Dashboard, which results in all widgets being launched), then they could be the result of either an Internet plug-in or a Mail plug-in you might have installed.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • Help for Mouse movement triggers

    Hello, All,
    I try to use mouse movement triggers (When_Mounse_Enter, When_mouse_Leave, and Whwn_Mouse_move) at form level (block level and item level) in a form, but all of these trigger do not work. It seems like all of them can not be fired.
    Anyone can help me? Thanks a lot!
    John

    Hi, Surendra and Grant,
    Thank both of you for help!
    I am tring to learn Form Developer. The database and developer suites are installed in one PC. I don't think I am working in web environment.
    Except the Mouse Movement Triggers, other mouse trigger work well, such as when_mouse_click, when_mouse_doubleclick.
    Any help is very much appreciated.
    John

  • Help: Trackpad&Mouse desappeared from System Preferences

    I do not find Trackpad&Mouse in SystemPref at all, so I cannot control trackpad and apple wireless mouse...it is possible I have put something in the trash by mistake... what I have to do now? Not reistalling OS, I hope...
    iBook G4 OS 10.4.11 AppleWirelessMouse (Bluetooth)

    Hi pinomirenda, e un caloroso benvenuto al forum!
    Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions.
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.
    Trash this file...
    /Users/YourUserName/Library/Preferences/com.apple.systempreferences.plist
    Reboot.
    If that doesn't help, then it appears to be time for a relatively painless Archive & Install, which gives you a new/old OS, but can preserve all your files, pics, music, settings, etc., as long as you have plenty of free disk space and no Disk corruption, and is relatively quick & painless...
    http://docs.info.apple.com/article.html?artnum=107120
    Just be sure to select Preserve Users & Settings.

  • Help, my Mouse & cd Drive quit working boot not right

    I tried to upgrade to os x 10.3 from 10.2.8 and I put the first disc in and clicked the install. It then asked me to restart so I said yes...upon restarting I get a ? flashing on boot up and then it starts like normal except now the mouse doesn't work! I logged in and now the cd drive won't open, the eject button doesn't work, the mouse doesn't work ***!!!!?/? Please help! I am attempting to copy the system folder from the other mac herre and replace mine with that to see if that will work, please help!
    thank you in advance

    Hi, RvaG60. Copying an OS X System from one computer to another doesn't work — there are hundreds or thousands of files that don't get copied that way, and the result is always nonfunctional.
    Do you have a retail Panther installer set (three black CDs) or a gray model-specific Panther set that came with some other Mac? The latter won't work — you need a retail (universal) installer disc set.
    I put the first disc in and clicked the install. It then asked me to restart...
    Did it appear to install anything first, or did it immediately ask you to restart? Was the message about restarting a kernel panic, or just the normal message to restart after an OS installation has been completed?

  • Help: Keyboard & mouse don't work in Welcome screen after Linux 6.3 instal

    I installed Oracle Linux 6.3 on a Intel X64 quad core machine. Everything seemed to go well, but after the installation completed and I rebooted, the keyboard and mouse don't work anymore.
    I don't have a clue how to proceed.

    Is this a Laptop or Desktop PC system? Perhaps your system is not compatible. Can you access the Linux Grub boot menu at startup?

  • Automator Help With Mouse Movement and Click

    Hi all, thanks in advance for any help you can give me.
    I'm trying to use Automator to go into my Volume Purchasing Program purchase history (in Chrome) and download each redemption code spreadsheet. I will need the automator script to scroll to the bottom of the page and click 'More Purchases', wait for the page to load, and repeat that many many times. (I have a lot of purchases on my account.) Then I would like to write a second script that I will run after all of the purchases are shown that will click 'Download Codes' for each line. I've done this by hand for over 2 hours now and still have a long ways to go. Figured Automator could help me out.
    Any tips on how to accomplish this? I've tried recording my actions but when I play it back, it won't even switch to Chrome.

    I have not found automator to be very good at doing this kind of thing.
    It is theoretically possible to have applescripts imbedded in Automator that will choose from a dropdown menu, but I have also not found that to be too reliable.
    I have had much better luck with Startly - QuicKeys 4 for Mac OS X

  • Help magic mouse with imac early 2006 (4,1)

    Hello i have a problem with my new magic mouse, the mouse lost connection frequently. The old mighty mouse work correctly 100%.
    I tried delete the bluetooth preference and start imac with DVD leopard and snow leopard (the mouse don't work in installation gui because lost connection).
    This is a known bug? How can i fix it?
    Thanks

    If you have read my post, I can only recommend -
    1) shut everything down and disconnect your Mac at the wall socket, wait about a minute, then plug back in and restart; then
    2) remove the batteries and press the silver connector buttons in the battery compartment a few times, replace the batteries, reconnect using the Bluetooth Preferences panel, and
    3) repair 'Permissions' using Disk Utility (Applications/Utilities/DIsk Utility)
    I don't know if this works but I did all these and the problem has gone away. It least I haven't had the problem for the last ten or so hours now, so there you go.
    I think the answer is in either 1 or 2 above, maybe both.

  • Help! - Mouse Event with multiple JTables....

    Hi
    My GUI has a different table on various JPanels. What is the best way of telling the mouseClicked method which table is being clicked on.
    Right now, my code is:
    public void mouseClicked(MouseEvent me)
    Point p = me.getPoint();
    int selectedRow = table.rowAtPoint(p);
    int selectedColumn = table.columnAtPoint(p);
    Object o = table.getValueAt(selectedRow,selectedColumn);
    but this means that the method sees only the last table to be created.
    How do I tell it what table it's looking at?
    Thanks for any help you can provide.

    Hi Jim,
    yes for some reason ALV expects you to be using different tables. It seems that it does not save the contents of the tables at each call of 'append' rather it waits until 'display' to deal with the table contents at that time, which in your case is the 20 items.
    What you can do is use dynamic tables. check this out:
    REPORT  ZNRW_ALV_BLOCK                          .
    type-pools: slis.
    data : NUM1 type I,
    NUM type I.
    types:
    begin of str,
    client like mara-mandt,
    mat like mara-matnr,
    end of str.
    data
    tab type standard table of str.
    data :wa2 type slis_alv_event ,
    tab2 like standard table of wa2,
    wa1 type slis_layout_alv,
    wa type line of slis_t_fieldcat_alv,
    tab1 like standard table of wa.
    wa-reptext_ddic = 'Client Num'.
    wa-fieldname = 'CLIENT'.
    wa-tabname = 'TAB'.
    wa-ref_fieldname = 'MANDT'.
    wa-ref_tabname = 'MARA'.
    wa-seltext_l = 'CLIENT'.
    append wa to tab1.
    wa-reptext_ddic = 'Mat Number'.
    wa-fieldname = 'MAT'.
    wa-tabname = 'TAB'.
    wa-ref_fieldname = 'MATNR'.
    wa-ref_tabname = 'MARA'.
    wa-seltext_l = 'MATERIAL'.
    append wa to tab1.
    wa1-no_colhead = 'X'.
    wa2-NAME = SLIS_EV_TOP_OF_PAGE.
    wa2-FORM = 'WRITE_TOP_PAGE'.
    APPEND wa2 TO tab2.
    NUM = 0.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
    EXPORTING
    I_CALLBACK_PROGRAM = sy-cprog.
    DATA tabDREF TYPE REF TO DATA.
    FIELD-SYMBOLS <tab> TYPE table.
    do 2 times.
    CREATE DATA tabdref TYPE table of str.
    ASSIGN tabDREF->* TO <tab>.
    NUM1 = NUM1 + 10.
    refresh: tab.
    select mandt matnr up to NUM1 rows from mara into table <tab>.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
    EXPORTING
    IS_LAYOUT = wa1
    IT_FIELDCAT = tab1
    I_TABNAME = 'TAB'
    IT_EVENTS = tab2
    TABLES
    T_OUTTAB = <tab>.
    enddo.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'.
    FORM WRITE_TOP_PAGE.
    NUM = NUM + 1.
    WRITE: / ,
    / 'TABLE NUMBER :', NUM.
    ENDFORM.

  • Help my poor mouse?

    My roommate put a bunch(some 900)of songs on my itunes that i dont want on there. They are all on a disc and can only be played with the disc in the drive. But the titles are on my list. Anyway I can delete all the exclamation files at one time instead of single r-click, clear??? Please help my mouse and my hand.

    Better to recommend the QuickScripts program instead, it's easier to use:
    http://ottodestruct.com/blog/2006/01/31/easier-to-use-itunes-scripts/
    Just run that program, then click the Remove Dead Tracks button in it.

Maybe you are looking for