mirror of
https://github.com/CoderSherlock/CoderSherlock.github.io.git
synced 2026-06-13 08:08:10 -07:00
Research_Update
This commit is contained in:
@@ -72,12 +72,13 @@
|
|||||||
<div class="date">Sat, Aug 20, 2016</div>
|
<div class="date">Sat, Aug 20, 2016</div>
|
||||||
<div class="title"><a href="https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/">Rsync Experiment Towards X86 VS ARM</a></div>
|
<div class="title"><a href="https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/">Rsync Experiment Towards X86 VS ARM</a></div>
|
||||||
</header>
|
</header>
|
||||||
<div class="body"><p>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.</p>
|
<div class="body">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</div>
|
||||||
|
|
||||||
<p><a href="https://docs.google.com/a/binghamton.edu/document/d/1sCjsC1pXcfgECp3do2oySsG9kW7UZ3BTEXvDlau1vIE/edit?usp=sharing">Google Docs</a></p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<a href="https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/" class="btn btn-default">Read More…</a>
|
||||||
|
</footer>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
|
|||||||
@@ -16,9 +16,30 @@
|
|||||||
<pubDate>Sat, 20 Aug 2016 01:44:59 -0400</pubDate>
|
<pubDate>Sat, 20 Aug 2016 01:44:59 -0400</pubDate>
|
||||||
|
|
||||||
<guid>https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/</guid>
|
<guid>https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/</guid>
|
||||||
<description><p>Partial content of this post won&rsquo;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.</p>
|
<description>
|
||||||
|
|
||||||
|
<p>Partial content of this post won&rsquo;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.</p>
|
||||||
|
|
||||||
<p><a href="https://docs.google.com/a/binghamton.edu/document/d/1sCjsC1pXcfgECp3do2oySsG9kW7UZ3BTEXvDlau1vIE/edit?usp=sharing">Google Docs</a></p>
|
<p><a href="https://docs.google.com/a/binghamton.edu/document/d/1sCjsC1pXcfgECp3do2oySsG9kW7UZ3BTEXvDlau1vIE/edit?usp=sharing">Google Docs</a></p>
|
||||||
|
|
||||||
|
<h4 id="used-command">Used Command</h4>
|
||||||
|
|
||||||
|
<h5 id="solve-android-read-only-issue">Solve Android Read_Only Issue</h5>
|
||||||
|
|
||||||
|
<pre><code>mount -o rw,remount /system
|
||||||
|
mount -o ro,remount /system
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<h5 id="using-tc-to-limit-bandwidth-on-host-server">Using tc to limit bandwidth on host server</h5>
|
||||||
|
|
||||||
|
<pre><code># 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
|
||||||
|
</code></pre>
|
||||||
</description>
|
</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
|
|||||||
+5
-4
@@ -70,12 +70,13 @@
|
|||||||
<div class="date">Sat, Aug 20, 2016</div>
|
<div class="date">Sat, Aug 20, 2016</div>
|
||||||
<div class="title"><a href="https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/">Rsync Experiment Towards X86 VS ARM</a></div>
|
<div class="title"><a href="https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/">Rsync Experiment Towards X86 VS ARM</a></div>
|
||||||
</header>
|
</header>
|
||||||
<div class="body"><p>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.</p>
|
<div class="body">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</div>
|
||||||
|
|
||||||
<p><a href="https://docs.google.com/a/binghamton.edu/document/d/1sCjsC1pXcfgECp3do2oySsG9kW7UZ3BTEXvDlau1vIE/edit?usp=sharing">Google Docs</a></p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<a href="https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/" class="btn btn-default">Read More…</a>
|
||||||
|
</footer>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
|
|||||||
@@ -16,9 +16,30 @@
|
|||||||
<pubDate>Sat, 20 Aug 2016 01:44:59 -0400</pubDate>
|
<pubDate>Sat, 20 Aug 2016 01:44:59 -0400</pubDate>
|
||||||
|
|
||||||
<guid>https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/</guid>
|
<guid>https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/</guid>
|
||||||
<description><p>Partial content of this post won&rsquo;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.</p>
|
<description>
|
||||||
|
|
||||||
|
<p>Partial content of this post won&rsquo;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.</p>
|
||||||
|
|
||||||
<p><a href="https://docs.google.com/a/binghamton.edu/document/d/1sCjsC1pXcfgECp3do2oySsG9kW7UZ3BTEXvDlau1vIE/edit?usp=sharing">Google Docs</a></p>
|
<p><a href="https://docs.google.com/a/binghamton.edu/document/d/1sCjsC1pXcfgECp3do2oySsG9kW7UZ3BTEXvDlau1vIE/edit?usp=sharing">Google Docs</a></p>
|
||||||
|
|
||||||
|
<h4 id="used-command">Used Command</h4>
|
||||||
|
|
||||||
|
<h5 id="solve-android-read-only-issue">Solve Android Read_Only Issue</h5>
|
||||||
|
|
||||||
|
<pre><code>mount -o rw,remount /system
|
||||||
|
mount -o ro,remount /system
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<h5 id="using-tc-to-limit-bandwidth-on-host-server">Using tc to limit bandwidth on host server</h5>
|
||||||
|
|
||||||
|
<pre><code># 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
|
||||||
|
</code></pre>
|
||||||
</description>
|
</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
|
|||||||
@@ -71,7 +71,7 @@
|
|||||||
<meta itemprop="mainEntityOfPage" itemType="https://schema.org/WebPage" content="https://codersherlock.github.io/"/>
|
<meta itemprop="mainEntityOfPage" itemType="https://schema.org/WebPage" content="https://codersherlock.github.io/"/>
|
||||||
<meta itemprop="dateModified" content="2016-08-20T01:44:59-04:00">
|
<meta itemprop="dateModified" content="2016-08-20T01:44:59-04:00">
|
||||||
<meta itemprop="headline" content="Rsync Experiment Towards X86 VS ARM">
|
<meta itemprop="headline" content="Rsync Experiment Towards X86 VS ARM">
|
||||||
<meta itemprop="description" content="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">
|
<meta itemprop="description" content="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">
|
||||||
<meta itemprop="url" content="https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/">
|
<meta itemprop="url" content="https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/">
|
||||||
<div itemprop="image" itemscope itemtype="https://schema.org/ImageObject">
|
<div itemprop="image" itemscope itemtype="https://schema.org/ImageObject">
|
||||||
<meta itemprop="url" content="https://codersherlock.github.io/images/default.jpg" />
|
<meta itemprop="url" content="https://codersherlock.github.io/images/default.jpg" />
|
||||||
@@ -96,10 +96,31 @@
|
|||||||
</header>
|
</header>
|
||||||
|
|
||||||
<div class="article-body" itemprop="articleBody">
|
<div class="article-body" itemprop="articleBody">
|
||||||
<p>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.</p>
|
|
||||||
|
|
||||||
|
<p>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.</p>
|
||||||
|
|
||||||
<p><a href="https://docs.google.com/a/binghamton.edu/document/d/1sCjsC1pXcfgECp3do2oySsG9kW7UZ3BTEXvDlau1vIE/edit?usp=sharing">Google Docs</a></p>
|
<p><a href="https://docs.google.com/a/binghamton.edu/document/d/1sCjsC1pXcfgECp3do2oySsG9kW7UZ3BTEXvDlau1vIE/edit?usp=sharing">Google Docs</a></p>
|
||||||
|
|
||||||
|
<h4 id="used-command">Used Command</h4>
|
||||||
|
|
||||||
|
<h5 id="solve-android-read-only-issue">Solve Android Read_Only Issue</h5>
|
||||||
|
|
||||||
|
<pre><code>mount -o rw,remount /system
|
||||||
|
mount -o ro,remount /system
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<h5 id="using-tc-to-limit-bandwidth-on-host-server">Using tc to limit bandwidth on host server</h5>
|
||||||
|
|
||||||
|
<pre><code># 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
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+5
-4
@@ -72,12 +72,13 @@
|
|||||||
<div class="date">Sat, Aug 20, 2016</div>
|
<div class="date">Sat, Aug 20, 2016</div>
|
||||||
<div class="title"><a href="https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/">Rsync Experiment Towards X86 VS ARM</a></div>
|
<div class="title"><a href="https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/">Rsync Experiment Towards X86 VS ARM</a></div>
|
||||||
</header>
|
</header>
|
||||||
<div class="body"><p>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.</p>
|
<div class="body">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</div>
|
||||||
|
|
||||||
<p><a href="https://docs.google.com/a/binghamton.edu/document/d/1sCjsC1pXcfgECp3do2oySsG9kW7UZ3BTEXvDlau1vIE/edit?usp=sharing">Google Docs</a></p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<a href="https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/" class="btn btn-default">Read More…</a>
|
||||||
|
</footer>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
|
|||||||
+22
-1
@@ -16,9 +16,30 @@
|
|||||||
<pubDate>Sat, 20 Aug 2016 01:44:59 -0400</pubDate>
|
<pubDate>Sat, 20 Aug 2016 01:44:59 -0400</pubDate>
|
||||||
|
|
||||||
<guid>https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/</guid>
|
<guid>https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/</guid>
|
||||||
<description><p>Partial content of this post won&rsquo;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.</p>
|
<description>
|
||||||
|
|
||||||
|
<p>Partial content of this post won&rsquo;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.</p>
|
||||||
|
|
||||||
<p><a href="https://docs.google.com/a/binghamton.edu/document/d/1sCjsC1pXcfgECp3do2oySsG9kW7UZ3BTEXvDlau1vIE/edit?usp=sharing">Google Docs</a></p>
|
<p><a href="https://docs.google.com/a/binghamton.edu/document/d/1sCjsC1pXcfgECp3do2oySsG9kW7UZ3BTEXvDlau1vIE/edit?usp=sharing">Google Docs</a></p>
|
||||||
|
|
||||||
|
<h4 id="used-command">Used Command</h4>
|
||||||
|
|
||||||
|
<h5 id="solve-android-read-only-issue">Solve Android Read_Only Issue</h5>
|
||||||
|
|
||||||
|
<pre><code>mount -o rw,remount /system
|
||||||
|
mount -o ro,remount /system
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<h5 id="using-tc-to-limit-bandwidth-on-host-server">Using tc to limit bandwidth on host server</h5>
|
||||||
|
|
||||||
|
<pre><code># 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
|
||||||
|
</code></pre>
|
||||||
</description>
|
</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
|
|||||||
@@ -72,12 +72,13 @@
|
|||||||
<div class="date">Sat, Aug 20, 2016</div>
|
<div class="date">Sat, Aug 20, 2016</div>
|
||||||
<div class="title"><a href="https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/">Rsync Experiment Towards X86 VS ARM</a></div>
|
<div class="title"><a href="https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/">Rsync Experiment Towards X86 VS ARM</a></div>
|
||||||
</header>
|
</header>
|
||||||
<div class="body"><p>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.</p>
|
<div class="body">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</div>
|
||||||
|
|
||||||
<p><a href="https://docs.google.com/a/binghamton.edu/document/d/1sCjsC1pXcfgECp3do2oySsG9kW7UZ3BTEXvDlau1vIE/edit?usp=sharing">Google Docs</a></p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<a href="https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/" class="btn btn-default">Read More…</a>
|
||||||
|
</footer>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
|
|||||||
+22
-1
@@ -16,9 +16,30 @@
|
|||||||
<pubDate>Sat, 20 Aug 2016 01:44:59 -0400</pubDate>
|
<pubDate>Sat, 20 Aug 2016 01:44:59 -0400</pubDate>
|
||||||
|
|
||||||
<guid>https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/</guid>
|
<guid>https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/</guid>
|
||||||
<description><p>Partial content of this post won&rsquo;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.</p>
|
<description>
|
||||||
|
|
||||||
|
<p>Partial content of this post won&rsquo;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.</p>
|
||||||
|
|
||||||
<p><a href="https://docs.google.com/a/binghamton.edu/document/d/1sCjsC1pXcfgECp3do2oySsG9kW7UZ3BTEXvDlau1vIE/edit?usp=sharing">Google Docs</a></p>
|
<p><a href="https://docs.google.com/a/binghamton.edu/document/d/1sCjsC1pXcfgECp3do2oySsG9kW7UZ3BTEXvDlau1vIE/edit?usp=sharing">Google Docs</a></p>
|
||||||
|
|
||||||
|
<h4 id="used-command">Used Command</h4>
|
||||||
|
|
||||||
|
<h5 id="solve-android-read-only-issue">Solve Android Read_Only Issue</h5>
|
||||||
|
|
||||||
|
<pre><code>mount -o rw,remount /system
|
||||||
|
mount -o ro,remount /system
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<h5 id="using-tc-to-limit-bandwidth-on-host-server">Using tc to limit bandwidth on host server</h5>
|
||||||
|
|
||||||
|
<pre><code># 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
|
||||||
|
</code></pre>
|
||||||
</description>
|
</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
|
|||||||
@@ -72,12 +72,13 @@
|
|||||||
<div class="date">Sat, Aug 20, 2016</div>
|
<div class="date">Sat, Aug 20, 2016</div>
|
||||||
<div class="title"><a href="https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/">Rsync Experiment Towards X86 VS ARM</a></div>
|
<div class="title"><a href="https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/">Rsync Experiment Towards X86 VS ARM</a></div>
|
||||||
</header>
|
</header>
|
||||||
<div class="body"><p>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.</p>
|
<div class="body">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</div>
|
||||||
|
|
||||||
<p><a href="https://docs.google.com/a/binghamton.edu/document/d/1sCjsC1pXcfgECp3do2oySsG9kW7UZ3BTEXvDlau1vIE/edit?usp=sharing">Google Docs</a></p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<a href="https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/" class="btn btn-default">Read More…</a>
|
||||||
|
</footer>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
|
|||||||
+22
-1
@@ -16,9 +16,30 @@
|
|||||||
<pubDate>Sat, 20 Aug 2016 01:44:59 -0400</pubDate>
|
<pubDate>Sat, 20 Aug 2016 01:44:59 -0400</pubDate>
|
||||||
|
|
||||||
<guid>https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/</guid>
|
<guid>https://codersherlock.github.io/post/Rsync_Experiment_Towards_X86_VS_ARM/</guid>
|
||||||
<description><p>Partial content of this post won&rsquo;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.</p>
|
<description>
|
||||||
|
|
||||||
|
<p>Partial content of this post won&rsquo;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.</p>
|
||||||
|
|
||||||
<p><a href="https://docs.google.com/a/binghamton.edu/document/d/1sCjsC1pXcfgECp3do2oySsG9kW7UZ3BTEXvDlau1vIE/edit?usp=sharing">Google Docs</a></p>
|
<p><a href="https://docs.google.com/a/binghamton.edu/document/d/1sCjsC1pXcfgECp3do2oySsG9kW7UZ3BTEXvDlau1vIE/edit?usp=sharing">Google Docs</a></p>
|
||||||
|
|
||||||
|
<h4 id="used-command">Used Command</h4>
|
||||||
|
|
||||||
|
<h5 id="solve-android-read-only-issue">Solve Android Read_Only Issue</h5>
|
||||||
|
|
||||||
|
<pre><code>mount -o rw,remount /system
|
||||||
|
mount -o ro,remount /system
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<h5 id="using-tc-to-limit-bandwidth-on-host-server">Using tc to limit bandwidth on host server</h5>
|
||||||
|
|
||||||
|
<pre><code># 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
|
||||||
|
</code></pre>
|
||||||
</description>
|
</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user