Belena CLI on Linux Mint (Peppermint)

Hi everyone. I’m new to the forums and fairly new to raspberry.
I am in the process of running Belenasound on multiple raspberry pis and am blocked at Belena CLI. Its asking me to copy it to Path on my Linux Mint.
My question is: how do I add the belena-cli folder to the system’s PATH environment variable?

This may sound like a simple task for most but not myself.

Hi, can you try solutions from this linux mint forum post?

Hey Karaxuna. Thanks for the quick response. I am very new to linux and modifying things within.
Is there any link or forum that includes any step by step. I’m too visual.
My unzipped folder needs to be added, in its totallity, to PATH on my linux Peppermint.
I found a video for Windows but because my computer is so old i am running linux.
Thanks again.

Hello,
To add a folder to the PATH of your current terminal, just run:
export PATH=$PATH:/path/to/dir
So if balena-cli is in /home/username/balena-cli, run export PATH=$PATH:/home/username/balena-cli

If you want this change to be permanent, you need to edit the .bashrc file in your home folder and add this:
PATH=$PATH:/home/username/balena-cli (adapt this to use the correct folder)