From 87e84ddc65dbb61d2aa4f4cdf09ec7d27a99ea5d Mon Sep 17 00:00:00 2001 From: Tianyu Liu Date: Thu, 15 Aug 2019 21:53:08 +0200 Subject: [PATCH] Add first versions --- Readme.md | 1 + Ubuntu/install_steps.md | 4 ++++ Ubuntu/package_install.sh | 10 ++++++++++ 3 files changed, 15 insertions(+) create mode 100644 Readme.md create mode 100644 Ubuntu/install_steps.md create mode 100755 Ubuntu/package_install.sh diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..b6fe20a --- /dev/null +++ b/Readme.md @@ -0,0 +1 @@ +This is just a repository to store the steps for me to install my useful packages. diff --git a/Ubuntu/install_steps.md b/Ubuntu/install_steps.md new file mode 100644 index 0000000..b6a7cd7 --- /dev/null +++ b/Ubuntu/install_steps.md @@ -0,0 +1,4 @@ +# Install steps for Ubuntu system + +# Give sudo privilege to current user +run `sudo visudo` and add user to sudo group diff --git a/Ubuntu/package_install.sh b/Ubuntu/package_install.sh new file mode 100755 index 0000000..506fd30 --- /dev/null +++ b/Ubuntu/package_install.sh @@ -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