Create kodi_install.md

This commit is contained in:
aiminick 2021-12-18 15:00:56 +08:00 committed by GitHub
parent c232cd420b
commit d665b5b446
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

12
docs/kodi/kodi_install.md Normal file
View File

@ -0,0 +1,12 @@
- **Just run commands bellow with root user:**
```shell
version=$(apt-cache madison kodi|awk '{print $3}'|sort|tail -n1); \
echo "Check kodi backports version is :$version"; \
apt install -y kodi=$version kodi-bin=$version kodi-data=$version \
libspdlog1=$(apt-cache madison libspdlog1|awk '{print $3}'|sort|tail -n1) \
libfmt-dev=$(apt-cache madison libfmt-dev|awk '{print $3}'|sort|tail -n1); \
apt install -y kodi-pvr-iptvsimple
```
Enjoy :)