LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 01-14-2014, 09:41 AM   #1
Gerardo Zamudio
Member
 
Registered: Jan 2011
Distribution: Slackware
Posts: 128

Rep: Reputation: 112Reputation: 112
Xbox 360 Controller not recognized by Steam


Hello,

I'm having trouble getting applications to recognize my Xbox 360 wired controller. When I plug it in, it shows up in /var/log/messages and dmesg:

dmesg
Code:
[  403.384778] usb 6-1.6: new full-speed USB device number 3 using ehci-pci
[  403.475803] usb 6-1.6: New USB device found, idVendor=045e, idProduct=028e
[  403.475808] usb 6-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  403.475810] usb 6-1.6: Product: Controller
[  403.475812] usb 6-1.6: Manufacturer: ©Microsoft Corporation
[  403.475814] usb 6-1.6: SerialNumber: 03BC9F0
[  403.492615] input: Microsoft X-Box 360 pad as /devices/pci0000:00/0000:00:1d.0/usb6/6-1/6-1.6/6-1.6:1.0/input/input19
[  403.492962] usbcore: registered new interface driver xpad
[  408.868069] 4:3:1: cannot get freq at ep 0x82
[  414.005016] 4:3:1: cannot get freq at ep 0x82
/var/log/messages
Code:
Jan 14 09:19:53 hades kernel: [  403.384778] usb 6-1.6: new full-speed USB device number 3 using ehci-pci
Jan 14 09:19:53 hades kernel: [  403.475803] usb 6-1.6: New USB device found, idVendor=045e, idProduct=028e
Jan 14 09:19:53 hades kernel: [  403.475808] usb 6-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jan 14 09:19:53 hades kernel: [  403.475810] usb 6-1.6: Product: Controller
Jan 14 09:19:53 hades kernel: [  403.475812] usb 6-1.6: Manufacturer: ©Microsoft Corporation
Jan 14 09:19:53 hades kernel: [  403.475814] usb 6-1.6: SerialNumber: 03BC9F0
Jan 14 09:19:53 hades mtp-probe: checking bus 6, device 3: "/sys/devices/pci0000:00/0000:00:1d.0/usb6/6-1/6-1.6"
Jan 14 09:19:53 hades mtp-probe: bus: 6, device: 3 was not an MTP device
Jan 14 09:19:53 hades kernel: [  403.492615] input: Microsoft X-Box 360 pad as /devices/pci0000:00/0000:00:1d.0/usb6/6-1/6-1.6/6-1.6:1.0/input/input19
Jan 14 09:19:53 hades kernel: [  403.492962] usbcore: registered new interface driver xpad
Steam doesn't detect it and neither do any of the controller enabled games. I also tried in Dolphin emulator but it shows up as XInput2//Virtual core pointer

I've installed
Code:
xboxdrv
When I run it, it tells me the file where my controller is available:

Code:
root@hades:~ # xboxdrv --detach-kernel-driver --mimic-xpad --silent
xboxdrv 0.8.5 - http://pingus.seul.org/~grumbel/xboxdrv/
Copyright © 2008-2011 Ingo Ruhnke <grumbel@gmx.de>
Licensed under GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This program comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it under certain conditions; see the file COPYING for details.

Controller:        Microsoft Xbox 360 Controller
Vendor/Product:    045e:028e
USB Path:          006:003
Controller Type:   Xbox360

Your Xbox/Xbox360 controller should now be available as:
  /dev/input/js0
  /dev/input/event19

Press Ctrl-c to quit

This still doesn't get Steam or Dolphin to recognize the controller. I googled a bit and many people said they had trouble with permissions, so I checked the permissions for /dev/input/js0 and /dev/input/event19:

Code:
root@hades:~ # ls -l /dev/input/event19
crw-r----- 1 root root 13, 83 Jan 14 09:26 /dev/input/event19
root@hades:~ # ls -l /dev/input/js0
crw-r--r-- 1 root root 13, 0 Jan 14 09:26 /dev/input/js0
I added read permission to /dev/input/event19:

Code:
root@hades:~ # chmod +r /dev/input/event19
root@hades:~ # ls -l /dev/input/event19
crw-r--r-- 1 root root 13, 83 Jan 14 09:26 /dev/input/event19
Now when I open Steam and Dolphin, they both recognize the controller. The funny thing is now it shows up as SDL/0/Microsoft X-Box 360 pad on Dolphin. If I unplug and plug in the controller, the permissions get reset. Does anyone have any idea what else I can check or how I can make this work seamlessly? I'm running Slackware64 14.1 KDE multilib.
 
