echo >Vagrantfile <<EOF
Vagrant.configure("2") do |config|
config.vm.box = "centos/7"
config.vm.provider "virtualbox" do |v|
v.memory = 8192
v.cpus = 2
end
config.vm.network "private_network", ip: "192.168.33.10"
On Fedora 31 Install Vagrant
sudo dnf install vagrant
https://app.vagrantup.com/centos/boxes/7 https://www.vagrantup.com/docs/providers/basic_usage.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Gnome Boxes: | |
| - Installed on windows guest: https://www.spice-space.org/download.html | |
| - installed on ubuntu guest: apt-get install qemu-guest-agent | |
| Installed FS-UAE | |
| ``` | |
| cd /etc/yum.repos.d/ | |
| wget http://download.opensuse.org/repositories/home:FrodeSolheim:stable/Fedora_30/home:FrodeSolheim:stable.repo | |
| yum install fs-uae fs-uae-launcher fs-uae-arcade kernel-modules-extra | |
| ``` | |
| - Disabled Wayland |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dnf remove docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate docker-logrotate docker-selinux docker-engine-selinux docker-engine | |
| dnf -y install dnf-plugins-core | |
| dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo | |
| dnf install docker-ce docker-ce-cli containerd.io | |
| cd /var/lib/ | |
| mv docker /media/win81/Users/nicola/Documents/Docker/ | |
| ln -s /media/win81/Users/nicola/Documents/Docker/docker | |
| systemctl daemon-reload |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://www.rosehosting.com/blog/how-to-install-nextcloud-14-on-debian-9/ | |
| sudo dd bs=4M if=/home/nicolascendoni/Scaricati/bionic-lxde-rock64-0.8.3-1141-armhf.img of=/dev/mmcblk0 conv=fsyncdefault user: rock64/rock64 | |
| sudo -s | |
| mkdir /media/disk1 | |
| apt update | |
| apt -y upgrade | |
| apt-get install apache2 mariadb-server libapache2-mod-php7.2 | |
| apt-get install php7.2-gd php7.2-json php7.2-mysql php7.2-curl php7.2-mbstring |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| while [ true ]; | |
| do | |
| if ping -q -c 1 -W 1 8.8.8.8 >/dev/null; then | |
| echo `date` "IPv4 is up" | |
| else | |
| echo `date` "IPv4 is down" | |
| fi | |
| sleep 1 |
I started from a Ubuntu 16.04 host provided by Digital Ocean. I used the cheapes (0.007 USD/hour). I installed the required packages:
sudo apt update
sudo apt install -y unzip
#Packages metioned in gimmearos.sh
sudo apt install -y subversionNewerOlder