Quick Guide to Install TorrServer (ARM64) on Debian
- Open Terminal: Start by opening a terminal on your Debian server.
mkdir -p /opt/torrserver - Download TorrServer: Download the ARM64 version of TorrServer using
wget
:wget https://github.com/YouROK/TorrServer/releases/download/MatriX.126/TorrServer-linux-arm64 -O /opt/torrserver/torrserver
- Set Execution Permissions: Grant execution permission to the downloaded file:
chmod +x /opt/torrserver/torrserver
- Create Systemd Service: Create a new systemd service file:
nano /etc/systemd/system/torrserver.service
In the editor, add the following configuration:[Unit]
Description=TorrServer
After=network.target
[Service]
Type=simple
ExecStart=/opt/torrserver/torrserver -d /opt/torrserver -p 8090
User=root
Restart=on-failure
[Install]
WantedBy=multi-user.target
- Reload Systemd: Apply the new configuration by reloading systemd:
systemctl daemon-reload
- Start TorrServer Service: Start the TorrServer service:
systemctl start torrserver.service
- Enable Auto-start on Boot: Enable the service to start automatically on boot:
systemctl enable torrserver.service
- Verify Service Status: Check that the service is running correctly:
systemctl status torrserver.service
This process will install and run TorrServer on your ARM64 Debian system. Remember to adjust paths and settings according to your system’s configuration.