Linux Instructions - CryptoGnome/Degen-Bot GitHub Wiki
Instructions for Ubuntu 18.04 amd64
(This works headless, but you have to have an x-forwarder or a vnc session to setup wine for the first time)
sudo apt-get update && sudo apt-get dist-upgrade
sudo reboot now
sudo dpkg --add-architecture i386
wget -nc https://dl.winehq.org/wine-builds/winehq.key
sudo apt-key add winehq.key && rm winehq.key
sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main'
sudo apt install winbind screen unzip
cd ~/Degen-Bot && wine Degen-Bot.exe
screen command: screen -dmS Degen-Bot bash -c 'cd ~/Degen-Bot && wine Degen-Bot.exe'
Here's a systemd startup script for automatic restarts after crashes and start up boot
# /etc/systemd/system/Degen-Bot.service
[Unit]
Description=Degen-Bot
After=network.target
[Service]
Restart=on-failure
RestartSec=5
TimeoutSec=10
WorkingDirectory=/root/Degen-Bot
ExecStart=/usr/bin/wine Degen-Bot.exe
[Install]
WantedBy=multi-user.target