Run the Bots on Linux
Run the bots on a Linux VPS - thanks Ingo ๐
Last updated
Run the bots on a Linux VPS - thanks Ingo ๐
Last updated
Linux VPS or cheaper than windows VPS, hence it is a good choice to use a Linux VPS for running bots 24/7. If you are new to see, watch one or two Youtube tutorials and you are good to go and you have a cheaper solution.
wine
optional: tmux
>>> lscpu
>>> sudo apt install wine64
or
>>> sudo apt install wine32
Check wine version:
>>> wine --version
Add i386 architecture before installing 64-bit version:
>>> sudo dpkg --add-architecture i386
WineHQ signing key:
>>> cd /tmp
>>> wget -nc https://dl.winehq.org/wine-builds/winehq.key
>>> sudo mv winehq.key /usr/share/keyrings/winehq-archive.k
Add WineHQ repository:
>>> wget -nc https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/winehq-jammy.sources
>>> sudo mv winehq-jammy.sources /etc/apt/sources.list.d/
Update package list:
>>> apt update
Install wine:
>>> sudo apt install --install-recommends winehq-stable
Check wine version:
>>> wine --version
Start bot:
>>> wine PumpBot.exe
>>> sudo apt-get install tmux
>>> tmux new -s session_name
>>> wine PumpBot.exe
Press "CTRL+B" followed by "D"
>>> tmux attach -t session_name
Just create multiple sessions and you are able to run different Bots on the same Linux VPS