how-to – Apple TV Hacks https://www.appletvhacks.net Get more from your shiny box of joy: Taking Apple TVs to the next level Wed, 09 May 2012 14:00:19 +0000 en-US hourly 1 How to Jailbreak Apple TV 2 on iOS 5 (Apple TV 4.4) Using Seas0nPass – Tethered https://www.appletvhacks.net/2011/10/18/how-to-jailbreak-apple-tv-2-on-ios-5-apple-tv-4-4-using-seas0npass-tethered/ https://www.appletvhacks.net/2011/10/18/how-to-jailbreak-apple-tv-2-on-ios-5-apple-tv-4-4-using-seas0npass-tethered/#comments Tue, 18 Oct 2011 18:23:04 +0000 https://www.appletvhacks.net/?p=1374 Firecore has just updated Seas0nPass to support a TETHERED jailbreak of the new Apple TV 4.4 (iOS 5) software (also supported is the 4.4.1 update). A tethered jailbreak means every time there is a need to reboot your Apple TV,...

The post How to Jailbreak Apple TV 2 on iOS 5 (Apple TV 4.4) Using Seas0nPass – Tethered appeared first on Apple TV Hacks.

]]>

Firecore has just updated Seas0nPass to support a TETHERED jailbreak of the new Apple TV 4.4 (iOS 5) software (also supported is the 4.4.1 update). A tethered jailbreak means every time there is a need to reboot your Apple TV, you will have to connect it to a computer. The new Seas0nPas doesn’t support XBMC, Plex, Remote HD and Rowmote plugins yet, so think twice before deciding to upgrade to 4.4 and run the jailbreak.

If the support for Media Player, Couch Surfer, NitoTV, Last.fm, Weather, RSS Feeds and Overflow and the new Apple TV 4.4 features, like AirPlay Mirroring, Photo Stream, NHL and WSJ Live are enough to convince you to update, you can then jailbreak your atv following these steps:

  1. Download version 4.4 (9A334v) or 4.4.1 (9A335a) and save the IPSW in an easy to find location.
  2. Download the latest version of Seas0nPass.
  3. Open Seas0nPass then Option + click (Mac) or Shift + click (PC) the Create IPSW button and select the new IPSW file that was downloaded in step #1.
  4.  Seas0nPass will complete the jailbreak and restore process automatically.
  5. After the restore is complete, move the AppleTV to your TV and follow the steps for performing a tethered boot:

Using Seas0nPass for a ‘tethered boot’

After jailbreaking your Apple TV with Seas0nPass your device requires a tethered boot. This means it must be connected to a computer for a brief moment during startup.

Note: The Apple TV MUST be disconnected from the computer (for at least a brief moment) after restoring in iTunes for the tethered boot process below to work properly.

Step 1: Open Seas0nPass and select the ‘Boot Tethered’ option.

Step 2: When prompted, connect the AppleTV to your computer via USB. Wait for the rapid flashing light then connect the power. Once both are connected hold both the ‘MENU’ and ‘PLAY/PAUSE’ buttons for 7 seven seconds.

Step 3: Seas0n Pass will complete the tethered boot automatically. Once complete, remove the USB cable and connect the HDMI cable.

Done!

You may also want to read:
Apple TV 2 Software Update 4.4.1 – Released and Pulled
Apple TV 4.4 Software Released
How to Watch Hulu on Apple TV 2

The post How to Jailbreak Apple TV 2 on iOS 5 (Apple TV 4.4) Using Seas0nPass – Tethered appeared first on Apple TV Hacks.

]]>
https://www.appletvhacks.net/2011/10/18/how-to-jailbreak-apple-tv-2-on-ios-5-apple-tv-4-4-using-seas0npass-tethered/feed/ 74
Installing and Configuring a FTP Server in Your Apple TV 1st Generation https://www.appletvhacks.net/2011/08/28/installing-and-configuring-a-ftp-server-in-your-apple-tv-1st-generation/ https://www.appletvhacks.net/2011/08/28/installing-and-configuring-a-ftp-server-in-your-apple-tv-1st-generation/#comments Sun, 28 Aug 2011 07:39:32 +0000 https://www.appletvhacks.net/?p=1247 Today we will install an FTP server in one of our Apple TV 1. FTP means File Transfer Protocol, and a FTP server is a program sitting in your device, waiting for someone to send him files (or ready to...

