Main Restorations Software Audio/Jukebox/MP3 Everything Else Buy/Sell/Trade
Project Announcements Monitor/Video GroovyMAME Merit/JVL Touchscreen Meet Up Retail Vendors
Driving & Racing Woodworking Software Support Forums Consoles Project Arcade Reviews
Automated Projects Artwork Frontend Support Forums Pinball Forum Discussion Old Boards
Raspberry Pi & Dev Board controls.dat Linux Miscellaneous Arcade Wiki Discussion Old Archives
Lightguns Arcade1Up Try the site in https mode Site News

Unread posts | New Replies | Recent posts | Rules | Chatroom | Wiki | File Repository | RSS | Submit news

  

Author Topic: AdvanceMenu/Mame PITA saga is OVER  (Read 8638 times)

0 Members and 1 Guest are viewing this topic.

elvis

  • Trade Count: (0)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 1154
  • Last login:January 13, 2025, 08:48:40 am
  • penguin poker
    • StickFreaks
Re: AdvanceMenu/Mame PITA saga is OVER
« Reply #40 on: August 25, 2005, 05:34:54 pm »
Again Linux falls down here in the "ease of use" area.

To tell Linux you are running a USB mouse under XFree86 or Xorg, you need to modify the appropriate lines in your /etc/X11/XF86Config or /etc/X11/xorg.conf files.  Generally you'll see a line something like:

Code: [Select]
   Option "Device"              "/dev/psaux"
Which tells the system that your mouse lives on the PS/2 port.  You need to tell it to search the virtual USB bus instead, which maps itself to /dev/input on newer kernels:

Code: [Select]
   Option "Device"              "/dev/input/mice"
X can support as many inputs as you can give it.  If you want 8 mouse inputs on your system, then you can configure it as so.  Ditto for unlimited numbers of keyboards, video cards, monitors, etc.  GNU/Linux substitutes much automagickery with total user customisability.  End result is you can do almost anything you like, but you need to do it manually via config files.  Greater control, but at the expense of ease-of-use.