Compare commits
2 Commits
11935ab4e1
...
5292ef4c97
Author | SHA1 | Date | |
---|---|---|---|
5292ef4c97 | |||
0f1b8e63bc |
12
fastestmirror.sh
Normal file
12
fastestmirror.sh
Normal file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
|
||||
data=""
|
||||
for s in $(wget -qO- https://mirrors.alpinelinux.org/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
|
@ -3,7 +3,7 @@
|
||||
apk add virtualbox-guest-additions virtualbox-guest-additions-x11
|
||||
|
||||
rc-update add virtualbox-guest-additions boot
|
||||
rc-update add virtualbox-guest-additions-x11 boot
|
||||
rc-update add virtualbox-drm-client boot
|
||||
|
||||
service virtualbox-guest-additions start
|
||||
service virtualbox-drm-client start
|
||||
|
Loading…
Reference in New Issue
Block a user