Moved files and created cpl workspace

This commit is contained in:
2021-10-04 10:49:34 +02:00
parent e68bd9b8be
commit 995a80cfe3
66 changed files with 338 additions and 36 deletions

View File

@@ -0,0 +1,6 @@
#!/bin/bash
first_install() {
echo 'Installing useful apps'
apt-get install net-tools dnsutils nano htop iftop tree zip unzip curl wget sudo -y
}

View File

@@ -0,0 +1,10 @@
#!/bin/bash
update() {
echo 'Starting update:'
sudo apt-get update -y
echo 'Starting upgrade:'
sudo apt-get upgrade -y
echo 'Starting dist-upgrade:'
sudo apt-get dist-upgrade -y
}