9

I have a Logitech K400 wireless keyboard/mouse that I use with my Raspberry Pi (the new 512MB model). I have Raspbmc installed. I'd say about 50% of the time when I boot the device, the keyboard and mousepad do not do anything.

I can still use the web interface though and I can still SSH into the device. It is definitely not hanging.

Luke
  • 258
  • 1
  • 2
  • 11

2 Answers2

5

According to this thread, it is a kernel issue. There is some general discussion on how to resolve the issue. The poster of that thread says that in the end editing /etc/rc.local to include the following worked for him:

sleep 2
rmmod hid-logitech-dj
sleep 3
modprobe hid-logitech-dj
exit 0

I have tried the same and have not had any additional problems as of yet.

Luke
  • 258
  • 1
  • 2
  • 11
-1

Now it works correctly.

To change the layout to French:

root@raspberrypi:~# echo "setxkbmap fr" > ~/.xsessionrc

To prevent the keyboard from freezing at boot, add the following to /etc/rc.local:

# Configure keyboard by John
sleep 2
rmmod hid-logitech-dj
sleep 3
modprobe hid-logitech-dj
Indrek
  • 103
  • 5
user4233
  • 1
  • 1