18 lines
495 B
Bash
18 lines
495 B
Bash
echo "Configure box for simulator"
|
|
|
|
apt-get update
|
|
apt-get -qq update
|
|
apt-get install -y build-essential
|
|
apt-get install -y curl
|
|
apt-get install -y python-minimal
|
|
# curl -sL https://deb.nodesource.com/setup_8.x | bash
|
|
# apt-get install -y nodejs
|
|
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
|
|
nvm install v8.17.0
|
|
|
|
sudo apt install -y alsa-utils
|
|
sudo apt-get install -y libasound2-dev
|
|
sudo npm i -g node-gyp
|
|
|
|
# mkdir simulator
|
|
# scp -P 2222 ./ vagrant@127.0.0.1:. |