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
| #!/usr/bin/env bash | |
| domain= | |
| token= | |
| library=$1 | |
| refPath=$2 | |
| libIndex=-1 | |
| echoerr() { echo "$@" 1>&2; } |
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
| # 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 |
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
| import errno | |
| import os | |
| import shutil | |
| directory = None | |
| destDir = None | |
| while not directory: | |
| target = input("Directory to look in: ") | |
| if os.path.exists(target): |
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
| #### metriics changes (Aug 27, 2022) #### | |
| The .sh version now checks the working directory for the avctKVM.jar as well as the required libs and will download them from the host if not present. It can do so on both Linux and macOS and _should_ download the correct libs automatically but I've only tested on macOS. | |
| You still need to grab the jre folder but you can get it from your java install, I got mine from my openJDK@8 install through brew from Mac. | |
| Note: A known issue right now is the Virtual Console complaining about a missing library for keyboard and mouse but it works fine without it so I haven't put the time in to try and fix it. You should be able to safely ignore it. | |
| #### ORIGINAL #### | |
| Use this as an example on how to start the virtual console without the need of Java Web Start or accessing it from the web interface. | |
| You can use the user and password that you use for the web interface. |