If you have multiple Folk nodes on the same WiFi network and you want to SSH into
You can set a Bash variable called FOLK_SHARE_NODE
to the string folk-convivial
in several ways:
bash export FOLK_SHARE_NODE="folk-convivial"
.bashrc
(Linux) or .bash_profile
(macOS) file in a text editor. You can use nano
or vim
for this. bash nano ~/.bashrc # for Linux nano ~/.bash_profile # for macOS
bash export FOLK_SHARE_NODE="folk-convivial"
bash source ~/.bashrc # for Linux source ~/.bash_profile # for macOS
~/.profile
file. bash nano ~/.profile
bash export FOLK_SHARE_NODE="folk-convivial"
source ~/.profile
.
By following these steps, you’ll be able to set the FOLK_SHARE_NODE
Bash variable to the desired value either temporarily or permanently.