Archive:Install Kodi on Apple TV 2: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>NedBot
>Jd2157
m (Added FAQ link.)
Line 1: Line 1:
The following how-to requires you to have a [http://forum.xbmc.org/showthread.php?t=99315 jailbroken] ATV2 running a [[XBMC for iOS specific FAQ#What are the Apple TV 2 specific requirements?|supported version]] of iOS/Apple TV Software.
The following how-to requires you to have a [http://forum.xbmc.org/showthread.php?t=99315 jailbroken] ATV2 running a [[XBMC for iOS specific FAQ#What are the Apple TV 2 specific requirements?|supported version]] of iOS/Apple TV Software.


XBMC on iOS is a work in progress. The available versions are the "[http://en.wikipedia.org/wiki/Cydia Cydia] build", and the "Latest Nightly". The Cydia build is generally stable but it won't have the latest updates (more [http://forum.xbmc.org/showpost.php?p=698981&postcount=1 info]). The Latest Nightly contains the most recent XBMC code and is created daily by an automated [http://buildbot.xbmc.org/waterfall build bot]. The Latest Nightly is considered the "latest" publicly available version of XBMC and contains the latest fixes (and possibly bugs). It's recommended for anyone having issues with the Cydia build or who wants the latest features/fixes.
[http://wiki.xbmc.org/index.php?title=XBMC_for_iOS_specific_FAQ XBMC on iOS] is a work in progress. The available versions are the "[http://en.wikipedia.org/wiki/Cydia Cydia] build", and the "Latest Nightly". The Cydia build is generally stable but it won't have the latest updates (more [http://forum.xbmc.org/showpost.php?p=698981&postcount=1 info]). The Latest Nightly contains the most recent XBMC code and is created daily by an automated [http://buildbot.xbmc.org/waterfall build bot]. The Latest Nightly is considered the "latest" publicly available version of XBMC and contains the latest fixes (and possibly bugs). It's recommended for anyone having issues with the Cydia build or who wants the latest features/fixes.





Revision as of 15:44, 3 October 2011

The following how-to requires you to have a jailbroken ATV2 running a supported version of iOS/Apple TV Software.

XBMC on iOS is a work in progress. The available versions are the "Cydia build", and the "Latest Nightly". The Cydia build is generally stable but it won't have the latest updates (more info). The Latest Nightly contains the most recent XBMC code and is created daily by an automated build bot. The Latest Nightly is considered the "latest" publicly available version of XBMC and contains the latest fixes (and possibly bugs). It's recommended for anyone having issues with the Cydia build or who wants the latest features/fixes.


Installing from Cydia

To install the Cydia build:

  1. Open up your terminal/ssh application and enter the following command to log in to your ATV2 (the password will be alpine by default):
  2. ssh [email protected]
  3. Issue these commands in your Terminal window, in sequence:
  4. apt-get install wget wget -O- http://apt.awkwardtv.org/awkwardtv.pub | apt-key add - echo "deb http://apt.awkwardtv.org/ stable main" > /etc/apt/sources.list.d/awkwardtv.list echo "deb http://mirrors.xbmc.org/apt/atv2 ./" > /etc/apt/sources.list.d/xbmc.list apt-get update apt-get install org.xbmc.xbmc-atv2

After XBMC is successfully installed, the ATV2 will restart, and XBMC should then be available as an option in the ATV2's main menu:

ATV2.jpg

Installing the latest nightly build

Here's an example of a successful install (where the ATV2 had an IP of 192.168.1.100 and the .deb package file was from Sept 10)
Changelog: A list of the changes in each nightly build can be found at https://github.com/xbmc/xbmc/commits

NOTE: You must install the Cydia version before you can install nightly builds. You only need to install the Cydia version once.

  1. Open http://mirrors.xbmc.org/nightlies/darwin/atv2/ in a web browser and copy the url of the most recent file in that listing.
  2. In that url you just copied, make note of the file name after "../atv2/". For example it will look something like "xbmc-20110822-e391fde-master-atv2.deb".
  3. Open up your terminal/ssh application and enter the following command to log in to your ATV2:
    ssh [email protected]
  4. You will be asked for a password: default password is alpine
  5. Continue to enter the following commands:
    wget URL-FROM-STEP-ONE-HERE
    dpkg -i FILENAME-FROM-STEP-TWO-HERE
    rm FILENAME-FROM-STEP-TWO-HERE
  6. You should now have the latest nightly build of XBMC for ATV2.


Note: If the dpkg -i command hangs, stop it with CTRL+C so it can use the updated removal script in the new package. If that doesn't work, you'll need to manually remove the XBMC directory before installing the nightly, e.g. "rm -r /Applications/XBMC.frappliance" (will likely take 2 tries).