restore files

This commit is contained in:
Cristi Ene 2021-10-07 14:17:23 +03:00
parent a10ef5848b
commit fd77df017c
2 changed files with 43 additions and 35 deletions

53
Vagrantfile vendored
View File

@ -12,10 +12,7 @@ Vagrant.configure("2") do |config|
# Every Vagrant development environment requires a box. You can search for # Every Vagrant development environment requires a box. You can search for
# boxes at https://vagrantcloud.com/search. # boxes at https://vagrantcloud.com/search.
# config.vm.box = "bento/ubuntu-16.04" config.vm.box = "ubuntu/xenial64"
config.vm.box = "ubuntu/impish64"
# config.vm.box = "ubuntu/xenial64"
# Disable automatic box update checking. If you disable this, then # Disable automatic box update checking. If you disable this, then
# boxes will only be checked for updates when the user runs # boxes will only be checked for updates when the user runs
@ -34,7 +31,7 @@ Vagrant.configure("2") do |config|
# config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1" # config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1"
# Create a private network, which allows host-only access to the machine # Create a private network, which allows host-only access to the machine
# using a specific IP # using a specific IP.
# config.vm.network "private_network", ip: "192.168.33.10" # config.vm.network "private_network", ip: "192.168.33.10"
# Create a public network, which generally matched to bridged network. # Create a public network, which generally matched to bridged network.
@ -42,7 +39,7 @@ Vagrant.configure("2") do |config|
# your network. # your network.
config.vm.network "public_network" config.vm.network "public_network"
# config.ssh.forward_x11 = true config.ssh.forward_x11 = true
config.ssh.forward_agent = true config.ssh.forward_agent = true
# Share an additional folder to the guest VM. The first argument is # Share an additional folder to the guest VM. The first argument is
@ -50,6 +47,7 @@ Vagrant.configure("2") do |config|
# the path on the guest to mount the folder. And the optional third # the path on the guest to mount the folder. And the optional third
# argument is a set of non-required options. # argument is a set of non-required options.
# config.vm.synced_folder "../data", "/vagrant_data" # config.vm.synced_folder "../data", "/vagrant_data"
config.vm.synced_folder ".", "/vagrant_data"
# Provider-specific configuration so you can fine-tune various # Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options. # backing providers for Vagrant. These expose provider-specific options.
@ -58,14 +56,14 @@ Vagrant.configure("2") do |config|
config.vm.provider "virtualbox" do |vb| config.vm.provider "virtualbox" do |vb|
# Display the VirtualBox GUI when booting the machine # Display the VirtualBox GUI when booting the machine
# vb.gui = true # vb.gui = true
# vb.customize [ # vb.customize [
# "modifyvm", :id, # "modifyvm", :id,
# "--audio", "coreaudio", # "--audio", "coreaudio",
# "--audiocontroller", "hda" # "--audiocontroller", "hda"
# ] # ]
# Customize the amount of memory on the VM: # Customize the amount of memory on the VM:
vb.memory = "1024" vb.memory = "2024"
end end
# #
# View the documentation for the provider you are using for more # View the documentation for the provider you are using for more
@ -74,15 +72,22 @@ Vagrant.configure("2") do |config|
# Enable provisioning with a shell script. Additional provisioners such as # Enable provisioning with a shell script. Additional provisioners such as
# Ansible, Chef, Docker, Puppet and Salt are also available. Please see the # Ansible, Chef, Docker, Puppet and Salt are also available. Please see the
# documentation for more information about their specific syntax and use. # documentation for more information about their specific syntax and use.
config.vm.provision "shell", inline: <<-SHELL # config.vm.provision "shell", inline: <<-SHELL
apt-get update # apt-get update
apt install docker.io # apt-get install -y apache2
systemctl enable --now docker # SHELL
systemctl status docker
sudo groupadd docker # config.vm.provision "shell", inline: <<-SHELL
sudo usermod -aG docker $USER # sudo apt-get update
docker --version # sudo apt-get -y install dkms
docker run hello-world
SHELL # #https://wiki.ubuntu.com/Audio/UpgradingAlsa/DKMS
# config.vm.provision "shell", path: "install.sh", privileged: true # wget http://ppa.launchpad.net/ubuntu-audio-dev/alsa-daily/ubuntu/pool/main/o/oem-audio-hda-daily-dkms/oem-audio-hda-daily-dkms_0.201509251532~ubuntu14.04.1_all.deb
end # sudo dpkg -i oem-audio-hda-daily-dkms_0.201509251532~ubuntu14.04.1_all.deb
# rm oem-audio-hda-daily-dkms_0.201509251532~ubuntu14.04.1_all.deb
# sudo apt-get -y install python-dev ipython python-numpy python-matplotlib python-scipy cython alsa-utils paman
# sudo usermod -a -G audio vagrant
# SHELL
config.vm.provision "shell", path: "install.sh", privileged: true
end

View File

@ -5,15 +5,18 @@ apt-get -qq update
apt-get install -y build-essential apt-get install -y build-essential
apt-get install -y curl apt-get install -y curl
apt-get install -y python-minimal apt-get install -y python-minimal
curl -sL https://deb.nodesource.com/setup_8.x | bash
apt-get install -y nodejs
apt install -y alsa-utils
apt-get install -y libasound2-dev
npm i -g node-gyp
apt install -y alsa-base pulseaudio
mkdir simulator # install node 8
cp -r /vagrant/* ~/simulator/ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
cd simulator nvm install v8.17.0
sudo chmod -R 755 *
sudo chown -R vagrant:vagrant * # add node 8 for all users
sudo ln -s "$NVM_DIR/versions/node/$(nvm version)/bin/node" "/usr/local/bin/node"
sudo ln -s "$NVM_DIR/versions/node/$(nvm version)/bin/npm" "/usr/local/bin/npm"
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:.