Add first versions

This commit is contained in:
2019-08-15 21:53:08 +02:00
commit 87e84ddc65
3 changed files with 15 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
# Install steps for Ubuntu system
# Give sudo privilege to current user
run `sudo visudo` and add user to sudo group
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
# Run sys update and upgrade
sudo apt update && sudo apt upgrade
# Install git
sudo apt install git
# Install gcc & g++ & cmake
sudo apt install gcc g++ cmake