The post Installing and Configuring a FTP Server in Your Apple TV 1st Generation appeared first on Apple TV Hacks.

]]>
Install FTP server in your Apple TV

Today we will install an FTP server in one of our Apple TV 1. FTP means File Transfer Protocol, and a FTP server is a program sitting in your device, waiting for someone to send him files (or ready to send them). Then, if you have an FTP server in your Apple TV, you can transfer files easily an quickly from your Mac OS (in a Finder window, Go menu and select connect to server, then ftp://locationofappletv) or your Windows machine (just enter ftp://locationofappletv in your Explorer window).

For this tutorial to work, you need to have SSH access to your Apple TV. Of course, this is the first step in any jailbreaking tutorial, so I’ll assume you are past this step. If you are not, you can find more details in our How-To category.

This will only work (in an useful way) in an Apple TV1, since the Apple TV2 lacks a hard drive and FTP needs somewhere to store the files. What else do you need? Well, you need the FTP daemon. A daemon is a special kind of program in UNIX systems that watches what is happening… Oddly enough, the name comes from electromagnetism’s theory father, James Maxwell. Odd happenings.

Where can you get this little program? The easiest source is an Intel Mac. You can copy this file straight if you are in a Mac computer: it is located in /usr/libexec/ftpd You have to copy it to /usr/bin/ftpd You also need to make it executable, do it by logging to your Apple TV and then

sudo -s
chmod +x /usr/bin/ftpd

What happens if you don’t have a Mac installation at hand? Well, I found a trick in AwkwardTV‘s wiki to install the FTP server. You just grab it from the recovery partition in your Apple TV. This is a special part of your Apple TV’s harddrive where Apple puts a copy of the operating system. Then, if everything fails, you can safely start your system from there.

The procedure for getting this is as follows: You ssh into your Apple TV and then issue the following commands:

sudo -s
INSTALL_SOURCE='/tmp'
DAEMON='usr/libexec/ftpd'
dd if=/dev/disk0s2 of=$INSTALL_SOURCE/recovery.dmg bs=1m
hdiutil mount $INSTALL_SOURCE/recovery.dmg
hdiutil mount /Volumes/Recovery/OS.dmg
cp -p /Volumes/OSBoot\ 1/$DAEMON /usr/bin/
chown root:wheel /$DAEMON
hdiutil unmount /Volumes/OSBoot\ 1
hdiutil unmount /Volumes/Recovery -force
chown root:wheel /usr/libexec/ftpd

This is just the UNIX way of mounting the recovery disc, copying the file, making the file usable and unmounting the disk. It won’t fire any missiles anywhere.

Things are closer to an end. Now we have the FTP daemon sitting in your Apple TV… But it isn’t active yet. Moreover, we want to be able to connect to it, so we need some user that can talk with him. Enter into your Apple TV via SSH and issue the following:


If you know what you are doing, you can do use some command line text editor. What does this blurb do? It writes a PList file (a property list in Apple’s OSes) telling iOS to run the FTP daemon. To write it, we use the UNIX command cat, which is one of the simplest ways to write a file. Once we have this file, we can load the daemon with:

launchctl load $PLIST_FILE

Now the only thing left to do is create a user to access via FTP We will name this user appletvftp. Run the following via SSH:

USERS_FILE='/etc/ftpusers'
cat >> $USERS_FILE <<EOT
appletvftp    allow
EOT

Yay! The only thing left to do is to check that you can transfer files to your Apple TV. Follow the steps we said at the beginning about Mac’s Finder or Windows’ Explorer. By the way, if you are in a Linux system, you have several ways to access, probably your file manager has some “connect to server” option quite visible. Try it.

I hope this has helped all those Apple TV 1 users out there! Stay tuned for more tutorials, and don’t forget to subscribe to our brand new newsletter.

Picture courtesy of Omoon at Flickr

The post Installing and Configuring a FTP Server in Your Apple TV 1st Generation appeared first on Apple TV Hacks.

]]>
https://www.appletvhacks.net/2011/08/28/installing-and-configuring-a-ftp-server-in-your-apple-tv-1st-generation/feed/ 21
How to Jailbreak Apple TV 2 on iOS 4.3 or iOS 5 Beta with Seas0nPass 0.7.7 (untethered) https://www.appletvhacks.net/2011/07/19/how-to-jailbreak-apple-tv-2-on-ios-4-3-or-ios-5-beta-with-seas0npass-0-7-7-untethered/ https://www.appletvhacks.net/2011/07/19/how-to-jailbreak-apple-tv-2-on-ios-4-3-or-ios-5-beta-with-seas0npass-0-7-7-untethered/#comments Tue, 19 Jul 2011 15:11:55 +0000 https://www.appletvhacks.net/?p=1196 FireCore has just released Seas0nPass 0.7.7 that features support for Lion and a handful of bug fixes. It’s generally designed to jailbreak your atv2 running iOS 4.3.x (Apple TV 2 4.2.2 software version) but, according to nitoTV, it also supports...

