Last active
February 23, 2025 09:02
-
-
Save bluesku/ce5e7c9c0d21e5d029ca80f2716adda5 to your computer and use it in GitHub Desktop.
kodi-install-ubuntu repo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
add-apt-repository ppa:team-xbmc/ppa | |
apt update ; apt install kodi -y | |
#keep reading https://launchpad.net/~team-xbmc/+archive/ubuntu/ppa |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
#This PPA can be added to your system manually by copying the lines below and adding them to your system's software | |
#sources. | |
echo 'Xenial 16.04 / Bionic 18.04 / Disco 19.04 / Focal 20.04 /Groovy 20.10' | |
echo 'eg.: deb http://ppa.launchpad.net/team-xbmc/ppa/ubuntu bionic main ' | |
read -p 'Set your Ubuntu Version: ' version | |
echo 'deb http://ppa.launchpad.net/team-xbmc/ppa/ubuntu $version main ' >> /etc/apt/sources.list | |
echo 'deb-src http://ppa.launchpad.net/team-xbmc/ppa/ubuntu $version main' >> /etc/apt/sources.list | |
#keep reading https://launchpad.net/~team-xbmc/+archive/ubuntu/ppa | |
apt update; apt install kodi -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment