windows vps is to expensive just for herdnode, so I want to get cheap Linux vps but I cannot find a goat Linux wallet, can someone point me in the direction of one please
You can compile linux wallet from source as below
sudo apt-get install git dh-autoreconf build-essential libboost-all-dev libssl-dev libdb5.1++-dev
--Enable SWAP if RAM is less than 2GB--
sudo dd if=/dev/zero of=/swapfile bs=1024 count=2048k
sudo mkswap /swapfile
sudo chown root:root /swapfile
sudo chmod 0600 /swapfile
sudo swapon /swapfile
sudo nano /etc/fstab
Add the following line to the end of the file
/swapfile swap swap defaults 0 0
------
---install secp256k1 ---
git clone
https://github.com/bitcoin/secp256k1.gitcd secp256k1
./autogen.sh
./configure
make
sudo make install
LD_LIBRARY_PATH=/usr/local/lib
export LD_LIBRARY_PATH
save the above 2 lines in ~/.bashrc so that LD_LIBRARY_PATH will be exported every time you login
---------
---Compile goatd---
git clone
https://bitbucket.org/legoat/goat.gitcd goat/src
mkdir obj/crypto
chmod +x leveldb/build_detect_platform
make -f makefile.unix USE_UPNP=-
sudo cp goatd /usr/bin
------