Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6664599
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T02:37:44+00:00 2026-05-26T02:37:44+00:00

I try to control the mouse in Linux. Xlib seems to work, but when

  • 0

I try to control the mouse in Linux. Xlib seems to work, but when I try to use it with OpenCV, it keeps returning:

Resource temporarily unavailable

So I decided to write "/dev/psaux". The code is as follows:

#include <unistd.h>
#include <string.h>
#include <stdio.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>


int main() {
    unsigned char a[5] = {0, 0xff, 0, 0x28, 0xff};
    int fp = open ("/dev/psaux", O_WRONLY);
    if(!fp)
        printf("open error:%s\n", strerror(errno));

    for(int i = 0; i < 10; i++)
        printf("write:%d\t\t%s\n", write(fp, a, 5), strerror(errno));
    close(fp);
    return 0;
}

Compile it with:

gcc  my_psaux.c -o my_psaux -std=gnu99 -g

Run

sudo ./my_psaux

and get

write:5    Success
write:5    Success
write:5    Success
write:5    Success
write:5    Success
write:5    Success
write:5    Success
write:5    Success
write:5    Success
write:5    Success

However, the mouse doesn’t move. Then I open a new terminal, type in "sudo cat /dev/psaux" and run "my_psaux". But I just cat nothing. Nothing is written into "/dev/psaux"

How can I fix this?

If this is not a good method to control the mouse, is there another one?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T02:37:44+00:00Added an answer on May 26, 2026 at 2:37 am

    Great thanks to R…
    for reminding me of some other ways instead of /dev/psaux

    I tried /dev/input/mouse* and /dev/input/event*

    By using

    cat /proc/bus/input/devices
    

    I get this:

    I: Bus=0003 Vendor=0461 Product=4d81 Version=0111
    N: Name="USB Optical Mouse"
    P: Phys=usb-0000:00:1d.0-1/input0
    S: Sysfs=/devices/pci0000:00/0000:00:1d.0/usb6/6-1/6-1:1.0/input/input10
    U: Uniq=
    H: Handlers=mouse2 event10
    B: EV=17
    B: KEY=70000 0 0 0 0 0 0 0 0
    B: REL=143
    B: MSC=10
    

    After testing, only /dev/input/event10 works. The code is as follows:

    #include <stdio.h>
    #include <unistd.h>
    #include <linux/input.h>
    #include <errno.h>
    #include <fcntl.h>
    #include <sys/types.h>
    #include <sys/stat.h>
    #include <sys/time.h>
    
    int main() {
      struct input_event event, event_end;
    
      int fd = open("/dev/input/event10", O_RDWR);
      if (fd < 0) {
        printf("Errro open mouse:%s\n", strerror(errno));
        return -1;
      }
      memset(&event, 0, sizeof(event));
      memset(&event, 0, sizeof(event_end));
      gettimeofday(&event.time, NULL);
      event.type = EV_REL;
      event.code = REL_X;
      event.value = 100;
      gettimeofday(&event_end.time, NULL);
      event_end.type = EV_SYN;
      event_end.code = SYN_REPORT;
      event_end.value = 0;
      for (int i=0; i<5; i++) {
        write(fd, &event, sizeof(event)); // Move the mouse
        write(fd, &event_end, sizeof(event_end)); // Show move
        sleep(1); // Wait
      }
      close(fd);
      return 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Through CommandName=Delete I try to delete a line from the ListView control but not
I'd like to try out a distributed revision control system. I use a couple
I try to set the background color of a control when mouse is over
I have a WebBrowser control and try to set onclick and href attributes on
When I try to change image for WPF trigger 'IsMouseOver' for button, the control
Here is my try: @header(Content-type: text/html; charset=utf-8); @header(Location:/index.php); @header(Cache-Control: no-cache, must-revalidate); // HTTP/1.1 @header(Expires:
i try to learn transaction scope. Everything looks good. i try to control transaction
I am thinking to try writing an app that can use android phone to
Synergy is a program that enables you to use the same mouse and keyboard
The control below draws a string in a rectangle. On mouse move there is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.