The post How to Jailbreak Apple TV 2 on iOS 4.3 or iOS 5 Beta with Seas0nPass 0.7.7 (untethered) appeared first on Apple TV Hacks.

]]>
FireCore has just released Seas0nPass 0.7.7 that features support for Lion and a handful of bug fixes. It’s generally designed to jailbreak your atv2 running iOS 4.3.x (Apple TV 2 4.2.2 software version) but, according to nitoTV, it also supports the latest iOS 5 beta.

Similar to PwnageTool, Seas0nPass allows you to jailbreak your atv2 by creating custom Apple TV IPSW files and restoring them in iTunes. The new version of Seas0nPass is Mac only – it adds support for Lion and fixes Mac specific bugs.

Here is the tutorial on how to jailbreak your Apple TV 2 on iOS 4.3 (Apple TV 4.2.2) or iOS 5 using Seas0nPass 0.7.7:

Pre-launch checklist

  1. Make sure you’re running the latest version of iTunes.
  2. Download Seas0nPass for Mac [10.6 or later]
  3. A micro USB cable will be required to complete the jailbreak.

Jailbreaking

Step 1: Launch Seas0nPass and select ‘Create IPSW’.

Step 2: The latest Apple TV software will be downloaded and used to create a custom jailbroken software file.

Step 3: When prompted, connect your Apple TV using a micro-USB cable (leave power disconnected), and hold both the ‘MENU’ and ‘PLAY/PAUSE’ buttons for 7 seven seconds. Apple TV will enter in DFU mode.

Step 4: A message will appear giving you further instructions.


Step 5: Open iTunes and restore your Apple TV (Shift + ‘Restore’ button) from the created custom IPSW file (located in My Documents -> Seas0nPass).

Done!

What to do next?
1. Install nitoTV or aTV Flash (black) to get the access to further enhancements.
2. Instal XBMC to watch Hulu.
3. Check out Remote HD app and atv2 plugin and control your Apple TV 2 with the iPhone/iPad or iPod touch.

The post How to Jailbreak Apple TV 2 on iOS 4.3 or iOS 5 Beta with Seas0nPass 0.7.7 (untethered) appeared first on Apple TV Hacks.

]]>
https://www.appletvhacks.net/2011/07/19/how-to-jailbreak-apple-tv-2-on-ios-4-3-or-ios-5-beta-with-seas0npass-0-7-7-untethered/feed/ 45
How to Jailbreak Apple TV 2 on iOS 4.3 with sn0wbreeze (untethered) https://www.appletvhacks.net/2011/04/12/how-to-jailbreak-apple-tv-2-on-ios-4-3-with-sn0wbreeze-untethered/ https://www.appletvhacks.net/2011/04/12/how-to-jailbreak-apple-tv-2-on-ios-4-3-with-sn0wbreeze-untethered/#comments Tue, 12 Apr 2011 17:41:27 +0000 https://www.appletvhacks.net/?p=1071 For those who still have problems jailbreaking Apple TV 2 on iOS 4.3 with SeasOnPass, sn0wbreez is the alternative you should give a try to. The software has been updated to version 2.5.1 just a couple of days ago and...

