Finding the fastest mirror: Difference between revisions
(Create page) |
WhyNotHugo (talk | contribs) (Add link to How to setup a Alpine Linux mirror) |
||
(8 intermediate revisions by 6 users not shown) | |||
Line 1: | Line 1: | ||
After you install Alpine, you may be wondering how do I figure out the fastest mirror again? | After you install Alpine, you may be wondering how do I figure out the fastest mirror again? | ||
You could run <code>/sbin/setup-apkrepos</code> again. | |||
The following script shows the closest mirror for a single ping, which might not be accurate: | |||
{{Cat|/home/user/fastestmirror|<nowiki> | {{Cat|/home/user/fastestmirror|<nowiki> | ||
data="" | data="" | ||
for s in $ | for s in $(wget -qO- http://rsync.alpinelinux.org/alpine/MIRRORS.txt); do | ||
t=$(time -f "%E" wget -q $s/MIRRORS.txt -O | t=$(time -f "%E" wget -q $s/MIRRORS.txt -O /dev/null 2>&1) | ||
echo "$s was $t" | echo "$s was $t" | ||
data="$data$t $s\n" | data="$data$t $s\n" | ||
Line 17: | Line 17: | ||
echo -e $data | sort | echo -e $data | sort | ||
</nowiki>}} | </nowiki>}} | ||
== See also == | |||
* [[How to setup a Alpine Linux mirror]] | |||
[[Category:Package Manager]] |
Latest revision as of 08:45, 7 July 2024
After you install Alpine, you may be wondering how do I figure out the fastest mirror again?
You could run /sbin/setup-apkrepos
again.
The following script shows the closest mirror for a single ping, which might not be accurate:
Contents of /home/user/fastestmirror
data=""
for s in $(wget -qO- http://rsync.alpinelinux.org/alpine/MIRRORS.txt); do
t=$(time -f "%E" wget -q $s/MIRRORS.txt -O /dev/null 2>&1)
echo "$s was $t"
data="$data$t $s\n"
done
echo "===RESULTS==="
echo -e $data | sort