From 9df8992d96774df50b678b81b01743b908c2a5ee Mon Sep 17 00:00:00 2001 From: graysky Date: Fri, 24 Aug 2018 14:04:04 -0400 Subject: [PATCH] fixes #6 --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3bac65c..d110a6f 100644 --- a/README.md +++ b/README.md @@ -11,13 +11,12 @@ Users of Arch ARM should NOT use this method as the distro package provides anal ### Other distros Users of other distros should copy `kodi.service` to `/usr/lib/systemd/system/` and should create both a kodi user and home directory as follows: ``` - useradd -c 'kodi user' -u 420 -g kodi -G audio,video,network,optical \ - -d /var/lib/kodi -s /usr/bin/nologin kodi + useradd -u 420 -U -G audio,video -d /var/lib/kodi -s /usr/bin/nologin kodi passwd -l kodi > /dev/null - mkdir /var/lib/kodi/.kodi - chown -R kodi:kodi /var/lib/kodi/.kodi + mkdir /var/lib/kodi + chown -R kodi:kodi /var/lib/kodi ``` Note that the kodi user's home directory is `/var/lib/kodi/` in this example, NOT `/home/kodi/` like a regular user.