The post How to Jailbreak Apple TV 2 on iOS 4.3 with sn0wbreeze (untethered) appeared first on Apple TV Hacks.

]]>
For those who still have problems jailbreaking Apple TV 2 on iOS 4.3 with SeasOnPass, sn0wbreez is the alternative you should give a try to. The software has been updated to version 2.5.1 just a couple of days ago and it can now jailbreak your atv2 on the latest software in a flash (less than 10 minutes in our case). Considered as the unofficial PwnageTool for Windows, sn0wbreeze works with Windows XP, Vista and 7.

Here is the step-by-step tutorial on how to jailbreak your Apple TV 2 on iOS 4.3 (Apple TV 4.2.1) using sn0wbreez 2.5.1:

Pre-launch checklist

  1. Make sure you’re running the latest version of iTunes.
  2. Download sn0wbreez 2.5.1 for Windows.
  3. A micro USB cable will be required to complete the jailbreak.

Jailbreaking

Step 1: Launch sn0wbreeze and click the arrow to continue.

Step 2: Download the latest IPSW or browse for it if you’ve already downloaded it (drag&drop didn’t work for us).

Wait until IPSW is verified and click the arrow to continue.

Step 3: Custom IPSW file will be built (meanwhile, you can play PacMan…if you have Adobe Flash for IE!).

Step 4: sn0wbreez will notify you that the IPSW has been successfully created (and located on your desktop). Press OK.

Step 5: Connect your Apple TV using a micro-USB cable (leave power disconnected).

Step 6: Hold both the ‘MENU’ and ‘PLAY/PAUSE’ buttons for 7 seven seconds. Apple TV will enter in DFU mode.

Step 7: Launch iTunes and restore your atv (Shift + ‘Restore’ button) from the custom IPSW located on your desktop.

Done! Your Apple TV is now jailbroken.

What to do next?
1. Install nitoTV or aTV Flash (black) to get the access to further enhancements.
2. Instal XBMC to watch Hulu.
3. Check out Remote HD app and atv2 plugin and control your Apple TV 2 with the iPhone/iPad/iPod touch.

The post How to Jailbreak Apple TV 2 on iOS 4.3 with sn0wbreeze (untethered) appeared first on Apple TV Hacks.

]]>
https://www.appletvhacks.net/2011/04/12/how-to-jailbreak-apple-tv-2-on-ios-4-3-with-sn0wbreeze-untethered/feed/ 38
How to Jailbreak Apple TV 2 on iOS 4.3 with Seas0nPass (untethered) https://www.appletvhacks.net/2011/04/06/how-to-jailbreak-apple-tv-2-on-ios-4-3-with-seas0npass-untethered/ https://www.appletvhacks.net/2011/04/06/how-to-jailbreak-apple-tv-2-on-ios-4-3-with-seas0npass-untethered/#comments Wed, 06 Apr 2011 17:00:51 +0000 https://www.appletvhacks.net/?p=1056 FireCore’s Seas0nPass has been updated to provide an untethered jailbreak for the latest 4.2.1 (iOS 4.3) Apple TV2 software. Similar to PwnageTool, Seas0nPass allows you to jailbreak your atv2 by creating custom Apple TV IPSW files and restoring them in...

The post How to Jailbreak Apple TV 2 on iOS 4.3 with Seas0nPass (untethered) appeared first on Apple TV Hacks.

]]>
FireCore’s Seas0nPass has been updated to provide an untethered jailbreak for the latest 4.2.1 (iOS 4.3) Apple TV2 software. Similar to PwnageTool, Seas0nPass allows you to jailbreak your atv2 by creating custom Apple TV IPSW files and restoring them in iTunes. It’s both mac and Windows and it works like a charm!

Here are the instructions on how to jailbreak your Apple TV 2 on iOS 4.3 (Apple TV 4.2.1) using Seas0nPass:

