Skip to content

Instantly share code, notes, and snippets.

View cialu's full-sized avatar

CIALU cialu

View GitHub Profile
@cialu
cialu / post_install.sh
Created December 12, 2016 12:59 — forked from waleedahmad/post_install.sh
Ubuntu post installation script for installing software of your choice.
#!/bin/bash
#Become master of the everything within this host
[ `whoami` = root ] || exec su -c $0 root
#Update and Upgrade
echo "Updating and Upgrading"
apt-get update && sudo apt-get upgrade -y
sudo apt-get install dialog