Run LoadTeam as a systemd service, or in headless or console mode, straight from the binary – no install script.
Prefer the guided setup? Use install.sh instead.
./LoadTeam – normal app window (interactive)./LoadTeam --mode console – live progress in the terminal./LoadTeam --mode headless – hidden background process./LoadTeam --mode service – systemd service (needs root to install)
The tarball contains the LoadTeam binary and everything it needs. You can
ignore install.sh and run the binary directly:
tar xzf LoadTeam_Linux.tar.gz cd loadteam chmod +x LoadTeam
The non-interactive modes can't prompt for your secret key, so set it first in
LoadTeam.ini next to the binary (copy LoadTeam.sample.ini):
apikey=YOUR_SECRET_KEY
Alternatively pass --api-key YOUR_SECRET_KEY on the command line.
Registers a system service that starts at boot and runs regardless of who is logged in.
This needs root, so run it with sudo:
sudo ./LoadTeam --mode service --install sudo systemctl enable --now loadteam
To stop and remove the service later:
sudo ./LoadTeam --mode service --uninstall
The unit is named loadteam. Check it with
systemctl status loadteam and follow logs with
journalctl -u loadteam -f.
Run LoadTeam under your own account instead of as a service – hidden (headless) or with live progress in the terminal (console):
./LoadTeam --mode headless ./LoadTeam --mode console
For an unattended box, run headless inside tmux/screen, or wire
up your own per-user systemd unit (systemctl --user).
Need your secret key? It's on your account page.