Pre-launch checklist

  1. Make sure you’re running the latest version of iTunes.
  2. Download Seas0nPass: Mac [10.6 or later] | Windows [XP or later]
  3. A micro USB cable will be required to complete the jailbreak.

Jailbreaking

Step 1: Launch Seas0nPass and select ‘Create IPSW’.

Step 2: The latest Apple TV software will be downloaded and used to create a custom jailbroken software file.

Step 3: When prompted, connect your Apple TV using a micro-USB cable (leave power disconnected), and hold both the ‘MENU’ and ‘PLAY/PAUSE’ buttons for 7 seven seconds. Apple TV will enter in DFU mode.

Step 4: A message will appear giving you further instructions.

Step 5: Open iTunes and restore your Apple TV (Shift + ‘Restore’ button) from the created custom IPSW file (located in My Documents -> Seas0nPass).

Done!

What to do next?
1. Install nitoTV or aTV Flash (black) to get the access to further enhancements.
2. Instal XBMC to watch Hulu.
3. Check out Remote HD app and atv2 plugin and control your Apple TV 2 with the iPhone/iPad/iPod touch.

The post How to Jailbreak Apple TV 2 on iOS 4.3 with Seas0nPass (untethered) appeared first on Apple TV Hacks.

]]>
https://www.appletvhacks.net/2011/04/06/how-to-jailbreak-apple-tv-2-on-ios-4-3-with-seas0npass-untethered/feed/ 110
How to jailbreak Apple TV 2 on iOS 4.3 with Seas0nPass (tethered) https://www.appletvhacks.net/2011/03/11/how-to-jailbreak-apple-tv-2-on-ios-4-3-with-seas0npass-tethered/ https://www.appletvhacks.net/2011/03/11/how-to-jailbreak-apple-tv-2-on-ios-4-3-with-seas0npass-tethered/#comments Fri, 11 Mar 2011 17:33:02 +0000 https://www.appletvhacks.net/?p=998 Firecore has updated Seas0nPass to support a tethered jailbreak of the new Apple TV 4.2 (iOS 4.3) software. Seas0nPass allows you to jailbreak your atv2 with the latest 4.2 software by creating custom Apple TV IPSW files and restoring them...

The post How to jailbreak Apple TV 2 on iOS 4.3 with Seas0nPass (tethered) appeared first on Apple TV Hacks.

]]>
Firecore has updated Seas0nPass to support a tethered jailbreak of the new Apple TV 4.2 (iOS 4.3) software. Seas0nPass allows you to jailbreak your atv2 with the latest 4.2 software by creating custom Apple TV IPSW files and restoring them in iTunes (similar to the existing Pwnage Tool app). It also includes a simple ‘tethered boot’ option.

Seas0nPass is open source (the source code is available on Github) and is available for free. It’s Mac only (OSX 10.6 or later) for now but the Windows version should be released soon.

According to Firecore, aTV Flash (black) Beta3 is iOS 4.3 compatible “for the most part”. However, you may see a few oddities with text entry screens in plugins like Couch Surfer and nitoTV. These are relatively minor issues and should be a quick fix. Additionally there are some hardware decoding issues present in XBMC which will take a bit more work for Firecore to get right.

@nitoTV, @DjayB6, @p0sixninja and @msft_guy contributed to this release of Seas0nPass.

Here are the instructions on how to use Seas0nPass to jailbreak and tether boot your Apple TV 2 on iOS 4.3:

Pre-launch checklist

  1. Download and install the latest version of iTunes (check for updates through Software Update located in Apple menu).
  2. Download Seas0nPass
  3. A micro USB cable will be required to complete the jailbreak.

Jailbreaking

Step 1: Unzip the ‘Seas0nPass.zip’ file and launch Seas0nPass.

Step 2: If your AppleTV is not yet jailbroken, select ‘Create IPSW’. (if already jailbroken, and you just need to do a ‘tethered boot’ scroll down).

Step 3: The latest AppleTV software will be downloaded and used to create a custom ‘jailbroken’ software file.

