HiMaxK1 wrote:Paul - did you ever try the workaround I suggested? Since it worked for some, that suggests that it is related to the USB subsystem ( a non-trivial problem and actively being worked on) and not the Logitech driver itself. (Although there may be some other issues with the Logitech driver. It has been changed in newer Linux kernels)
Code: Select all
evdevHimichaelp wrote:Sorry but I am lost by all of this.
I bought a Logitech K400 having read it worked fine, but now find that although it did, it doesn't now.
1. What is the best workaround, the one posted by AnotherMuggle or the 'evdev' one above?
2. It appears it is a Debian bug that has been resolved - will this appear in a new Raspbian at some point?
3. Which is the best keyboard to choose in the Raspi-config list for the K400?
Thank you
Michael
Code: Select all
sudo nano /etc/rc.local
Code: Select all
printf "Remove hid-logitech-dj\n"
sleep 5
rmmod hid-logitech-dj
sleep 5
printf "Insert hid-logitech-dj\n"
modprobe hid-logitech-djThis worked for me too. Thanks Sleep Mode zZ!!Sleep Mode zZ wrote:Added the two lines to /etc/rc.local:Code: Select all
#!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success or any other # value on error. # # In order to enable or disable this script just change the execution # bits. # # By default this script does nothing. # Print the IP address _IP=$(hostname -I) || true if [ "$_IP" ]; then printf "My IP address is %s\n" "$_IP" fi rmmod hid-logitech-dj modprobe hid-logitech-dj exit 0
I will remind that the workaround is originally from MaxK1, not from me. Glad that it was helpful.helix wrote: This worked for me too. Thanks Sleep Mode zZ!!
Could be lucky days... Do the success still continue?itsonlyme wrote:On the last few boots mine seems to be working fine. I have never applied any of the above workarounds but have regularly updated.
Has it been fixed, or am I just having a lucky few days?
Code: Select all
sudo nano /etc/rc.localHipmendiuk wrote:The work arounds didn't work for me. I have to unplug/replug at every boot.
Code: Select all
rmmod hid-logitech-dj
modprobe hid-logitech-djHiMekai wrote:I cant get this to work with the newest version of Raspbian, anyone else having problems ?
TheDosnt work for meCode: Select all
rmmod hid-logitech-dj modprobe hid-logitech-dj