mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 13:41:58 +00:00
31 lines
717 B
Plaintext
31 lines
717 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# rankmirrors
|
|
|
|
> Rank a list of Pacman mirrors by connection and opening speed.
|
|
> Writes the new mirrorlist to `stdout`.
|
|
> More information: <https://manned.org/rankmirrors>.
|
|
|
|
- Rank a mirror list:
|
|
|
|
`rankmirrors {{/etc/pacman.d/mirrorlist}}`
|
|
|
|
- Output only a given number of the top ranking servers:
|
|
|
|
`rankmirrors -n {{number}} {{/etc/pacman.d/mirrorlist}}`
|
|
|
|
- Be verbose when generating the mirrorlist:
|
|
|
|
`rankmirrors -v {{/etc/pacman.d/mirrorlist}}`
|
|
|
|
- Test only a specific URL:
|
|
|
|
`rankmirrors --url {{url}}`
|
|
|
|
- Output only the response times instead of a full mirrorlist:
|
|
|
|
`rankmirrors --times {{/etc/pacman.d/mirrorlist}}`
|