Step 4: When prompted, connect your AppleTV using a micro-USB cable (leave power disconnected), and hold both the ‘MENU’ and ‘PLAY/PAUSE’ buttons for 7 seven seconds.

Step 5: iTunes will open automatically and start the restore process.

Step 6: iTunes will confirm the restore when complete – your AppleTV is now jailbroken. Please proceed to the ‘tethered boot’ section below.

Using Seas0nPass for a ‘tethered boot’

After jailbreaking your atv on iOS 4.3 with Seas0nPass your device requires a tethered boot. This means it must be connected to a computer for a brief moment during startup.

Note: The Apple TV MUST be disconnected from the computer (for at least a brief moment) after restoring in iTunes for the tethered boot process below to work properly.

Step 1: Open Seas0nPass and select the ‘Boot Tethered’ option.

Step 2: When prompted, connect the AppleTV to your computer via USB. Wait for the rapid flashing light then connect the power. Once both are connected hold both the ‘MENU’ and ‘PLAY/PAUSE’ buttons for 7 seven seconds.

Step 3: Seas0n Pass will complete the tethered boot automatically. Once complete, remove the USB cable and connect the HDMI cable.

You may also want to read:
Apple TV 2 Gets Software Update 4.2
How to Watch Hulu on Apple TV 2
How to Install Plex on Apple TV 2G

The post How to jailbreak Apple TV 2 on iOS 4.3 with Seas0nPass (tethered) appeared first on Apple TV Hacks.

]]>
https://www.appletvhacks.net/2011/03/11/how-to-jailbreak-apple-tv-2-on-ios-4-3-with-seas0npass-tethered/feed/ 33
How to Watch Hulu on Apple TV 2 https://www.appletvhacks.net/2011/03/02/how-to-watch-hulu-on-apple-tv-2/ https://www.appletvhacks.net/2011/03/02/how-to-watch-hulu-on-apple-tv-2/#comments Wed, 02 Mar 2011 17:57:04 +0000 https://www.appletvhacks.net/?p=979 Update (10-Jan-2012): Still working! Although the developer of Bluecop said that Hulu is not working with his XBMC add-on anymore, I decided to write this tutorial because many users report they are still able to get Hulu on Apple TV...

The post How to Watch Hulu on Apple TV 2 appeared first on Apple TV Hacks.

]]>

Update (10-Jan-2012): Still working!

Although the developer of Bluecop said that Hulu is not working with his XBMC add-on anymore, I decided to write this tutorial because many users report they are still able to get Hulu on Apple TV 2 via this plugin. The developer claims it won’t last but you can check it out by yourselves and try your luck. We’ll be updating this post to provide you with the latest on this topic.

So how to watch Hulu on atv2? Here is the step-by-step guide.

Note: it requires you to have your Apple TV 2 already jailbroken with nitoTV, XBMC and openSSH installed.

New 1080p Apple TV Giveaway
1. Download Bluecop repository (zip file)
2. SFTP into your Apple TV  (username “root”, pass “alpine” if you haven’t changed it already; find your atv IP address in Settings ->General -> Network)
3. Copy zip file to /private/var/mobile/Media folder
4. In XBMC on your atv go to System -> Add-ons -> “Install from zip file”
5. Browse to var/mobile/media, find “repository.bluecop.xbmc-plugins.zip” and press OK (Bluecop is already enabled)
6. Go to System -> Add-ons -> get add-ons, find “bluecop Add-on Repository” click OK, choose video add-ons, find Hulu and install it
7. Head to Videos -> Video add-ons, find Hulu and enjoy (should work with both regular Hulu and Hulu Plus).

Tell us in comments if it works for you. Don’t worry if not, Bluecop offers a few other add-ons you may want to check out (Cartoon Network, CBS, MTV, South Park Studios, The Daily Show and more).

You may also want to read:
How to Jailbreak Apple TV 2 on iOS 4.2.1 Untethered with Seas0nPass
How to jailbreak Apple TV 2 with greenpois0n rc6
How to install XBMC on Apple TV 2

