Official Website: https://egem.io/ Discord Chat: http://discord.egem.io/ Network Explorer: http://network.egem.io/ Block Explorer: https://explorer.egem.io/home Webwallet: https://myegemwallet.com/
This script is to install a Ethergem node on your own vps. It has been testing on a $5 Linode VPS. A video of how to use this script can be found at https://youtu.be/vLSzmF758Kk https://github.com/TeamEGEM/EGEM-node-install cd ~/ nano setup.sh paste the setup.sh from github into this new file exit nano by pressing control + x press Y to save
next we need to make the script executable. So run the following command.
chmod +x setup.sh
Now we are ready to run the script. During the install process there will be minimal interaction needed.
To execute the start or the script run the following command.
source setup.sh; step1
The script is a 2 part processes. Once the first part is complete you will be prompted to execute a secind command.
source setup.sh; step2
During the step 2 process you will be promted to type in some details for your node.
Node Name and Contact Details.
During the Step2 of the install process there is a 5 min sleep before activiating the node on the Net- Intelligence page. It is a not so fool proof way of allowing the new node to catch up to the current block/ sync. After the instalation is complete you will be prompted with a complete message an the network.egem.io link. If all went well when you visit the page you should see your newly created node on the page.
* Note after setup if you notice that your node is red it could be due to not being fully sysnced with the current block height. Give it a few min to catch up and you should be good to go. If you have any trouble feel free to ask for help on the Official Egem discord.
Share this recording
Link
Append ?t=30
to start the playback at 30s, ?t=3:20
to start the playback at 3m 20s.
Embed image link
Use snippets below to display a screenshot linking to this recording.
Useful in places where scripts are not allowed (e.g. in a project's README file).
HTML:
Markdown:
Embed the player
If you're embedding on your own page or on a site which permits script tags, you can use the full player widget:
Paste the above script tag where you want the player to be displayed on your page.
See embedding docs for additional options.
Download this recording
You can download this recording in asciicast v2 format, as a .cast file.
DownloadReplay in terminal
You can replay the downloaded recording in your terminal using the
asciinema play
command:
asciinema play 181577.cast
If you don't have asciinema CLI installed then see installation instructions.
Use with stand-alone player on your website
Download asciinema player from
the releases page
(you only need .js
and .css
file), then use it like this:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="asciinema-player.css" />
</head>
<body>
<div id="player"></div>
<script src="asciinema-player.min.js"></script>
<script>
AsciinemaPlayer.create(
'/assets/181577.cast',
document.getElementById('player'),
{ cols: 139, rows: 47 }
);
</script>
</body>
</html>
See asciinema player quick-start guide for full usage instructions.
Generate GIF from this recording
While this site doesn't provide GIF conversion at the moment, you can still do it yourself with the help of asciinema GIF generator utility - agg.
Once you have it installed, generate a GIF with the following command:
agg https://asciinema.org/a/181577 demo.gif
Or, if you already downloaded the recording file:
agg demo.cast demo.gif
Check agg --help
for all available options. You can change font
family and size, select color theme, adjust speed and more.
See agg manual for full usage instructions.