Skip to content

Instantly share code, notes, and snippets.

View Fastbyte01's full-sized avatar
:octocat:
Focusing

Giuseppe Pignataro Fastbyte01

:octocat:
Focusing
View GitHub Profile
@gerarldlee
gerarldlee / Ubuntu 16.04 for Development.md
Last active March 15, 2021 11:01
Development Setup on Ubuntu 16.04 Linux
@waleedahmad
waleedahmad / post_install.sh
Last active April 12, 2024 14:49
Ubuntu post installation script for installing software of your choice.
#!/bin/bash
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root"
exit 1
else
#Update and Upgrade
echo "Updating and Upgrading"
apt-get update && sudo apt-get upgrade -y
# Android SDK setup
## Install Java
```bash
sudo apt-get update
sudo dpkg --add-architecture i386
sudo apt-get install libbz2-1.0:i386
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1
sudo apt-get install openjdk-8-jdk openjdk-8-jre