The post How to Watch Hulu on Apple TV 2 appeared first on Apple TV Hacks.

]]>
https://www.appletvhacks.net/2011/03/02/how-to-watch-hulu-on-apple-tv-2/feed/ 232
How to Jailbreak Apple TV 2 on iOS 4.2.1 Untethered with Seas0nPass https://www.appletvhacks.net/2011/02/23/how-to-jailbreak-apple-tv-2-on-ios-4-2-1-untethered-with-seas0npass/ https://www.appletvhacks.net/2011/02/23/how-to-jailbreak-apple-tv-2-on-ios-4-2-1-untethered-with-seas0npass/#comments Wed, 23 Feb 2011 16:28:09 +0000 https://www.appletvhacks.net/?p=969 Firecore has released an updated version of Seas0nPass that includes an untethered jailbreak for the Apple TV 2 on iOS 4.2.1 (Apple TV 4.1.1). It’s Mac only for now (OSX 10.6 or later) but according to Firecore, Windows version is...

The post How to Jailbreak Apple TV 2 on iOS 4.2.1 Untethered with Seas0nPass appeared first on Apple TV Hacks.

]]>
Firecore has released an updated version of Seas0nPass that includes an untethered jailbreak for the Apple TV 2 on iOS 4.2.1 (Apple TV 4.1.1). It’s Mac only for now (OSX 10.6 or later) but according to Firecore, Windows version is also being finalized with the untether and will be available soon. If you’ve already jailbroken with greenpois0n (RC 6 or RC 6.1) you do not need to re-jailbreak – both Seas0nPass and greenpois0n contain the same jailbreak components.

Seas0nPass is open source (the source code is available on Github) and is available for free.

Here are the instructions on how to use Seas0nPass to jailbreak the Apple TV 2:

Pre-launch checklist

  1. Download and install the latest version of iTunes.
  2. Download Seas0nPass
  3. A micro USB cable will be required to complete the jailbreak.

Jailbreaking

Step 1: Unzip the ‘Seas0nPass.zip’ file and launch Seas0nPass.

Step 2: Select ‘Create IPSW’ (“Boot Tethered” is for old, tethered jailbreak).Step 3: The latest AppleTV software will be downloaded and used to create a custom ‘jailbroken’ software file.

Step 4: When prompted, connect your AppleTV using a micro-USB cable (leave power disconnected), and hold both the ‘MENU’ and ‘PLAY/PAUSE’ buttons for 7 seven seconds.

Step 5: iTunes will open automatically and start the restore process.

Step 6: iTunes will confirm the restore when complete – your AppleTV is now jailbroken.

You may also want to read:
How to jailbreak Apple TV 2 with greenpois0n rc6
How to install XBMC on Apple TV 2
Seas0nPass Troubleshooting Tips
aTV Flash (black) for Apple TV 2G Now Available (+giveaway)

The post How to Jailbreak Apple TV 2 on iOS 4.2.1 Untethered with Seas0nPass appeared first on Apple TV Hacks.

]]>
https://www.appletvhacks.net/2011/02/23/how-to-jailbreak-apple-tv-2-on-ios-4-2-1-untethered-with-seas0npass/feed/ 33
How to install XBMC on Apple TV 2 https://www.appletvhacks.net/2011/01/21/how-to-install-xbmc-on-apple-tv-2/ https://www.appletvhacks.net/2011/01/21/how-to-install-xbmc-on-apple-tv-2/#comments Fri, 21 Jan 2011 18:40:34 +0000 https://www.appletvhacks.net/?p=922 XBMC has finally been released for the new Apple TV. Here you have all the instructions you need to get it working on your device. NOTE: the following HOW-TO requires you to have Jailbroken ATV2 version 4.1 or 4.2.1. Here...

The post How to install XBMC on Apple TV 2 appeared first on Apple TV Hacks.

]]>
XBMC has finally been released for the new Apple TV. Here you have all the instructions you need to get it working on your device.

NOTE: the following HOW-TO requires you to have Jailbroken ATV2 version 4.1 or 4.2.1.

Here is how to jailbreak your ATV2:
How to jailbreak Apple TV 2 on iOS 4.2.1 with Seas0nPass
How-To: Jailbreak Apple TV 2G on iOS 4.2.1 with PwnageTool

