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

1
Readme.md Normal file
View File

@@ -0,0 +1 @@
This is just a repository to store the steps for me to install my useful packages.

4
Ubuntu/install_steps.md Normal file
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
Ubuntu/package_install.sh Executable file
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