Instructions:
1) Install the applications
sudo apt-get install mc nano git2) DNS Configuration
Execute
sudo rm /etc/resolv.conf
sudo nano /etc/resolv.confSpecify the following settings
nameserver 127.0.0.53
options edns0 trust-ad
ndots:1
search .3) Download the script
git clone https://github.com/bayrell-os/cloud_os
cd cloud_os4) Execute
bash cloud_os.shWait for the installation script to complete. It will also ask you to enter the administrator login, and at the end it will create and display it on the screen.
5) Add the cloud OS to autostart
Create a file via the command
sudo nano /etc/rc.localWrite the following commands in it:
#!/bin/bash
for i in $(seq 0 1); do
sleep 10
docker start cloud_os_standard
doneSet the execute flag for this file
sudo chmod +x /etc/rc.local6) Add the ubuntu user to the docker group
sudo usermod -a -G docker ubuntu7) Reboot the server
sudo init 68) Installation is complete!