Installing XBMC

Step 1 (accessing the Apple TV): in the Terminal application on your Mac, enter the following:

ssh root@AppleTV.local

or

$ ssh root@<your ATV2 IP adress>

if AppleTV.local doesn’t work (find your atv IP address in Settings ->General -> Network).

Use “alpine” as your password if you haven’t changed it already.

  • If you named your Apple TV something other than “AppleTV” then you need to replace the text above.
  • The first time you do this, it might take a few moments to establish a connection.

New 1080p Apple TV Giveaway

Step 2: Paste the following code into Terminal (line by line; hit Enter after each line)

$ echo “deb https://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, Frontrow (ATV2 home screen) will restart and you will see XBMC in it.

Here is how to get XBMC if you have already installed aTV Flash or nitoTV:

  • aTV Flash: download XBMC via Maintenance –> Manage Extras.
  • nitoTV: install the latest nitoTV to auto-install XBMC

You may also want to read
XBMC for Apple TV 2 now available
How to Install Plex on Apple TV 2G
AirFlick Streams Non-iTunes Data to Apple TV 2 (video)

The post How to install XBMC on Apple TV 2 appeared first on Apple TV Hacks.

]]>
https://www.appletvhacks.net/2011/01/21/how-to-install-xbmc-on-apple-tv-2/feed/ 95
Seas0nPass Troubleshooting Tips https://www.appletvhacks.net/2011/01/19/seas0npass-troubleshooting-tips/ https://www.appletvhacks.net/2011/01/19/seas0npass-troubleshooting-tips/#comments Wed, 19 Jan 2011 14:24:54 +0000 https://www.appletvhacks.net/?p=908 Firecore has just posted a few notes for those having trouble using Seas0nPass to jailbreak the Apple TV 2. Here are the tips: 1. Some users have reported issues with ‘wifi sync’ enabled. Disabling this (if currently in use) seems...

The post Seas0nPass Troubleshooting Tips appeared first on Apple TV Hacks.

]]>
SeasOnPass Apple TV 2 JailbreakFirecore has just posted a few notes for those having trouble using Seas0nPass to jailbreak the Apple TV 2.

Here are the tips:

1. Some users have reported issues with ‘wifi sync’ enabled. Disabling this (if currently in use) seems to resolve a number of issues related to restoring in iTunes.

2. If you’re getting errors when creating the IPSW, please try the fix found here: https://forum.firecore.com/topic/3761#comment-13581

3. During the JB/restore process, once the Apple TV is put into DFU mode a special script takes over to automate the iTunes restore process. This process can be interrupted if you click away from the iTunes window before the actual restore has begun. Once the AppleTV restore (in iTunes) is underway it is ok to click away from the iTunes window. Update: This process will be improved in the next version of Seas0nPass.

4. When performing a tethered boot timing seems to be important. You will want to ensure the power cable is not connected until you get the rapid flashing light. Also, the HDMI cable needs to be connected promptly once the tethered boot process is complete, and before the white light on the AppleTV stops flashing.

5. The bug relating to the AppleTV forgetting wireless networks has been a known issue in all AppleTV jailbreaks to this point. Update: The wifi bug was partially fixed in 0.6.6. The AppleTV will automatically rejoin networks after a full restart, however the wireless network may still drop off when returning from an extended sleep. We’re currently looking into a more complete fix.

Note: If after all this you’re still having trouble please open a support ticket and send us the Seas0nPass log file found at: ~/Library/Logs/SP_Debug.log.

[source: Firecore]

You may also want to read
How to jailbreak Apple TV 2 on iOS 4.2.1 with Seas0nPass
How-To: Jailbreak Apple TV 2G on iOS 4.2.1 with PwnageTool
AirFlick Streams Non-iTunes Data to Apple TV 2 (video)

The post Seas0nPass Troubleshooting Tips appeared first on Apple TV Hacks.

]]>
https://www.appletvhacks.net/2011/01/19/seas0npass-troubleshooting-tips/feed/ 3