A couple of questions about the guide , these are from a Windows user perspective , very little Linux experience . There are certain key commands that i do not understand .
First i get to here .
chmod 777 babyd
./babyd
ctrl+c out
what do i press ? ctrl+c out . Is out ESC ?
I then get stuck here .
vi /root/.baby/baby.conf
What keys to save the changes in VI then exit ?
I also need commands to check it is then running ok in the VPS .
I also now get :~/BABYCHAIN-Linuxdaemon-64bit# ./babyd
-bash: ./babyd: cannot execute binary file: Exec format error
When you run the command ./babyd, it runs in the foreground (takes over the terminal window). If you hit ctrl+c (or ^c), it causes babyd to exit. You are getting 'out' of the app.
When in vi, esc takes to you to the command mode. You can quit by :q or save and quit with ZZ
Google simple vi commands to get you through editing.
Or you can use nano 'nano /root/.baby/baby.conf' which is a little more user friendly.