Skip to content

Instantly share code, notes, and snippets.

@metriics
Created June 7, 2024 20:39
Show Gist options
  • Select an option

  • Save metriics/15cd54ef6a54689a3f60f0bf3d747a0e to your computer and use it in GitHub Desktop.

Select an option

Save metriics/15cd54ef6a54689a3f60f0bf3d747a0e to your computer and use it in GitHub Desktop.
Apple TV 3 - Blackb0x not installing Kodi automatically FIX
# These are the commands I ran on my ATV 3 after jailbreaking with Blackb0x on tvOS 7.9
#
# First SSH into the Apple TV with the root user account, if you are having trouble try this command:
# ssh -oHostKeyAlgorithms=+ssh-dss root@<atv-ip-here>
# Step 0 (i think this is necessary) Move apllications from system partition to user partition
mkdir -p /private/var/Applications && cd /Applications
mv * /private/var/Applications
cd /
rmdir /Applications
ln -s /private/var/Applications /Applications
cd
# Step 1 - Add Kodi repository to sources list
echo "deb http://mirrors.kodi.tv/apt/atv2 ./" > /etc/apt/sources.list.d/xbmc.list
# Step 2 - Update the package list from sources
apt-get update
# Step 3 - Install Kodi (this will take a while, and the Apple TV will respring to the home screen)
apt-get install org.xbmc.kodi-atv2
# You should now see Kodi on the home screen!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment