Giter Club home page Giter Club logo

Comments (10)

stfl avatar stfl commented on June 24, 2024 3

I wrote a little python script that does that for me on Debian testing: https://github.com/stfl/apt-fast-mirrors

from apt-fast.

peperunas avatar peperunas commented on June 24, 2024

+1

from apt-fast.

stfl avatar stfl commented on June 24, 2024

you can use netselect-apt for that. it gives you a list of the 10 best mirrors... you can then copy it into the MIRRORS variable..
shouldn't be too hard to automate that in a script.. ;)

sudo netselect-apt testing -n

here for Debian testing ;)

from apt-fast.

joshcangit avatar joshcangit commented on June 24, 2024

I've got a Bash function to extract URLs of up-to-date Ubuntu mirrors below.

ubuntu_mirror() {
	local url="https://launchpad.net/ubuntu/+archivemirrors"
	local xpath1="//table/tbody/tr[td/span[@class='distromirrorstatusUP']]/td/a[starts-with(@href,'"
	local xpath2="${xpath1}$1"
	local xpath="${xpath2}')]/@href"
	wget -qO- $url | xmllint --html --xpath "$xpath" - 2>&0 | sed 's/.*href="\(.*\)"/\1/g'
}
MIRRORS1="(' "​
MIRRORS2=${MIRRORS1}$(ubuntu_mirror https | awk -vRS=' ' -vOFS=', ' '$1=$1')
MIRRORS="${MIRRORS2} ')"

The function can also find http or ftp URLs.

from apt-fast.

bonelifer avatar bonelifer commented on June 24, 2024

I've got a Bash function to extract URLs of up-to-date Ubuntu mirrors below.

function ubuntu-mirror {
PROTOCOL="$1"
str='s/.*href="\('
str+=$PROTOCOL
str+=':\/\/.*\)"/\1/p'
wget -qO- https://launchpad.net/ubuntu/+archivemirrors | xmllint --html --xpath '//table/tbody/tr[td/span[@class="distromirrorstatusUP"]]/td/a[not(starts-with(@href, "/"))]/@href' - 2>&0 | sed -n $str
}
* Use either `http`, `https`, `ftp` or `rsync`.
MIRRORS="( '"
MIRRORS+="ubuntu-mirror https | awk -vRS='' -vOFS=', ' '$1=$1'"
MIRRORS+="' )"

How do you use this function after adding it to .profile?

from apt-fast.

joshcangit avatar joshcangit commented on June 24, 2024

How do you use this function after adding it to .profile?

Sorry, forgot to fix it.

I'm still unsure to keep it as is or make it not as a function which I've tried and seems faster.

from apt-fast.

bonelifer avatar bonelifer commented on June 24, 2024
MIRRORS="( '"
MIRRORS+=$(ubuntu-mirror https | awk -vRS='' -vOFS=', ' '$1=$1')
MIRRORS+="' )"

So this part also goes into .profile?

from apt-fast.

joshcangit avatar joshcangit commented on June 24, 2024

So this part also goes into .profile?

Actually, both parts.

from apt-fast.

bonelifer avatar bonelifer commented on June 24, 2024

So this part also goes into .profile?

Actually, both parts.

Then we export MIRRORS(?):
export MIRRORS

from apt-fast.

joshcangit avatar joshcangit commented on June 24, 2024

Then we export MIRRORS(?):
export MIRRORS

I now don't think that's needed.
You can use it if it works for you.

from apt-fast.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.