Linux Installation
Prerequisites
Docker Engine
- Install Docker Engine following the official installation guide
- Start Docker service:
sudo systemctl start docker sudo systemctl enable docker - Add user to docker group (optional, avoids using sudo):
sudo usermod -aG docker $USERLog out and back in for changes to take effect
X Server
Most Linux distributions come with X11 pre-installed. If you need to install it:
- Ubuntu/Debian:
sudo apt install xorg - Fedora/RHEL:
sudo dnf install xorg-x11-server-Xorg(or yum) - Arch:
sudo pacman -S xorg-server
Option 1: Desktop App
Download the pre-built desktop application for your Linux distribution from the Latest Release:
| Format | Download |
|---|---|
| AppImage | TI-Toolbox-{version}.AppImage |
| Debian/Ubuntu | TI-Toolbox-{version}.deb |
Simply download and run the AppImage, or install the .deb package — the app handles Docker management for you.
Option 2: Command Line
Setup Steps
Step 1: Download Required Files
Download these files to your preferred location (e.g., ~/TI-Toolbox/):
Step 2: Launch TI-Toolbox
- Open Terminal
- Navigate to your download location:
cd ~/TI-Toolbox/ - Make loader.sh executable:
chmod +x loader.sh - Ensure Docker is running:
sudo systemctl status docker - Launch TI-Toolbox:
./loader.sh - First run will download Docker images (~30GB) - this may take 30+ minutes
Distribution-Specific Notes
Ubuntu/Debian
- Follow standard Docker installation instructions
- X11 is usually pre-installed
Currently tested primarily on Ubuntu. Please submit an issue if you encounter problems on other distributions.