Linux Setup
Download and Setup
After you ssh into your VPS, create a directory for your copybot
mkdir copybot
cd copybotIf you do not have wget installed, please install it
sudo apt update
sudo apt install wgetNext, you can use wget to download the copybot. Make sure to get the latest version!
wget https://sourceforge.net/projects/simply-copy-bot/files/simply-copybot-1.2.0-lin.zipIf you don't have unzip, install it and unzip the bot.
sudo apt update
sudo apt install unzip
unzip simply-copybot-1.2.0-lin.zipType ls -a to confirm the contents of the file
ls -aYou should see the following files unzipped into your copybot folder:
simply-copybot
.env.example
copy_wallets.yaml.exampleCreate a copy of each of the example files. Refer to the Configuration Guide for instructions on how to configure the bot.
Change the permissions so that you can execute the copybot:
To run the copybot, simply type:
Running Copybot in the Background
When running a bot or any long-running process on a remote server via SSH, you want the process to continue even after disconnecting.
1. Using tmux (Recommended)
tmux (Recommended)tmux is a terminal multiplexer that allows you to create and manage persistent terminal sessions.
Steps:
Start a
tmuxsession:
This creates a new session named copybot.
Run the bot: Inside the
tmuxsession, run your command to start the bot, e.g.:
Detach from the session: Press
Ctrl+B, thenDto detach from thetmuxsession. The bot will continue running in the background.Reattach to the session (if needed): Reconnect to the session to check the bot's status:
List active sessions: If you forget the session name, list all active sessions:
Last updated