Old 01-14-2014, 10:49 AM   #2
schneidz
LQ Guru
 
Registered: May 2005
Location: boston, usa
Distribution: fedora-35
Posts: 5,313

Rep: Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918
the stop-cap solution would be to hack up a daemon that constantly checks if the file exists and change perms. maybe put something like this in ~/.bash_profile: [untested]
Code:
while [ 1 ]
do
 if [ ! -r /dev/input/event19 ]
 then
  chmod 666 /dev/input/event19
 fi
 sleep 10
done
this obviousely wont cure the root of the problem.
 
Old 01-14-2014, 11:01 AM   #3
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Or just use udev for what it is intended. I have this file named 99-joystick-rules in /etc/udev/rules.d/
Code:
KERNEL=="event[0-9]*", ENV{ID_BUS}=="?*", ENV{ID_INPUT_JOYSTICK}=="?*", GROUP="games", MODE="0660"
KERNEL=="js[0-9]*", ENV{ID_BUS}=="?*", ENV{ID_INPUT_JOYSTICK}=="?*", GROUP="games", MODE="0664"
 
3 members found this post helpful.
Old 01-14-2014, 12:02 PM   #4
Gerardo Zamudio
Member
 
Registered: Jan 2011
Distribution: Slackware
Posts: 128

Original Poster
Rep: Reputation: 112Reputation: 112
Quote:
Originally Posted by TobiSGD View Post
Or just use udev for what it is intended. I have this file named 99-joystick-rules in /etc/udev/rules.d/
Code:
KERNEL=="event[0-9]*", ENV{ID_BUS}=="?*", ENV{ID_INPUT_JOYSTICK}=="?*", GROUP="games", MODE="0660"
KERNEL=="js[0-9]*", ENV{ID_BUS}=="?*", ENV{ID_INPUT_JOYSTICK}=="?*", GROUP="games", MODE="0664"
Thanks, that looks like it will work. However I'm not able to connect two controllers. It says there are no free interfaces. Do you know why that could be?
 
1 members found this post helpful.
Old 01-14-2014, 12:08 PM   #5
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Sorry, but I have only one, so I can't test that.
 
Old 01-14-2014, 04:23 PM   #6
Gerardo Zamudio
Member
 
Registered: Jan 2011
Distribution: Slackware
Posts: 128

Original Poster
Rep: Reputation: 112Reputation: 112
Are you using xboxdrv? You test it with a single controller. Plug in the controller, run xboxdrv. Unplug controller, connect to a different USB port. I get the same error. You know the controller is recognized as another device because the light in the controller for "player 2" comes on
 
Old 01-14-2014, 05:45 PM   #7
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Quote:
Originally Posted by Gerardo Zamudio View Post
Are you using xboxdrv? You test it with a single controller. Plug in the controller, run xboxdrv. Unplug controller, connect to a different USB port. I get the same error. You know the controller is recognized as another device because the light in the controller for "player 2" comes on
No, I am not using xboxdrv. I just plug the controller in and it becomes available. I noticed already the behavior you describe (different lights are activated) if I unplug and plugin again to fast, but I never worried about that and I never got that error message.
 
Old 01-16-2014, 10:29 AM   #8
Gerardo Zamudio
Member
 
Registered: Jan 2011
Distribution: Slackware
Posts: 128

Original Poster
Rep: Reputation: 112Reputation: 112
Just coming back to report that I finally got a chance to try TobiSGD's udev rule and it worked like a charm. Marking this as solved.
 
  


Reply

Tags
controller, dolphin, games, steam, xbox360



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Steam's Big Picture Mode not detecting Xbox 360 Controller on Slackware 14 slimkid Slackware 5 10-08-2013 04:24 PM
Xbox 360 Controller fatalerror0x00 Slackware 9 11-24-2012 05:15 PM
Xbox 360 Controller not recognized by Ubuntu but recognized by programs? HolyMythos Linux - Newbie 1 06-19-2012 07:28 AM
Xbox 360 Controller - CentOS vince4amy Red Hat 2 09-30-2009 09:33 AM
xbox 360 controller programming ma1069 Programming 3 01-30-2007 07:47 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 04:55 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration