Skip to content

Instantly share code, notes, and snippets.

View arslan-ahmad's full-sized avatar
🎯
Focusing

Arslan Ahmad arslan-ahmad

🎯
Focusing
View GitHub Profile
@arslan-ahmad
arslan-ahmad / ubuntuEssentials.sh
Last active March 22, 2019 10:20
This gist file will allow you to Install Google Chrome, Skype and VLC all together with one bash script
#!/bin/bash
# install google chrome
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i --force-depends google-chrome-stable_current_amd64.deb
sudo apt-get install -f
sudo rm -rf google-chrome-stable_current_amd64.deb
#install skype
@arslan-ahmad
arslan-ahmad / INSTALL.md
Created August 3, 2018 15:22 — forked from arya-oss/INSTALL.md
Ubuntu 16.04 Developer Tools installation

Ubuntu 16.04 Developer Tools Installation

First things first !

sudo apt update
sudo apt upgrade

Standard Developer Tools

sudo apt-get install build-essential git
@arslan-ahmad
arslan-ahmad / ns3-dependencies.sh
Last active April 10, 2019 12:55
A bash file for installing ns-3 dependencies in Ubuntu 14.04 and 16.04
#!/bin/bash
echo "Installing python 2.7.15"
sudo apt-get update
sudo apt-get install build-essential checkinstall
sudo apt-get install libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev
cd /usr/src
sudo wget https://www.python.org/ftp/python/2.7.15/Python-2.7.15.tgz
sudo tar xzf Python-2.7.15.tgz
cd Python-2.7.15
sudo ./configure --enable-optimizations
@arslan-ahmad
arslan-ahmad / ryu-ns3-integration.sh
Created April 9, 2019 09:43
Bash file for the integrated installation of the ns-3 with Ryu controller
#!/bin/bash
echo "Installing dependencies"
sudo apt-get install autoconf libtool build-essential pkg-config libevent-dev libssl-dev -y
sudo apt-get install libboost-dev libpcap-dev libxerces-c2-dev libpcre3-dev libdb-dev libexpat-dev flex bison cmake
sudo apt-get install libreadline-dev texinfo -y
pip install Cython -y
sudo apt-get install openjdk-7-jdk libX11-dev libxext-dev libxtst-dev libxt-dev libcups2-dev libasound2-dev ccache -y
echo "Get Bake"
hg clone http://code.nsnam.org/bake bake