create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| #!/bin/sh | |
| # update repositories | |
| curl -sL https://deb.nodesource.com/setup_10.x | bash - | |
| apt-get update | |
| # download the necessary prerequisite components for mineos | |
| apt-get -y install nodejs supervisor git rdiff-backup screen build-essential default-jre-headless | |
| # download the most recent mineos web-ui files from github |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"