Partial content of this post won’t be showed public on this blog. I will generally talking about how I organized my experiment and how I did such a work. As for data and observation, I will create a google docs for it. However, I will also give precise conclusion of my experiments.

Google Docs

Used Command

Solve Android Read_Only Issue
mount -o rw,remount /system
mount -o ro,remount /system
Using tc to limit bandwidth on host server
# Apply speed limits
sudo tc qdisc add dev {DEV_NAME} handle 1: root htb default 11
sudo tc class add dev {DEV_NAME} parent 1: classid 1:1 htb rate 1kbit
sudo tc class add dev {DEV_NAME} parent 1:1 classid 1:11 htb rate 1kbit

# Delete limitation profile
sudo tc qdisc del dev {DEV_NAME} root