How fix kodi on raspbian inactive keyboard or mouse after autoboot

After adjustment on startup settings mouse and keyboard stuck in inactive mode.

cat /etc/default/kodi

result

# Set this to 1 to enable startup
ENABLED=1
# The user to run Kodi as
USER=kodi
# Adjust niceness of Kodi (decrease for higher priority)
NICE=-5

 

You need to change USER=kodi to USER=pi.

sudo nano /etc/default/kodi

That’s all.

 

#kodi, #raspberrypi2, #xbmc

IPTV Live TV and Radio PVR client addon for Kodi

Build instructions.

Linux | Raspbian

  1. git clone https://github.com/xbmc/xbmc.git
  2. git clone https://github.com/kodi-pvr/pvr.iptvsimple.git
  3. cd pvr.iptvsimple && mkdir build && cd build
  4. cmake -DADDONS_TO_BUILD=pvr.iptvsimple -DADDON_SRC_PREFIX=../.. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=../../xbmc/addons -DPACKAGE_ZIP=1 ../../xbmc/project/cmake/addons
  5. make

In case if you don’t have cmake on your system run next:

sudo apt-get update && sudo apt-get upgrade
sudo apt-get install cmake 

And then run step 4 again.

 

Result of this manipulations is pvr.iptvsimple plugin in  /home/pi/xbmc/addons/.

 

#iptv, #kodi, #network, #raspberrypi2, #xbmc

How To Install Kodi on a Raspberry Pi 2

I currently using Kodi (XBMC) on AppleTV2,  MacBook Pro and Android Samsung a5. Next step is switching to Raspberry Pi 2. First generation was not so interesting cause processing power and the RAM was not enough for ATV2 exchanging. Second is perfect – specs of the Raspberry Pi model 2 are five times better in processing power and twice the RAM.

List of hardware for set up:

It is enough for start.

OpenELEC only system:

  1. Download and install SDFormatter.
  2. Plug Card in CardReader and Quick Format it.
  3. Download the current OpenELEC release image and UnZip it.
  4. Create Card in Terminal.app:
    diskutil list | grep -v disk0 | tail +2
    /dev/disk1
      #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:               FDisk_partition_scheme              *8.0 GB     disk1
       1:                 DOS_FAT_32 UNTITLED                8.0 GB     disk1s1
    diskutil unmountDisk /dev/diskX
    sudo dd if=OpenELEC-Generic.x86_64-6.0.0.img of=/dev/rdiskX bs=4m
    
    diskX - replace with your disk number (in my case it is disk1)
    sync
  5. Unplug card and put it on Raspberry Pi 2. Then – plug all wires in. Last one is – power cable.
  6. Wait for 5 to 10 mins for finishing setup. A welcome screen will come up with some simple steps to follow.

DefaultInstall

P.S. I don’t using keyboard or mouse. Just Kore.

#kodi, #raspberrypi2, #xbmc