mirror of
https://github.com/BioArchLinux/iso.git
synced 2025-03-10 06:14:01 +00:00
polish: use template and perl
This commit is contained in:
parent
9f2a516b2c
commit
f370299bd9
107 changed files with 201 additions and 3284 deletions
|
@ -1,57 +0,0 @@
|
|||
# GRUB boot loader configuration
|
||||
|
||||
GRUB_DEFAULT=0
|
||||
GRUB_TIMEOUT=5
|
||||
GRUB_DISTRIBUTOR="BioArch"
|
||||
GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 quiet"
|
||||
GRUB_CMDLINE_LINUX=""
|
||||
|
||||
# Preload both GPT and MBR modules so that they are not missed
|
||||
GRUB_PRELOAD_MODULES="part_gpt part_msdos"
|
||||
|
||||
# Uncomment to enable booting from LUKS encrypted devices
|
||||
#GRUB_ENABLE_CRYPTODIS
|
||||
|
||||
# Set to 'countdown' or 'hidden' to change timeout behavior,
|
||||
# press ESC key to display menu.
|
||||
GRUB_TIMEOUT_STYLE=menu
|
||||
|
||||
# Uncomment to use basic console
|
||||
#GRUB_TERMINAL_INPUT=console
|
||||
|
||||
# Uncomment to disable graphical terminal
|
||||
#GRUB_TERMINAL_OUTPUT=console
|
||||
|
||||
# The resolution used on graphical terminal
|
||||
# note that you can use only modes which your graphic card supports via VBE
|
||||
# you can see them in real GRUB with the command `vbeinfo'
|
||||
GRUB_GFXMODE=auto
|
||||
|
||||
# Uncomment to allow the kernel use the same resolution used by grub
|
||||
GRUB_GFXPAYLOAD_LINUX=keep
|
||||
|
||||
# Uncomment if you want GRUB to pass to the Linux kernel the old parameter
|
||||
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
|
||||
#GRUB_DISABLE_LINUX_UUID=true
|
||||
|
||||
# Uncomment to disable generation of recovery mode menu entries
|
||||
GRUB_DISABLE_RECOVERY=true
|
||||
|
||||
# Uncomment and set to the desired menu colors. Used by normal and wallpaper
|
||||
# modes only. Entries specified as foreground/background.
|
||||
#GRUB_COLOR_NORMAL="light-blue/black"
|
||||
#GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
|
||||
|
||||
# Uncomment one of them for the gfx desired, a image background or a gfxtheme
|
||||
#GRUB_BACKGROUND="/path/to/wallpaper"
|
||||
|
||||
# Uncomment to get a beep at GRUB start
|
||||
#GRUB_INIT_TUNE="480 440 1"
|
||||
|
||||
# Uncomment to make GRUB remember the last selection. This requires
|
||||
# setting 'GRUB_DEFAULT=saved' above.
|
||||
#GRUB_SAVEDEFAULT=true
|
||||
|
||||
# Uncomment to disable submenus in boot menu
|
||||
#GRUB_DISABLE_SUBMENU=y
|
||||
#GRUB_THEME="/path/to/gfxtheme"
|
|
@ -1 +0,0 @@
|
|||
bioarchlinux
|
|
@ -1 +0,0 @@
|
|||
BioArchLinux \r (\l)
|
|
@ -1 +0,0 @@
|
|||
LANG=en_US.UTF-8
|
|
@ -1 +0,0 @@
|
|||
/usr/share/zoneinfo/UTC
|
|
@ -1,67 +0,0 @@
|
|||
# vim:set ft=sh
|
||||
# MODULES
|
||||
# The following modules are loaded before any boot hooks are
|
||||
# run. Advanced users may wish to specify all system modules
|
||||
# in this array. For instance:
|
||||
# MODULES=(piix ide_disk reiserfs)
|
||||
MODULES=()
|
||||
|
||||
# BINARIES
|
||||
# This setting includes any additional binaries a given user may
|
||||
# wish into the CPIO image. This is run last, so it may be used to
|
||||
# override the actual binaries included by a given hook
|
||||
# BINARIES are dependency parsed, so you may safely ignore libraries
|
||||
BINARIES=()
|
||||
|
||||
# FILES
|
||||
# This setting is similar to BINARIES above, however, files are added
|
||||
# as-is and are not parsed in any way. This is useful for config files.
|
||||
FILES=()
|
||||
|
||||
# HOOKS
|
||||
# This is the most important setting in this file. The HOOKS control the
|
||||
# modules and scripts added to the image, and what happens at boot time.
|
||||
# Order is important, and it is recommended that you do not change the
|
||||
# order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
|
||||
# help on a given hook.
|
||||
# 'base' is _required_ unless you know precisely what you are doing.
|
||||
# 'udev' is _required_ in order to automatically load modules
|
||||
# 'filesystems' is _required_ unless you specify your fs modules in MODULES
|
||||
# Examples:
|
||||
## This setup specifies all modules in the MODULES setting above.
|
||||
## No raid, lvm2, or encrypted root is needed.
|
||||
# HOOKS=(base)
|
||||
#
|
||||
## This setup will autodetect all modules for your system and should
|
||||
## work as a sane default
|
||||
# HOOKS=(base udev autodetect block filesystems)
|
||||
#
|
||||
## This setup will generate a 'full' image which supports most systems.
|
||||
## No autodetection is done.
|
||||
# HOOKS=(base udev block filesystems)
|
||||
#
|
||||
## This setup assembles a pata mdadm array with an encrypted root FS.
|
||||
## Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
|
||||
# HOOKS=(base udev block mdadm encrypt filesystems)
|
||||
#
|
||||
## This setup loads an lvm2 volume group on a usb device.
|
||||
# HOOKS=(base udev block lvm2 filesystems)
|
||||
#
|
||||
## NOTE: If you have /usr on a separate partition, you MUST include the
|
||||
# usr, fsck and shutdown hooks.
|
||||
HOOKS=(base udev modconf kms memdisk archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs block filesystems keyboard)
|
||||
|
||||
# COMPRESSION
|
||||
# Use this to compress the initramfs image. By default, gzip compression
|
||||
# is used. Use 'cat' to create an uncompressed image.
|
||||
#COMPRESSION="gzip"
|
||||
#COMPRESSION="bzip2"
|
||||
#COMPRESSION="lzma"
|
||||
COMPRESSION="xz"
|
||||
#COMPRESSION="lzop"
|
||||
#COMPRESSION="lz4"
|
||||
#COMPRESSION="zstd"
|
||||
|
||||
# COMPRESSION_OPTIONS
|
||||
# Additional options for the compressor
|
||||
#COMPRESSION_OPTIONS=()
|
|
@ -1,8 +0,0 @@
|
|||
# mkinitcpio preset file for the 'linux' package on archiso
|
||||
|
||||
PRESETS=('archiso')
|
||||
|
||||
ALL_kver='/boot/vmlinuz-linux'
|
||||
ALL_config='/etc/mkinitcpio.conf'
|
||||
|
||||
archiso_image="/boot/initramfs-linux.img"
|
|
@ -1,7 +0,0 @@
|
|||
# The broadcom-wl package requires some modules to be disabled in order to use
|
||||
# wl. Since the ISO image needs to cover many hardware cases, this file
|
||||
# overrides the default blacklist in /usr/lib/modprobe.d/
|
||||
#
|
||||
# If you need to use wl, you may need to delete this file, then `rmmod` any
|
||||
# already-loaded modules that are now blacklisted before proceeding to modprobe
|
||||
# wl itself.
|
|
@ -1,32 +0,0 @@
|
|||
To install [1;37;44mBioArchLinux[0m follow the installation guide:
|
||||
https://github.com/BioArchLinux/iso
|
||||
|
||||
Official website: https://bioarchlinux.org
|
||||
|
||||
Report ISO issues: https://github.com/BioArchLinux/iso/issues
|
||||
Chat on matrix: https://matrix.to/#/#bioarchlinux:matrix.org
|
||||
Usage Wiki page: https://wiki.bioarchlinux.org/index.php?title=Special:AllPages
|
||||
|
||||
.
|
||||
lN.
|
||||
;MMX
|
||||
'WMMMK
|
||||
.WMMMMM0
|
||||
dMMMMMMM0
|
||||
.NOoONMMMMM0
|
||||
.WMMMMWMMMMMMK
|
||||
,WMMMMMMMMMMMMMX.
|
||||
;MMMMMMMMMMMMMMMMN.
|
||||
lMMMMMMMOc:oXMMMMMMW.
|
||||
dMMMMMMW, xMMMMMMW,
|
||||
kMMMMMMMo XMMMMWMM:
|
||||
0MMMMMMMM, ,.. xMMMMMKko.
|
||||
.XMMMMMMWKk' ox' lOXMMMMMM0:
|
||||
'WMMNkl'. .x:d .;d0WMMO
|
||||
:Xx:. cx' 'l0K.
|
||||
. .
|
||||
|
||||
|
||||
Welcome to [1;37;44mBioArchLinux[0m !
|
||||
|
||||
[41m [41m [41m [40m [44m [40m [41m [46m [45m [41m [46m [43m [41m [44m [45m [40m [44m [40m [41m [44m [41m [41m [46m [42m [41m [44m [43m [41m [45m [40m [40m [44m [40m [41m [44m [42m [41m [46m [44m [41m [46m [47m [0m
|
|
@ -1,100 +0,0 @@
|
|||
#
|
||||
# /etc/pacman.conf
|
||||
#
|
||||
# See the pacman.conf(5) manpage for option and repository directives
|
||||
|
||||
#
|
||||
# GENERAL OPTIONS
|
||||
#
|
||||
[options]
|
||||
# The following paths are commented out with their default values listed.
|
||||
# If you wish to use different paths, uncomment and update the paths.
|
||||
#RootDir = /
|
||||
#DBPath = /var/lib/pacman/
|
||||
#CacheDir = /var/cache/pacman/pkg/
|
||||
#LogFile = /var/log/pacman.log
|
||||
#GPGDir = /etc/pacman.d/gnupg/
|
||||
#HookDir = /etc/pacman.d/hooks/
|
||||
HoldPkg = pacman glibc
|
||||
#XferCommand = /usr/bin/curl -L -C - -f -o %o %u
|
||||
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
||||
#CleanMethod = KeepInstalled
|
||||
Architecture = auto
|
||||
|
||||
# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
|
||||
#IgnorePkg =
|
||||
#IgnoreGroup =
|
||||
|
||||
#NoUpgrade =
|
||||
#NoExtract =
|
||||
|
||||
# Misc options
|
||||
#UseSyslog
|
||||
#Color
|
||||
#NoProgressBar
|
||||
CheckSpace
|
||||
#VerbosePkgLists
|
||||
#ParallelDownloads = 5
|
||||
|
||||
# By default, pacman accepts packages signed by keys that its local keyring
|
||||
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||
SigLevel = Required DatabaseOptional
|
||||
LocalFileSigLevel = Optional
|
||||
#RemoteFileSigLevel = Required
|
||||
|
||||
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
||||
# keyring can then be populated with the keys of all official Arch Linux
|
||||
# packagers with `pacman-key --populate archlinux`.
|
||||
|
||||
#
|
||||
# REPOSITORIES
|
||||
# - can be defined here or included from another file
|
||||
# - pacman will search repositories in the order defined here
|
||||
# - local/custom mirrors can be added here or in separate files
|
||||
# - repositories listed first will take precedence when packages
|
||||
# have identical names, regardless of version number
|
||||
# - URLs will have $repo replaced by the name of the current repo
|
||||
# - URLs will have $arch replaced by the name of the architecture
|
||||
#
|
||||
# Repository entries are of the format:
|
||||
# [repo-name]
|
||||
# Server = ServerName
|
||||
# Include = IncludePath
|
||||
#
|
||||
# The header [repo-name] is crucial - it must be present and
|
||||
# uncommented to enable the repo.
|
||||
#
|
||||
|
||||
# The testing repositories are disabled by default. To enable, uncomment the
|
||||
# repo name header and Include lines. You can add preferred servers immediately
|
||||
# after the header, and they will be used before the default mirrors.
|
||||
|
||||
#[core-testing]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[core]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[bioarchlinux]
|
||||
Server = https://repo.bioarchlinux.org/$arch
|
||||
|
||||
#[extra-testing]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[extra]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
# If you want to run 32 bit applications on your x86_64 system,
|
||||
# enable the multilib repositories as required here.
|
||||
|
||||
#[multilib-testing]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[multilib]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
# An example of a custom package repository. See the pacman manpage for
|
||||
# tips on creating your own repositories.
|
||||
#[custom]
|
||||
#SigLevel = Optional TrustAll
|
||||
#Server = file:///home/custompkgs
|
|
@ -1,13 +0,0 @@
|
|||
# remove from airootfs!
|
||||
[Trigger]
|
||||
Operation = Install
|
||||
Operation = Upgrade
|
||||
Type = Package
|
||||
Target = pacman-mirrorlist
|
||||
|
||||
[Action]
|
||||
Description = Uncommenting all mirrors in /etc/pacman.d/mirrorlist...
|
||||
When = PostTransaction
|
||||
Depends = pacman-mirrorlist
|
||||
Depends = sed
|
||||
Exec = /usr/bin/sed -i "s/#Server/Server/g" /etc/pacman.d/mirrorlist
|
|
@ -1,18 +0,0 @@
|
|||
# remove from airootfs!
|
||||
# As a workaround for https://bugs.archlinux.org/task/49347 , remove pacman hooks specific to the ISO build process.
|
||||
# If not, they would be used when pacstrap is run in the live environment.
|
||||
|
||||
[Trigger]
|
||||
Operation = Install
|
||||
Operation = Upgrade
|
||||
Operation = Remove
|
||||
Type = Package
|
||||
Target = *
|
||||
|
||||
[Action]
|
||||
Description = Work around FS#49347 by removing custom pacman hooks that are only required during ISO build...
|
||||
When = PostTransaction
|
||||
Depends = sh
|
||||
Depends = coreutils
|
||||
Depends = grep
|
||||
Exec = /bin/sh -c "rm -- $(grep -Frl 'remove from airootfs' /etc/pacman.d/hooks/)"
|
|
@ -1,909 +0,0 @@
|
|||
##
|
||||
## Arch Linux repository mirrorlist
|
||||
## Generated on 2022-12-04
|
||||
##
|
||||
|
||||
## Worldwide
|
||||
Server = https://geo.mirror.pkgbuild.com/$repo/os/$arch
|
||||
Server = http://mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
Server = https://mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
|
||||
## Argentina
|
||||
#Server = http://mirrors.eze.sysarmy.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.eze.sysarmy.com/archlinux/$repo/os/$arch
|
||||
|
||||
## Australia
|
||||
#Server = https://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch
|
||||
#Server = https://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch
|
||||
#Server = https://sydney.mirror.pkgbuild.com/$repo/os/$arch
|
||||
#Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.lucassymons.net/$repo/os/$arch
|
||||
#Server = https://arch.lucassymons.net/$repo/os/$arch
|
||||
#Server = http://syd.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = https://syd.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.swin.edu.au/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.wale.id.au/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.wale.id.au/archlinux/$repo/os/$arch
|
||||
|
||||
## Austria
|
||||
#Server = http://mirror.alwyzon.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.alwyzon.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.digitalnova.at/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.easyname.at/archlinux/$repo/os/$arch
|
||||
#Server = https://at.arch.mirror.kescher.at/$repo/os/$arch
|
||||
#Server = http://mirror.reisenbauer.ee/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.reisenbauer.ee/archlinux/$repo/os/$arch
|
||||
|
||||
## Bangladesh
|
||||
#Server = http://mirror.xeonbd.com/archlinux/$repo/os/$arch
|
||||
|
||||
## Belarus
|
||||
#Server = http://ftp.byfly.by/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.datacenter.by/pub/archlinux/$repo/os/$arch
|
||||
|
||||
## Belgium
|
||||
#Server = http://archlinux.cu.be/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.kangaroot.net/$repo/os/$arch
|
||||
#Server = http://mirror.tiguinet.net/arch/$repo/os/$arch
|
||||
|
||||
## Bosnia and Herzegovina
|
||||
#Server = http://archlinux.mirror.ba/$repo/os/$arch
|
||||
|
||||
## Brazil
|
||||
#Server = http://archlinux-br.com.br/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux-br.com.br/archlinux/$repo/os/$arch
|
||||
#Server = http://br.mirror.archlinux-br.org/$repo/os/$arch
|
||||
#Server = http://archlinux.c3sl.ufpr.br/$repo/os/$arch
|
||||
#Server = http://www.caco.ic.unicamp.br/archlinux/$repo/os/$arch
|
||||
#Server = https://www.caco.ic.unicamp.br/archlinux/$repo/os/$arch
|
||||
#Server = http://linorg.usp.br/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.pop-es.rnp.br/$repo/os/$arch
|
||||
#Server = http://mirror.ufam.edu.br/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.ufscar.br/archlinux/$repo/os/$arch
|
||||
|
||||
## Bulgaria
|
||||
#Server = https://mirror.darklinux.uk/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.host.ag/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.netix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.telepoint.bg/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.telepoint.bg/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.uni-plovdiv.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.uni-plovdiv.net/archlinux/$repo/os/$arch
|
||||
|
||||
## Cambodia
|
||||
#Server = http://mirror.sabay.com.kh/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.sabay.com.kh/archlinux/$repo/os/$arch
|
||||
|
||||
## Canada
|
||||
#Server = http://mirror.0xem.ma/arch/$repo/os/$arch
|
||||
#Server = https://mirror.0xem.ma/arch/$repo/os/$arch
|
||||
#Server = http://mirror.cedille.club/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.colo-serv.net/$repo/os/$arch
|
||||
#Server = http://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror2.evolution-host.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror2.evolution-host.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.its.dal.ca/archlinux/$repo/os/$arch
|
||||
#Server = http://muug.ca/mirror/archlinux/$repo/os/$arch
|
||||
#Server = https://muug.ca/mirror/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.powerfly.ca/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.powerfly.ca/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.rafal.ca/$repo/os/$arch
|
||||
#Server = http://mirror.scd31.com/arch/$repo/os/$arch
|
||||
#Server = https://mirror.scd31.com/arch/$repo/os/$arch
|
||||
#Server = http://mirror.xenyth.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.xenyth.net/archlinux/$repo/os/$arch
|
||||
|
||||
## Chile
|
||||
#Server = http://mirror.anquan.cl/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.anquan.cl/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.archlinux.cl/$repo/os/$arch
|
||||
#Server = http://mirror1.cl.netactuate.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror1.cl.netactuate.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.ufro.cl/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.ufro.cl/archlinux/$repo/os/$arch
|
||||
|
||||
## China
|
||||
#Server = http://mirrors.163.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.aliyun.com/archlinux/$repo/os/$arch
|
||||
Server = https://mirrors.aliyun.com/archlinux/$repo/os/$arch
|
||||
Server = http://mirrors.bfsu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.bfsu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.cqu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.cqu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.hit.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.hit.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.lzu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.nju.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.nju.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.njupt.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.redrock.team/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.redrock.team/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.shanghaitech.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.shanghaitech.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.sjtug.sjtu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch
|
||||
Server = http://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch
|
||||
Server = https://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.wsyu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.wsyu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.xjtu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.zju.edu.cn/archlinux/$repo/os/$arch
|
||||
|
||||
## Colombia
|
||||
#Server = http://mirrors.udenar.edu.co/archlinux/$repo/os/$arch
|
||||
|
||||
## Croatia
|
||||
#Server = http://archlinux.iskon.hr/$repo/os/$arch
|
||||
|
||||
## Czechia
|
||||
#Server = http://mirror.dkm.cz/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.dkm.cz/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.fi.muni.cz/pub/linux/arch/$repo/os/$arch
|
||||
#Server = http://ftp.linux.cz/pub/linux/arch/$repo/os/$arch
|
||||
#Server = https://europe.mirror.pkgbuild.com/$repo/os/$arch
|
||||
#Server = http://gluttony.sin.cvut.cz/arch/$repo/os/$arch
|
||||
#Server = https://gluttony.sin.cvut.cz/arch/$repo/os/$arch
|
||||
#Server = http://mirror.it4i.cz/arch/$repo/os/$arch
|
||||
#Server = https://mirror.it4i.cz/arch/$repo/os/$arch
|
||||
#Server = http://mirrors.nic.cz/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.nic.cz/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.sh.cvut.cz/arch/$repo/os/$arch
|
||||
#Server = https://ftp.sh.cvut.cz/arch/$repo/os/$arch
|
||||
#Server = http://mirror.vpsfree.cz/archlinux/$repo/os/$arch
|
||||
|
||||
## Denmark
|
||||
#Server = http://mirrors.dotsrc.org/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.dotsrc.org/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.one.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.one.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.safe-con.dk/archlinux/$repo/os/$arch
|
||||
|
||||
## Ecuador
|
||||
#Server = http://mirror.cedia.org.ec/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.espoch.edu.ec/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.uta.edu.ec/archlinux/$repo/os/$arch
|
||||
|
||||
## Estonia
|
||||
#Server = http://mirror.cspacehostings.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.cspacehostings.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.xtom.ee/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.xtom.ee/archlinux/$repo/os/$arch
|
||||
|
||||
## Finland
|
||||
#Server = https://arch.mcstrugs.org/$repo/os/$arch
|
||||
#Server = http://mirror.arctic.lol/ArchMirror/$repo/os/$arch
|
||||
#Server = https://mirror.arctic.lol/ArchMirror/$repo/os/$arch
|
||||
#Server = http://arch.mirror.far.fi/$repo/os/$arch
|
||||
#Server = http://mirror.hosthink.net/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.kyberorg.fi/$repo/os/$arch
|
||||
#Server = https://arch.kyberorg.fi/$repo/os/$arch
|
||||
#Server = https://mirror.srv.fail/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.wuki.li/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.wuki.li/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.yhtez.xyz/$repo/os/$arch
|
||||
#Server = https://arch.yhtez.xyz/$repo/os/$arch
|
||||
|
||||
## France
|
||||
#Server = http://archlinux.de-labrusse.fr/$repo/os/$arch
|
||||
#Server = http://mirror.archlinux.ikoula.com/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.vi-di.fr/$repo/os/$arch
|
||||
#Server = http://archlinux.mirrors.benatherton.com/$repo/os/$arch
|
||||
#Server = http://mirror.cyberbits.eu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.cyberbits.eu/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.datagr.am/$repo/os/$arch
|
||||
#Server = https://mirrors.eric.ovh/arch/$repo/os/$arch
|
||||
#Server = http://mirrors.gandi.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.gandi.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.ibakerserver.pt/Arch/$repo/os/$arch
|
||||
#Server = http://mirror.ibcp.fr/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.jordanrey.me/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.jordanrey.me/archlinux/$repo/os/$arch
|
||||
#Server = https://arch.juline.tech/$repo/os/$arch
|
||||
#Server = http://mirroir.labhouse.fr/arch/$repo/os/$arch
|
||||
#Server = https://mirroir.labhouse.fr/arch/$repo/os/$arch
|
||||
#Server = http://mirror.lastmikoi.net/archlinux/$repo/os/$arch
|
||||
#Server = https://arch-mirror.cloud.louifox.house/$repo/os/$arch
|
||||
#Server = http://archlinux.mailtunnel.eu/$repo/os/$arch
|
||||
#Server = https://archlinux.mailtunnel.eu/$repo/os/$arch
|
||||
#Server = http://mir.archlinux.fr/$repo/os/$arch
|
||||
#Server = http://mirrors.celianvdb.fr/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.celianvdb.fr/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.nimukaito.net/$repo/os/$arch
|
||||
#Server = https://arch.nimukaito.net/$repo/os/$arch
|
||||
#Server = http://mirror.oldsql.cc/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.oldsql.cc/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirrors.ovh.net/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.rezopole.net/$repo/os/$arch
|
||||
#Server = https://mirrors.slaanesh.org/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.standaloneinstaller.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.sysa.tech/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.thekinrar.fr/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.theo546.fr/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.theo546.fr/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.u-strasbg.fr/linux/distributions/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.wormhole.eu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirroir.wptheme.fr/archlinux/$repo/os/$arch
|
||||
#Server = https://mirroir.wptheme.fr/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.yourlabs.org/$repo/os/$arch
|
||||
#Server = https://arch.yourlabs.org/$repo/os/$arch
|
||||
|
||||
## Georgia
|
||||
#Server = http://archlinux.grena.ge/$repo/os/$arch
|
||||
#Server = https://archlinux.grena.ge/$repo/os/$arch
|
||||
|
||||
## Germany
|
||||
#Server = http://mirror.23m.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.23m.com/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.agdsn.de/pub/mirrors/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.agdsn.de/pub/mirrors/archlinux/$repo/os/$arch
|
||||
#Server = https://appuals.com/archlinux/$repo/os/$arch
|
||||
#Server = http://artfiles.org/archlinux.org/$repo/os/$arch
|
||||
#Server = https://mirror.bethselamin.de/$repo/os/$arch
|
||||
#Server = http://mirror.chaoticum.net/arch/$repo/os/$arch
|
||||
#Server = https://mirror.chaoticum.net/arch/$repo/os/$arch
|
||||
#Server = http://mirror.checkdomain.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.checkdomain.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.clientvps.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.clientvps.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.cmt.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.cmt.de/archlinux/$repo/os/$arch
|
||||
#Server = http://os.codefionn.eu/archlinux/$repo/os/$arch
|
||||
#Server = https://os.codefionn.eu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.dogado.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.f4st.host/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.f4st.host/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.fau.de/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.fau.de/archlinux/$repo/os/$arch
|
||||
#Server = https://pkg.fef.moe/archlinux/$repo/os/$arch
|
||||
#Server = https://dist-mirror.fem.tu-ilmenau.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.fsrv.services/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.fsrv.services/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.gnomus.de/$repo/os/$arch
|
||||
#Server = http://www.gutscheindrache.com/mirror/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.gwdg.de/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.homeinfo.de/$repo/os/$arch
|
||||
#Server = http://archlinux.honkgong.info/$repo/os/$arch
|
||||
#Server = http://ftp.hosteurope.de/mirror/ftp.archlinux.org/$repo/os/$arch
|
||||
#Server = http://ftp-stud.hs-esslingen.de/pub/Mirrors/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.informatik.tu-freiberg.de/arch/$repo/os/$arch
|
||||
#Server = https://mirror.informatik.tu-freiberg.de/arch/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.iphh.net/$repo/os/$arch
|
||||
#Server = https://mirror.iusearchbtw.nl/$repo/os/$arch
|
||||
#Server = http://mirrors.janbruckner.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.janbruckner.de/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.jensgutermuth.de/$repo/os/$arch
|
||||
#Server = https://arch.jensgutermuth.de/$repo/os/$arch
|
||||
#Server = https://de.arch.mirror.kescher.at/$repo/os/$arch
|
||||
#Server = http://mirror.kumi.systems/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.kumi.systems/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.fra10.de.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.fra10.de.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.metalgamer.eu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.metalgamer.eu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.mikrogravitation.org/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.mikrogravitation.org/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.moson.org/arch/$repo/os/$arch
|
||||
#Server = https://mirror.moson.org/arch/$repo/os/$arch
|
||||
#Server = http://mirrors.n-ix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.n-ix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.netcologne.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.netcologne.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.niyawe.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.niyawe.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.orbit-os.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.orbit-os.com/archlinux/$repo/os/$arch
|
||||
#Server = http://packages.oth-regensburg.de/archlinux/$repo/os/$arch
|
||||
#Server = https://packages.oth-regensburg.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.pagenotfound.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.pagenotfound.de/archlinux/$repo/os/$arch
|
||||
#Server = http://phinau.de/arch/$repo/os/$arch
|
||||
#Server = https://phinau.de/arch/$repo/os/$arch
|
||||
#Server = https://mirror.pseudoform.org/$repo/os/$arch
|
||||
#Server = https://www.ratenzahlung.de/mirror/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.halifax.rwth-aachen.de/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.halifax.rwth-aachen.de/archlinux/$repo/os/$arch
|
||||
#Server = http://linux.rz.rub.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.satis-faction.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.satis-faction.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.selfnet.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.selfnet.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.spaceint.fr/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.spline.inf.fu-berlin.de/mirrors/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.spline.inf.fu-berlin.de/mirrors/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.thaller.ws/$repo/os/$arch
|
||||
#Server = https://archlinux.thaller.ws/$repo/os/$arch
|
||||
#Server = http://ftp.tu-chemnitz.de/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.ubrco.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.ubrco.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.undisclose.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.undisclose.de/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.uni-bayreuth.de/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.uni-hannover.de/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.uni-kl.de/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.united-gameserver.de/archlinux/$repo/os/$arch
|
||||
#Server = https://arch.unixpeople.org/$repo/os/$arch
|
||||
#Server = http://ftp.wrz.de/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.wrz.de/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.wtnet.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.wtnet.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.xtom.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.xtom.de/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.mirror.zachlge.org/$repo/os/$arch
|
||||
#Server = https://arch.mirror.zachlge.org/$repo/os/$arch
|
||||
|
||||
## Greece
|
||||
#Server = http://ftp.cc.uoc.gr/mirrors/linux/archlinux/$repo/os/$arch
|
||||
#Server = https://repo.greeklug.gr/data/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.myaegean.gr/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.ntua.gr/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.otenet.gr/linux/archlinux/$repo/os/$arch
|
||||
|
||||
## Hong Kong
|
||||
#Server = https://asia.mirror.pkgbuild.com/$repo/os/$arch
|
||||
#Server = http://mirror-hk.koddos.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror-hk.koddos.net/archlinux/$repo/os/$arch
|
||||
#Server = http://hkg.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = https://hkg.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = https://arch-mirror.wtako.net/$repo/os/$arch
|
||||
#Server = http://mirror.xtom.com.hk/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.xtom.com.hk/archlinux/$repo/os/$arch
|
||||
|
||||
## Hungary
|
||||
#Server = http://ftp.ek-cer.hu/pub/mirrors/ftp.archlinux.org/$repo/os/$arch
|
||||
#Server = http://archmirror.hbit.sztaki.hu/archlinux/$repo/os/$arch
|
||||
#Server = http://nova.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://super.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://nova.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://super.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
|
||||
|
||||
## Iceland
|
||||
#Server = http://mirror.system.is/arch/$repo/os/$arch
|
||||
#Server = https://mirror.system.is/arch/$repo/os/$arch
|
||||
|
||||
## India
|
||||
#Server = https://mirrors.abhy.me/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.albony.xyz/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.cse.iitk.ac.in/archlinux/$repo/os/$arch
|
||||
#Server = http://in-mirror.garudalinux.org/archlinux/$repo/os/$arch
|
||||
#Server = https://in-mirror.garudalinux.org/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.net.in/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.mirror.net.in/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.nxtgen.com/archlinux-mirror/$repo/os/$arch
|
||||
#Server = https://mirrors.nxtgen.com/archlinux-mirror/$repo/os/$arch
|
||||
#Server = http://mirrors.piconets.webwerks.in/archlinux-mirror/$repo/os/$arch
|
||||
#Server = https://mirrors.piconets.webwerks.in/archlinux-mirror/$repo/os/$arch
|
||||
#Server = http://mirror.sahil.world/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.sahil.world/archlinux/$repo/os/$arch
|
||||
|
||||
## Indonesia
|
||||
#Server = http://mirror.cloudweeb.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.faizuladib.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.gi.co.id/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.gi.co.id/archlinux/$repo/os/$arch
|
||||
#Server = http://vpsmurah.jagoanhosting.com/archlinux/$repo/os/$arch
|
||||
#Server = https://vpsmurah.jagoanhosting.com/archlinux/$repo/os/$arch
|
||||
#Server = http://kebo.pens.ac.id/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.labkom.id/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.papua.go.id/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.papua.go.id/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.poliwangi.ac.id/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.repository.id/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.repository.id/archlinux/$repo/os/$arch
|
||||
#Server = http://suro.ubaya.ac.id/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.telkomuniversity.ac.id/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.telkomuniversity.ac.id/archlinux/$repo/os/$arch
|
||||
|
||||
## Iran
|
||||
#Server = http://mirror.arvancloud.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.arvancloud.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.bardia.tech/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.bardia.tech/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.hostiran.ir/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.hostiran.ir/archlinux/$repo/os/$arch
|
||||
#Server = http://repo.iut.ac.ir/repo/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.nak-mci.ir/arch/$repo/os/$arch
|
||||
#Server = http://mirror.rasanegar.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.rasanegar.com/archlinux/$repo/os/$arch
|
||||
|
||||
## Ireland
|
||||
#Server = http://ftp.heanet.ie/mirrors/ftp.archlinux.org/$repo/os/$arch
|
||||
#Server = https://ftp.heanet.ie/mirrors/ftp.archlinux.org/$repo/os/$arch
|
||||
|
||||
## Israel
|
||||
#Server = http://archlinux.interhost.co.il/$repo/os/$arch
|
||||
#Server = https://archlinux.interhost.co.il/$repo/os/$arch
|
||||
#Server = http://mirror.isoc.org.il/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.isoc.org.il/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.mivzakim.net/$repo/os/$arch
|
||||
|
||||
## Italy
|
||||
#Server = https://archmirror.it/repos/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.garr.it/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.prometeus.net/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.server24.net/$repo/os/$arch
|
||||
#Server = https://archlinux.mirror.server24.net/$repo/os/$arch
|
||||
#Server = http://mirror.spazioincloud.it/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.spazioincloud.it/archlinux/$repo/os/$arch
|
||||
|
||||
## Japan
|
||||
#Server = http://mirrors.cat.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.cat.net/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.tsukuba.wide.ad.jp/Linux/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.jaist.ac.jp/pub/Linux/ArchLinux/$repo/os/$arch
|
||||
#Server = https://ftp.jaist.ac.jp/pub/Linux/ArchLinux/$repo/os/$arch
|
||||
#Server = https://mirror.saebasol.org/archlinux/$repo/os/$arch
|
||||
|
||||
## Kazakhstan
|
||||
#Server = http://mirror.hoster.kz/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.hoster.kz/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.ps.kz/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.ps.kz/archlinux/$repo/os/$arch
|
||||
|
||||
## Kenya
|
||||
#Server = http://archlinux.mirror.liquidtelecom.com/$repo/os/$arch
|
||||
#Server = https://archlinux.mirror.liquidtelecom.com/$repo/os/$arch
|
||||
|
||||
## Latvia
|
||||
#Server = http://archlinux.koyanet.lv/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.koyanet.lv/archlinux/$repo/os/$arch
|
||||
|
||||
## Lithuania
|
||||
#Server = http://mirrors.atviras.lt/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.atviras.lt/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.ims.nksc.lt/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.ims.nksc.lt/archlinux/$repo/os/$arch
|
||||
|
||||
## Luxembourg
|
||||
#Server = http://archmirror.xyz/archlinux/$repo/os/$arch
|
||||
#Server = https://archmirror.xyz/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.root.lu/$repo/os/$arch
|
||||
|
||||
## Mexico
|
||||
#Server = https://arch.jsc.mx/$repo/os/$arch
|
||||
|
||||
## Moldova
|
||||
#Server = http://md.mirrors.hacktegic.com/archlinux/$repo/os/$arch
|
||||
#Server = https://md.mirrors.hacktegic.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.ihost.md/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.ihost.md/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.mangohost.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.mangohost.net/archlinux/$repo/os/$arch
|
||||
|
||||
## Monaco
|
||||
#Server = http://archlinux.qontinuum.space/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.qontinuum.space/archlinux/$repo/os/$arch
|
||||
|
||||
## Netherlands
|
||||
#Server = http://mirror.cj2.nl/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.cj2.nl/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.daan.vodka/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.evoluso.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.i3d.net/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.i3d.net/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://arch.jeweet.net/$repo/os/$arch
|
||||
#Server = http://mirror.koddos.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.koddos.net/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.mirrors.lavatech.top/$repo/os/$arch
|
||||
#Server = https://arch.mirrors.lavatech.top/$repo/os/$arch
|
||||
#Server = http://mirror.ams1.nl.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.ams1.nl.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.liteserver.nl/$repo/os/$arch
|
||||
#Server = https://archlinux.mirror.liteserver.nl/$repo/os/$arch
|
||||
#Server = http://mirror.lyrahosting.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.lyrahosting.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.mijn.host/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.mijn.host/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.neostrada.nl/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.neostrada.nl/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.nluug.nl/os/Linux/distr/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.pcextreme.nl/$repo/os/$arch
|
||||
#Server = https://archlinux.mirror.pcextreme.nl/$repo/os/$arch
|
||||
#Server = http://mirror.serverion.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.serverion.com/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.snt.utwente.nl/pub/os/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.tarellia.net/distr/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.tarellia.net/distr/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.viflcraft.top/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.viflcraft.top/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.wearetriple.com/$repo/os/$arch
|
||||
#Server = https://archlinux.mirror.wearetriple.com/$repo/os/$arch
|
||||
#Server = http://mirror-archlinux.webruimtehosting.nl/$repo/os/$arch
|
||||
#Server = https://mirror-archlinux.webruimtehosting.nl/$repo/os/$arch
|
||||
#Server = http://mirrors.xtom.nl/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.xtom.nl/archlinux/$repo/os/$arch
|
||||
|
||||
## New Caledonia
|
||||
#Server = http://mirror.lagoon.nc/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.nautile.nc/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.nautile.nc/archlinux/$repo/os/$arch
|
||||
|
||||
## New Zealand
|
||||
#Server = http://mirror.2degrees.nz/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.2degrees.nz/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.fsmg.org.nz/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.fsmg.org.nz/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.ourhome.kiwi/$repo/os/$arch
|
||||
#Server = http://mirror.smith.geek.nz/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.smith.geek.nz/archlinux/$repo/os/$arch
|
||||
|
||||
## North Macedonia
|
||||
#Server = http://arch.softver.org.mk/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.onevip.mk/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.t-home.mk/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.t-home.mk/archlinux/$repo/os/$arch
|
||||
|
||||
## Norway
|
||||
#Server = http://mirror.archlinux.no/$repo/os/$arch
|
||||
#Server = https://mirror.archlinux.no/$repo/os/$arch
|
||||
#Server = http://archlinux.uib.no/$repo/os/$arch
|
||||
#Server = http://lysakermoen.com/Software/Linux/Mirrors/ArchLinux/$repo/os/$arch
|
||||
#Server = https://lysakermoen.com/Software/Linux/Mirrors/ArchLinux/$repo/os/$arch
|
||||
#Server = http://mirror.neuf.no/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.neuf.no/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.terrahost.no/linux/archlinux/$repo/os/$arch
|
||||
|
||||
## Pakistan
|
||||
#Server = http://repo.inara.pk/archlinux/$repo/os/$arch
|
||||
#Server = https://repo.inara.pk/archlinux/$repo/os/$arch
|
||||
|
||||
## Paraguay
|
||||
#Server = http://archlinux.mirror.py/archlinux/$repo/os/$arch
|
||||
|
||||
## Poland
|
||||
#Server = https://mirror.eloteam.tk/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.icm.edu.pl/pub/Linux/dist/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.icm.edu.pl/pub/Linux/dist/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.juniorjpdj.pl/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.juniorjpdj.pl/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.midov.pl/arch/$repo/os/$arch
|
||||
#Server = https://arch.midov.pl/arch/$repo/os/$arch
|
||||
#Server = http://mirror.onet.pl/pub/mirrors/archlinux/$repo/os/$arch
|
||||
#Server = http://piotrkosoft.net/pub/mirrors/ftp.archlinux.org/$repo/os/$arch
|
||||
#Server = http://ftp.psnc.pl/linux/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.psnc.pl/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.sakamoto.pl/$repo/os/$arch
|
||||
#Server = https://arch.sakamoto.pl/$repo/os/$arch
|
||||
#Server = http://repo.skni.umcs.pl/archlinux/$repo/os/$arch
|
||||
#Server = https://repo.skni.umcs.pl/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.vectranet.pl/archlinux/$repo/os/$arch
|
||||
|
||||
## Portugal
|
||||
#Server = http://glua.ua.pt/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://glua.ua.pt/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.rnl.tecnico.ulisboa.pt/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.rnl.tecnico.ulisboa.pt/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.up.pt/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.up.pt/pub/archlinux/$repo/os/$arch
|
||||
|
||||
## Romania
|
||||
#Server = http://mirrors.chroot.ro/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.chroot.ro/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.efect.ro/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.efect.ro/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.flokinet.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.flokinet.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.go.ro/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.go.ro/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.hostico.ro/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.hostico.ro/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirrors.linux.ro/$repo/os/$arch
|
||||
#Server = http://mirrors.m247.ro/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.nav.ro/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.nxthost.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.nxthost.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.pidginhost.com/arch/$repo/os/$arch
|
||||
#Server = https://mirrors.pidginhost.com/arch/$repo/os/$arch
|
||||
|
||||
## Russia
|
||||
#Server = http://mirror.kamtv.ru/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.kamtv.ru/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.lebedinets.ru/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.lebedinets.ru/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.surf/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.surf/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.nw-sys.ru/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.nw-sys.ru/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.powernet.com.ru/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.rol.ru/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.rol.ru/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.truenetwork.ru/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.truenetwork.ru/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.yal.sl-chat.ru/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.yandex.ru/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.yandex.ru/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.zepto.cloud/$repo/os/$arch
|
||||
|
||||
## Réunion
|
||||
#Server = http://arch.mithril.re/$repo/os/$arch
|
||||
|
||||
## Serbia
|
||||
#Server = http://arch.petarmaric.com/$repo/os/$arch
|
||||
#Server = http://mirror.pmf.kg.ac.rs/archlinux/$repo/os/$arch
|
||||
|
||||
## Singapore
|
||||
#Server = http://mirror.0x.sg/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.0x.sg/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.aktkn.sg/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.aktkn.sg/archlinux/$repo/os/$arch
|
||||
#Server = https://download.nus.edu.sg/mirror/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.guillaumea.fr/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.guillaumea.fr/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.jingk.ai/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.jingk.ai/archlinux/$repo/os/$arch
|
||||
#Server = http://ossmirror.mycloud.services/os/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.sg.gs/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.sg.gs/archlinux/$repo/os/$arch
|
||||
|
||||
## Slovakia
|
||||
#Server = http://mirror.lnx.sk/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.lnx.sk/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://tux.rainside.sk/archlinux/$repo/os/$arch
|
||||
|
||||
## Slovenia
|
||||
#Server = http://archimonde.ts.si/archlinux/$repo/os/$arch
|
||||
#Server = https://archimonde.ts.si/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.tux.si/arch/$repo/os/$arch
|
||||
#Server = https://mirror.tux.si/arch/$repo/os/$arch
|
||||
|
||||
## South Africa
|
||||
#Server = http://archlinux.za.mirror.allworldit.com/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.za.mirror.allworldit.com/archlinux/$repo/os/$arch
|
||||
#Server = http://za.mirror.archlinux-br.org/$repo/os/$arch
|
||||
#Server = http://mirror.is.co.za/mirror/archlinux.org/$repo/os/$arch
|
||||
#Server = http://mirrors.urbanwave.co.za/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.urbanwave.co.za/archlinux/$repo/os/$arch
|
||||
|
||||
## South Korea
|
||||
#Server = http://mirror.anigil.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.anigil.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.funami.tech/arch/$repo/os/$arch
|
||||
#Server = https://mirror.funami.tech/arch/$repo/os/$arch
|
||||
#Server = https://seoul.mirror.pkgbuild.com/$repo/os/$arch
|
||||
#Server = http://ftp.harukasan.org/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.harukasan.org/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.lanet.kr/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.lanet.kr/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.misakamikoto.network/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.misakamikoto.network/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.premi.st/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.premi.st/archlinux/$repo/os/$arch
|
||||
|
||||
## Spain
|
||||
#Server = https://mirror.cloroformo.org/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.librelabucm.org/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.librelabucm.org/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.rediris.es/mirror/archlinux/$repo/os/$arch
|
||||
|
||||
## Sweden
|
||||
#Server = http://ftp.acc.umu.se/mirror/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.acc.umu.se/mirror/archlinux/$repo/os/$arch
|
||||
#Server = http://ftpmirror.infania.net/mirror/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.ludd.ltu.se/mirrors/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.lysator.liu.se/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.lysator.liu.se/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.osbeck.com/archlinux/$repo/os/$arch
|
||||
|
||||
## Switzerland
|
||||
#Server = http://pkg.adfinis.com/archlinux/$repo/os/$arch
|
||||
#Server = https://pkg.adfinis.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.init7.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.init7.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.metanet.ch/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.metanet.ch/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.puzzle.ch/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.puzzle.ch/archlinux/$repo/os/$arch
|
||||
#Server = https://theswissbay.ch/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.ungleich.ch/mirror/packages/archlinux/$repo/os/$arch
|
||||
|
||||
## Taiwan
|
||||
#Server = http://mirror.archlinux.tw/ArchLinux/$repo/os/$arch
|
||||
#Server = https://mirror.archlinux.tw/ArchLinux/$repo/os/$arch
|
||||
#Server = http://archlinux.ccns.ncku.edu.tw/archlinux/$repo/os/$arch
|
||||
#Server = http://free.nchc.org.tw/arch/$repo/os/$arch
|
||||
#Server = https://free.nchc.org.tw/arch/$repo/os/$arch
|
||||
#Server = http://archlinux.cs.nycu.edu.tw/$repo/os/$arch
|
||||
#Server = https://archlinux.cs.nycu.edu.tw/$repo/os/$arch
|
||||
#Server = http://ftp.tku.edu.tw/Linux/ArchLinux/$repo/os/$arch
|
||||
#Server = http://ftp.yzu.edu.tw/Linux/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.yzu.edu.tw/Linux/archlinux/$repo/os/$arch
|
||||
|
||||
## Thailand
|
||||
#Server = https://mirror.cyberbits.asia/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.kku.ac.th/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.kku.ac.th/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror2.totbb.net/archlinux/$repo/os/$arch
|
||||
|
||||
## Turkey
|
||||
#Server = http://ftp.linux.org.tr/archlinux/$repo/os/$arch
|
||||
#Server = http://depo.turkiye.linux.web.tr/archlinux/$repo/os/$arch
|
||||
#Server = https://depo.turkiye.linux.web.tr/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.veriteknik.net.tr/archlinux/$repo/os/$arch
|
||||
|
||||
## Ukraine
|
||||
#Server = http://archlinux.astra.in.ua/$repo/os/$arch
|
||||
#Server = https://archlinux.astra.in.ua/$repo/os/$arch
|
||||
#Server = http://repo.endpoint.ml/archlinux/$repo/os/$arch
|
||||
#Server = https://repo.endpoint.ml/archlinux/$repo/os/$arch
|
||||
#Server = http://fastmirror.pp.ua/archlinux/$repo/os/$arch
|
||||
#Server = https://fastmirror.pp.ua/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.ip-connect.vn.ua/$repo/os/$arch
|
||||
#Server = https://archlinux.ip-connect.vn.ua/$repo/os/$arch
|
||||
#Server = http://mirror.mirohost.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.mirohost.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.nix.org.ua/linux/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.nix.org.ua/linux/archlinux/$repo/os/$arch
|
||||
|
||||
## United Kingdom
|
||||
#Server = http://archlinux.uk.mirror.allworldit.com/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.uk.mirror.allworldit.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.bytemark.co.uk/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.bytemark.co.uk/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.gethosted.online/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.gethosted.online/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.manchester.m247.com/arch-linux/$repo/os/$arch
|
||||
#Server = http://mirrors.melbourne.co.uk/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.melbourne.co.uk/archlinux/$repo/os/$arch
|
||||
#Server = http://www.mirrorservice.org/sites/ftp.archlinux.org/$repo/os/$arch
|
||||
#Server = https://www.mirrorservice.org/sites/ftp.archlinux.org/$repo/os/$arch
|
||||
#Server = http://mirror.netweaver.uk/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.netweaver.uk/archlinux/$repo/os/$arch
|
||||
#Server = http://lon.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = https://lon.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.serverspace.co.uk/arch/$repo/os/$arch
|
||||
#Server = http://mirrors.ukfast.co.uk/sites/archlinux.org/$repo/os/$arch
|
||||
#Server = https://mirrors.ukfast.co.uk/sites/archlinux.org/$repo/os/$arch
|
||||
#Server = http://mirror.cov.ukservers.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.cov.ukservers.com/archlinux/$repo/os/$arch
|
||||
|
||||
## United States
|
||||
#Server = http://mirrors.acm.wpi.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.advancedhosters.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.aggregate.org/archlinux/$repo/os/$arch
|
||||
#Server = http://ca.us.mirror.archlinux-br.org/$repo/os/$arch
|
||||
#Server = http://il.us.mirror.archlinux-br.org/$repo/os/$arch
|
||||
#Server = http://mirror.arizona.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.arizona.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://arlm.tyzoid.com/$repo/os/$arch
|
||||
#Server = https://arlm.tyzoid.com/$repo/os/$arch
|
||||
#Server = https://mirror.ava.dev/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.bloomu.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.bloomu.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.cat.pdx.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.cc.columbia.edu/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.clarkson.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.clarkson.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.mirror.constant.com/$repo/os/$arch
|
||||
#Server = https://arch.mirror.constant.com/$repo/os/$arch
|
||||
#Server = http://mirror.cs.pitt.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.cs.vt.edu/pub/ArchLinux/$repo/os/$arch
|
||||
#Server = http://mirror.cybersecurity.nmt.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.cybersecurity.nmt.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://distro.ibiblio.org/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.es.its.nyu.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.ette.biz/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.ette.biz/archlinux/$repo/os/$arch
|
||||
#Server = http://codingflyboy.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://coresite.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://forksystems.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://irltoolkit.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mnvoip.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://ridgewireless.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://uvermont.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://ziply.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://codingflyboy.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://coresite.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://forksystems.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://irltoolkit.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mnvoip.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://ridgewireless.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://uvermont.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://ziply.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.fossable.org/archlinux/$repo/os/$arch
|
||||
#Server = https://america.mirror.pkgbuild.com/$repo/os/$arch
|
||||
#Server = http://mirrors.gigenet.com/archlinux/$repo/os/$arch
|
||||
#Server = http://www.gtlib.gatech.edu/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.hackingand.coffee/arch/$repo/os/$arch
|
||||
#Server = https://mirror.hackingand.coffee/arch/$repo/os/$arch
|
||||
#Server = https://mirror.hodgepodge.dev/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.hostup.org/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.hostup.org/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.hu.fo/archlinux/$repo/os/$arch
|
||||
#Server = https://arch.hu.fo/archlinux/$repo/os/$arch
|
||||
#Server = http://repo.ialab.dsu.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://repo.ialab.dsu.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://arch.mirror.ivo.st/$repo/os/$arch
|
||||
#Server = http://mirrors.kernel.org/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.kernel.org/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.dal10.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.mia11.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.sfo12.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.wdc1.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.dal10.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.mia11.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.sfo12.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.wdc1.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.liquidweb.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.lty.me/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.lty.me/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.lug.mtu.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.lug.mtu.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.math.princeton.edu/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.metrocast.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.kaminski.io/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.kaminski.io/archlinux/$repo/os/$arch
|
||||
#Server = http://iad.mirrors.misaka.one/archlinux/$repo/os/$arch
|
||||
#Server = https://iad.mirrors.misaka.one/archlinux/$repo/os/$arch
|
||||
#Server = http://repo.miserver.it.umich.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.mit.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.mit.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.ocf.berkeley.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.ocf.berkeley.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://archmirror1.octyl.net/$repo/os/$arch
|
||||
#Server = https://archmirror1.octyl.net/$repo/os/$arch
|
||||
#Server = http://ftp.osuosl.org/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.osuosl.org/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.mirrors.pair.com/$repo/os/$arch
|
||||
#Server = http://dfw.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = http://iad.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = http://ord.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = https://dfw.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = https://iad.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = https://ord.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.radwebhosting.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.radwebhosting.com/archlinux/$repo/os/$arch
|
||||
#Server = http://plug-mirror.rcac.purdue.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://plug-mirror.rcac.purdue.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.rit.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.rit.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.rutgers.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.rutgers.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror2.sandyriver.net/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.siena.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.sonic.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.sonic.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.phx1.us.spryservers.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.phx1.us.spryservers.net/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.mirror.square-r00t.net/$repo/os/$arch
|
||||
#Server = https://arch.mirror.square-r00t.net/$repo/os/$arch
|
||||
#Server = http://mirror.stephen304.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.stephen304.com/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.sudhip.com/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.sudhip.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.pit.teraswitch.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.pit.teraswitch.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.the-repo.org/ArchMirror/$repo/os/$arch
|
||||
#Server = https://mirror.theash.xyz/arch/$repo/os/$arch
|
||||
#Server = https://mirror.tmmworkshop.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.umd.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.umd.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.vectair.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.vectair.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.vtti.vt.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://wcbmedia.io:8000/$repo/os/$arch
|
||||
#Server = http://mirrors.xmission.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.xtom.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.xtom.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.zackmyers.io/archlinux/$repo/os/$arch
|
||||
#Server = https://zxcvfdsa.com/arch/$repo/os/$arch
|
||||
|
||||
## Uzbekistan
|
||||
#Server = http://mirror.dc.uz/arch/$repo/os/$arch
|
||||
#Server = https://mirror.dc.uz/arch/$repo/os/$arch
|
||||
|
||||
## Vietnam
|
||||
#Server = https://mirrors.42tm.tech/archlinux/$repo/os/$arch
|
||||
#Server = http://f.archlinuxvn.org/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.bizflycloud.vn/archlinux/$repo/os/$arch
|
||||
|
|
@ -1,47 +0,0 @@
|
|||
## Official Website
|
||||
Server = https://repo.bioarchlinux.org/$arch
|
||||
|
||||
## Australia
|
||||
### xTom
|
||||
# Server = https://mirrors.xtom.au/bioarchlinux/$arch
|
||||
|
||||
## China
|
||||
### ISCAS
|
||||
# Server = https://mirror.iscas.ac.cn/BioArchLinux/$arch
|
||||
### Nanjing University
|
||||
# Server = http://mirror.nju.edu.cn/bioarchlinux/$arch
|
||||
# Server = https://mirror.nju.edu.cn/bioarchlinux/$arch
|
||||
### Nanjing University of Posts and Telecommunications
|
||||
# Server = http://mirrors.njupt.edu.cn/bioarchlinux/$arch
|
||||
# Server = https://mirrors.njupt.edu.cn/bioarchlinux/$arch
|
||||
### Shandong University
|
||||
# Server = http://mirrors.sdu.edu.cn/bioarchlinux/$arch
|
||||
# Server = https://mirrors.sdu.edu.cn/bioarchlinux/$arch
|
||||
### Xi'an Jiaotong University
|
||||
# Server = https://mirrors.xjtu.edu.cn/bioarchlinux/$arch
|
||||
|
||||
## China (HongKong)
|
||||
### xTom
|
||||
# Server = https://mirrors.xtom.hk/bioarchlinux/$arch
|
||||
|
||||
## Estonia
|
||||
### xTom
|
||||
# Server = https://mirrors.xtom.ee/bioarchlinux/$arch
|
||||
|
||||
## Germany
|
||||
### sunred
|
||||
# Server = https://mirror.sunred.org/bioarchlinux/$arch
|
||||
### xTom
|
||||
# Server = https://mirrors.xtom.de/bioarchlinux/$arch
|
||||
|
||||
## Japan
|
||||
### xTom
|
||||
# Server = https://mirrors.xtom.jp/bioarchlinux/$arch
|
||||
|
||||
## Netherland
|
||||
### xTom
|
||||
# Server = https://mirrors.xtom.nl/bioarchlinux/$arch
|
||||
|
||||
## United States
|
||||
### xTom
|
||||
# Server = https://mirrors.xtom.com/bioarchlinux/$arch
|
|
@ -1,8 +0,0 @@
|
|||
#%PAM-1.0
|
||||
|
||||
auth required pam_securetty.so
|
||||
auth requisite pam_nologin.so
|
||||
auth include system-local-login
|
||||
account include system-local-login
|
||||
session include system-local-login
|
||||
auth requisite pam_succeed_if.so user = bio
|
|
@ -1,2 +0,0 @@
|
|||
root:x:0:0:root:/root:/usr/bin/zsh
|
||||
bio:x:1000:1000::/home/bio:/usr/bin/zsh
|
|
@ -1 +0,0 @@
|
|||
/run/systemd/resolve/stub-resolv.conf
|
|
@ -1,2 +0,0 @@
|
|||
root::14871::::::
|
||||
bio:$6$iG5kiVqPH5TjAPlP$Awy56r0ru1Df4uxS/UtuH6Ugg9yxy1.pMDSTT2pePuVOCFzwZ/a3Qc48RbHmetR2kC.q9qNlaInSTPgu.YPhb.:14871::::::
|
|
@ -1,116 +0,0 @@
|
|||
# $OpenBSD: sshd_config,v 1.104 2021/07/02 05:11:21 dtucker Exp $
|
||||
|
||||
# This is the sshd server system-wide configuration file. See
|
||||
# sshd_config(5) for more information.
|
||||
|
||||
# This sshd was compiled with PATH=/usr/local/sbin:/usr/local/bin:/usr/bin
|
||||
|
||||
# The strategy used for options in the default sshd_config shipped with
|
||||
# OpenSSH is to specify options with their default value where
|
||||
# possible, but leave them commented. Uncommented options override the
|
||||
# default value.
|
||||
|
||||
#Port 22
|
||||
#AddressFamily any
|
||||
#ListenAddress 0.0.0.0
|
||||
#ListenAddress ::
|
||||
|
||||
#HostKey /etc/ssh/ssh_host_rsa_key
|
||||
#HostKey /etc/ssh/ssh_host_ecdsa_key
|
||||
#HostKey /etc/ssh/ssh_host_ed25519_key
|
||||
|
||||
# Ciphers and keying
|
||||
#RekeyLimit default none
|
||||
|
||||
# Logging
|
||||
#SyslogFacility AUTH
|
||||
#LogLevel INFO
|
||||
|
||||
# Authentication:
|
||||
|
||||
#LoginGraceTime 2m
|
||||
PermitRootLogin yes
|
||||
#StrictModes yes
|
||||
#MaxAuthTries 6
|
||||
#MaxSessions 10
|
||||
|
||||
#PubkeyAuthentication yes
|
||||
|
||||
# The default is to check both .ssh/authorized_keys and .ssh/authorized_keys2
|
||||
# but this is overridden so installations will only check .ssh/authorized_keys
|
||||
AuthorizedKeysFile .ssh/authorized_keys
|
||||
|
||||
#AuthorizedPrincipalsFile none
|
||||
|
||||
#AuthorizedKeysCommand none
|
||||
#AuthorizedKeysCommandUser nobody
|
||||
|
||||
# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
|
||||
#HostbasedAuthentication no
|
||||
# Change to yes if you don't trust ~/.ssh/known_hosts for
|
||||
# HostbasedAuthentication
|
||||
#IgnoreUserKnownHosts no
|
||||
# Don't read the user's ~/.rhosts and ~/.shosts files
|
||||
#IgnoreRhosts yes
|
||||
|
||||
# To disable tunneled clear text passwords, change to no here!
|
||||
#PasswordAuthentication yes
|
||||
#PermitEmptyPasswords no
|
||||
|
||||
# Change to no to disable s/key passwords
|
||||
#KbdInteractiveAuthentication yes
|
||||
|
||||
# Kerberos options
|
||||
#KerberosAuthentication no
|
||||
#KerberosOrLocalPasswd yes
|
||||
#KerberosTicketCleanup yes
|
||||
#KerberosGetAFSToken no
|
||||
|
||||
# GSSAPI options
|
||||
#GSSAPIAuthentication no
|
||||
#GSSAPICleanupCredentials yes
|
||||
|
||||
# Set this to 'yes' to enable PAM authentication, account processing,
|
||||
# and session processing. If this is enabled, PAM authentication will
|
||||
# be allowed through the KbdInteractiveAuthentication and
|
||||
# PasswordAuthentication. Depending on your PAM configuration,
|
||||
# PAM authentication via KbdInteractiveAuthentication may bypass
|
||||
# the setting of "PermitRootLogin without-password".
|
||||
# If you just want the PAM account and session checks to run without
|
||||
# PAM authentication, then enable this but set PasswordAuthentication
|
||||
# and KbdInteractiveAuthentication to 'no'.
|
||||
UsePAM yes
|
||||
|
||||
#AllowAgentForwarding yes
|
||||
#AllowTcpForwarding yes
|
||||
#GatewayPorts no
|
||||
#X11Forwarding no
|
||||
#X11DisplayOffset 10
|
||||
#X11UseLocalhost yes
|
||||
#PermitTTY yes
|
||||
PrintMotd no # pam does that
|
||||
#PrintLastLog yes
|
||||
#TCPKeepAlive yes
|
||||
#PermitUserEnvironment no
|
||||
#Compression delayed
|
||||
#ClientAliveInterval 0
|
||||
#ClientAliveCountMax 3
|
||||
#UseDNS no
|
||||
#PidFile /run/sshd.pid
|
||||
#MaxStartups 10:30:100
|
||||
#PermitTunnel no
|
||||
#ChrootDirectory none
|
||||
#VersionAddendum none
|
||||
|
||||
# no default banner path
|
||||
#Banner none
|
||||
|
||||
# override default of no subsystems
|
||||
Subsystem sftp /usr/lib/ssh/sftp-server
|
||||
|
||||
# Example of overriding settings on a per-user basis
|
||||
#Match User anoncvs
|
||||
# X11Forwarding no
|
||||
# AllowTcpForwarding no
|
||||
# PermitTTY no
|
||||
# ForceCommand cvs server
|
|
@ -1,2 +0,0 @@
|
|||
[Journal]
|
||||
Storage=volatile
|
|
@ -1,4 +0,0 @@
|
|||
[Login]
|
||||
HandleSuspendKey=ignore
|
||||
HandleHibernateKey=ignore
|
||||
HandleLidSwitch=ignore
|
|
@ -1,21 +0,0 @@
|
|||
[Match]
|
||||
# Matching with "Type=ether" causes issues with containers because it also matches virtual Ethernet interfaces (veth*).
|
||||
# See https://bugs.archlinux.org/task/70892
|
||||
# Instead match by globbing the network interface name.
|
||||
Name=en*
|
||||
Name=eth*
|
||||
|
||||
[Network]
|
||||
DHCP=yes
|
||||
IPv6PrivacyExtensions=yes
|
||||
|
||||
# systemd-networkd does not set per-interface-type default route metrics
|
||||
# https://github.com/systemd/systemd/issues/17698
|
||||
# Explicitly set route metric, so that Ethernet is preferred over Wi-Fi and Wi-Fi is preferred over mobile broadband.
|
||||
# Use values from NetworkManager. From nm_device_get_route_metric_default in
|
||||
# https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/blob/main/src/core/devices/nm-device.c
|
||||
[DHCPv4]
|
||||
RouteMetric=100
|
||||
|
||||
[IPv6AcceptRA]
|
||||
RouteMetric=100
|
|
@ -1,17 +0,0 @@
|
|||
[Match]
|
||||
Name=wl*
|
||||
|
||||
[Network]
|
||||
DHCP=yes
|
||||
IPv6PrivacyExtensions=yes
|
||||
|
||||
# systemd-networkd does not set per-interface-type default route metrics
|
||||
# https://github.com/systemd/systemd/issues/17698
|
||||
# Explicitly set route metric, so that Ethernet is preferred over Wi-Fi and Wi-Fi is preferred over mobile broadband.
|
||||
# Use values from NetworkManager. From nm_device_get_route_metric_default in
|
||||
# https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/blob/main/src/core/devices/nm-device.c
|
||||
[DHCPv4]
|
||||
RouteMetric=600
|
||||
|
||||
[IPv6AcceptRA]
|
||||
RouteMetric=600
|
|
@ -1,17 +0,0 @@
|
|||
[Match]
|
||||
Name=ww*
|
||||
|
||||
[Network]
|
||||
DHCP=yes
|
||||
IPv6PrivacyExtensions=yes
|
||||
|
||||
# systemd-networkd does not set per-interface-type default route metrics
|
||||
# https://github.com/systemd/systemd/issues/17698
|
||||
# Explicitly set route metric, so that Ethernet is preferred over Wi-Fi and Wi-Fi is preferred over mobile broadband.
|
||||
# Use values from NetworkManager. From nm_device_get_route_metric_default in
|
||||
# https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/blob/main/src/core/devices/nm-device.c
|
||||
[DHCPv4]
|
||||
RouteMetric=700
|
||||
|
||||
[IPv6AcceptRA]
|
||||
RouteMetric=700
|
|
@ -1 +0,0 @@
|
|||
/dev/null
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/cloud-config.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/cloud-final.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/cloud-init-local.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/cloud-init.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/ModemManager.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/systemd-networkd.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/systemd-resolved.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/systemd-timesyncd.service
|
|
@ -1,8 +0,0 @@
|
|||
[Unit]
|
||||
Description=Temporary /etc/pacman.d/gnupg directory
|
||||
|
||||
[Mount]
|
||||
What=ramfs
|
||||
Where=/etc/pacman.d/gnupg
|
||||
Type=ramfs
|
||||
Options=mode=0755
|
|
@ -1,3 +0,0 @@
|
|||
[Service]
|
||||
ExecStart=
|
||||
ExecStart=-/sbin/agetty -o '-p -f -- \\u' --noclear --autologin bio %I $TERM
|
|
@ -1,13 +0,0 @@
|
|||
[Unit]
|
||||
Description=Unmute All Sound Card Controls For Use With The Live Arch Environment
|
||||
# This needs to run after the audio device becomes available.
|
||||
Wants=systemd-udev-settle.service
|
||||
After=systemd-udev-settle.service sound.target
|
||||
ConditionKernelCommandLine=accessibility=on
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=/usr/local/bin/livecd-sound -u
|
||||
|
||||
[Install]
|
||||
WantedBy=sound.target
|
|
@ -1,20 +0,0 @@
|
|||
[Unit]
|
||||
Description=Screen reader service
|
||||
After=livecd-alsa-unmuter.service
|
||||
Before=getty@tty1.service
|
||||
ConditionKernelCommandLine=accessibility=on
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
TTYPath=/dev/tty13
|
||||
ExecStartPre=/usr/bin/chvt 13
|
||||
ExecStart=/usr/local/bin/livecd-sound -p
|
||||
ExecStartPost=/usr/bin/chvt 1
|
||||
ExecStartPost=systemctl start espeakup.service
|
||||
StandardInput=tty
|
||||
TTYVHangup=yes
|
||||
TTYVTDisallocate=yes
|
||||
RemainAfterExit=true
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/ModemManager.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/hv_fcopy_daemon.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/hv_kvp_daemon.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/hv_vss_daemon.service
|
|
@ -1 +0,0 @@
|
|||
/etc/systemd/system/livecd-talk.service
|
|
@ -1 +0,0 @@
|
|||
../pacman-init.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/sshd.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/systemd-resolved.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/vboxservice.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/vmtoolsd.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/vmware-vmblock-fuse.service
|
|
@ -1,15 +0,0 @@
|
|||
[Unit]
|
||||
Description=Initializes Pacman keyring
|
||||
Requires=etc-pacman.d-gnupg.mount
|
||||
After=etc-pacman.d-gnupg.mount time-sync.target
|
||||
BindsTo=etc-pacman.d-gnupg.mount
|
||||
Before=archlinux-keyring-wkd-sync.service
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
RemainAfterExit=yes
|
||||
ExecStart=/usr/bin/pacman-key --init
|
||||
ExecStart=/usr/bin/pacman-key --populate
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
|
@ -1 +0,0 @@
|
|||
../livecd-alsa-unmuter.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/systemd-time-wait-sync.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/systemd-timesyncd.service
|
|
@ -1,5 +0,0 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
exec lynx 'https://github.com/BioArchLinux/iso'
|
|
@ -1,248 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
usage() {
|
||||
cat <<- _EOF_
|
||||
live cd sound helper script.
|
||||
Usage: livecdsound [OPTION]
|
||||
OPTIONS
|
||||
-u, --unmute unmute all sound cards
|
||||
-p, --pick select a card for speetch output
|
||||
-h, --help Show this usage message
|
||||
|
||||
_EOF_
|
||||
}
|
||||
|
||||
bugout () {
|
||||
printf "/usr/local/bin/livecdsound: programming error"
|
||||
stat_fail
|
||||
}
|
||||
|
||||
echo_card_indices()
|
||||
{
|
||||
if [ -f /proc/asound/cards ] ; then
|
||||
sed -n -e's/^[[:space:]]*\([0-7]\)[[:space:]].*/\1/p' /proc/asound/cards
|
||||
fi
|
||||
}
|
||||
|
||||
# The following functions try to set many controls.
|
||||
# No card has all the controls and so some of the attempts are bound to fail.
|
||||
# Because of this, the functions can't return useful status values.
|
||||
|
||||
# $1 <card id>
|
||||
# $2 <control>
|
||||
# $3 <level>
|
||||
unmute_and_set_level(){
|
||||
{ [ "$3" ] &&[ "$2" ] && [ "$1" ] ; } || bugout
|
||||
systemd-cat -t "livecdsound" printf "Setting: %s on card: %s to %s\n" "$2" "$1" "$3"
|
||||
systemd-cat -t "livecdsound" amixer -c "$1" set "$2" "$3" unmute
|
||||
return 0
|
||||
}
|
||||
|
||||
# $1 <card id>
|
||||
# $2 <control>
|
||||
mute_and_zero_level()
|
||||
{
|
||||
{ [ "$1" ] && [ "$2" ] ; } || bugout
|
||||
systemd-cat -t "livecdsound" printf "Muting control: %s on card: %s\n" "$2" "$1"
|
||||
systemd-cat -t "livecdsound" amixer -c "$1" set "$2" "0%" mute
|
||||
return 0
|
||||
}
|
||||
|
||||
# $1 <card ID>
|
||||
# $2 <control>
|
||||
# $3 "on" | "off"
|
||||
switch_control()
|
||||
{
|
||||
{ [ "$3" ] && [ "$1" ] ; } || bugout
|
||||
systemd-cat -t "livecdsound" printf "Switching control: %s on card: %s to %s\n" "$2" "$1" "$3"
|
||||
systemd-cat -t "livecdsound" amixer -c "$1" set "$2" "$3"
|
||||
return 0
|
||||
}
|
||||
|
||||
# $1 <card ID>
|
||||
sanify_levels_on_card()
|
||||
{
|
||||
unmute_and_set_level "$1" "Front" "80%"
|
||||
unmute_and_set_level "$1" "Master" "80%"
|
||||
unmute_and_set_level "$1" "Master Mono" "80%"
|
||||
unmute_and_set_level "$1" "Master Digital" "80%" # E.g., cs4237B
|
||||
unmute_and_set_level "$1" "Playback" "80%"
|
||||
unmute_and_set_level "$1" "Headphone" "100%"
|
||||
unmute_and_set_level "$1" "PCM" "80%"
|
||||
unmute_and_set_level "$1" "PCM,1" "80%" # E.g., ess1969
|
||||
unmute_and_set_level "$1" "DAC" "80%" # E.g., envy24, cs46xx
|
||||
unmute_and_set_level "$1" "DAC,0" "80%" # E.g., envy24
|
||||
unmute_and_set_level "$1" "DAC,1" "80%" # E.g., envy24
|
||||
unmute_and_set_level "$1" "Synth" "80%"
|
||||
unmute_and_set_level "$1" "CD" "80%"
|
||||
unmute_and_set_level "$1" "PC Speaker" "100%"
|
||||
|
||||
mute_and_zero_level "$1" "Mic"
|
||||
mute_and_zero_level "$1" "IEC958" # Ubuntu #19648
|
||||
|
||||
# Intel P4P800-MX
|
||||
switch_control "$1" "Master Playback Switch" on
|
||||
switch_control "$1" "Master Surround" on
|
||||
|
||||
# Trident/YMFPCI/emu10k1:
|
||||
unmute_and_set_level "$1" "Wave" "80%"
|
||||
unmute_and_set_level "$1" "Music" "80%"
|
||||
unmute_and_set_level "$1" "AC97" "80%"
|
||||
|
||||
# DRC:
|
||||
unmute_and_set_level "$1" "Dynamic Range Compression" "80%"
|
||||
|
||||
# Required for HDA Intel (hda-intel):
|
||||
unmute_and_set_level "$1" "Front" "80%"
|
||||
|
||||
# Required for SB Live 7.1/24-bit (ca0106):
|
||||
unmute_and_set_level "$1" "Analog Front" "80%"
|
||||
|
||||
# Required at least for Via 823x hardware on DFI K8M800-MLVF Motherboard
|
||||
switch_control "$1" "IEC958 Capture Monitor" off
|
||||
|
||||
# Required for hardware allowing toggles for AC97 through IEC958,
|
||||
# valid values are 0, 1, 2, 3. Needs to be set to 0 for PCM1.
|
||||
unmute_and_set_level "$1" "IEC958 Playback AC97-SPSA" "0"
|
||||
|
||||
# Required for newer Via hardware
|
||||
unmute_and_set_level "$1" "VIA DXS,0" "80%"
|
||||
unmute_and_set_level "$1" "VIA DXS,1" "80%"
|
||||
unmute_and_set_level "$1" "VIA DXS,2" "80%"
|
||||
unmute_and_set_level "$1" "VIA DXS,3" "80%"
|
||||
|
||||
# Required on some notebooks with ICH4:
|
||||
switch_control "$1" "Headphone Jack Sense" off
|
||||
switch_control "$1" "Line Jack Sense" off
|
||||
|
||||
# Some machines need one or more of these to be on;
|
||||
# others need one or more of these to be off:
|
||||
|
||||
switch_control "$1" "Audigy Analog/Digital Output Jack" on
|
||||
switch_control "$1" "SB Live Analog/Digital Output Jack" on
|
||||
|
||||
# D1984 -- Thinkpad T61/X61
|
||||
switch_control "$1" "Speaker" on
|
||||
switch_control "$1" "Headphone" on
|
||||
|
||||
# HDA-Intel w/ "Digital" capture mixer (See Ubuntu #193823)
|
||||
unmute_and_set_level "$1" "Digital" "80%"
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
# $1 <card ID> | "all"
|
||||
sanify_levels()
|
||||
{
|
||||
local ttsdml_returnstatus=0
|
||||
local card
|
||||
case "$1" in
|
||||
all)
|
||||
for card in $(echo_card_indices) ; do
|
||||
sanify_levels_on_card "$card" || ttsdml_returnstatus=1
|
||||
done
|
||||
;;
|
||||
*)
|
||||
sanify_levels_on_card "$1" || ttsdml_returnstatus=1
|
||||
;;
|
||||
esac
|
||||
return $ttsdml_returnstatus
|
||||
}
|
||||
|
||||
# List all cards that *should* be usable for PCM audio. In my experience,
|
||||
# the console speaker (handled by the pcsp driver) isn't a suitable playback
|
||||
# device, so we'll exclude it.
|
||||
list_non_pcsp_cards()
|
||||
{
|
||||
for card in $(echo_card_indices); do
|
||||
local cardfile="/proc/asound/card${card}/id"
|
||||
if [ -r "$cardfile" ] && [ -f "$cardfile" ] && \
|
||||
[ "$(cat "$cardfile")" != pcsp ]; then
|
||||
echo "$card"
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
# Properly initialize the sound card so that we have audio at boot.
|
||||
unmute_all_cards()
|
||||
{
|
||||
sanify_levels all
|
||||
}
|
||||
|
||||
is_numeric() {
|
||||
local str=$1
|
||||
[[ "$str" =~ ^[0-9]+$ ]]
|
||||
}
|
||||
|
||||
set_default_card() {
|
||||
local card=$1
|
||||
sed -e "s/%card%/$card/g" < /usr/local/share/livecd-sound/asound.conf.in \
|
||||
> /etc/asound.conf
|
||||
}
|
||||
|
||||
play_on_card() {
|
||||
local card=$1 file=$2
|
||||
aplay -q "-Dplughw:$card,0" "$file"
|
||||
}
|
||||
|
||||
# If there are multiple usable sound cards, prompt the user to choose one,
|
||||
# using auditory feedback.
|
||||
pick_a_card()
|
||||
{
|
||||
set -f
|
||||
usable_cards="$(list_non_pcsp_cards)"
|
||||
num_usable_cards="$(wc -w <<< "$usable_cards")"
|
||||
|
||||
if [ "$num_usable_cards" -eq 1 ]; then
|
||||
systemd-cat -t "livecdsound" printf "Only one sound card is detected\n"
|
||||
exit 0
|
||||
fi
|
||||
systemd-cat -t "livecdsound" printf "multiple sound cards detected\n"
|
||||
for card in $usable_cards; do
|
||||
if ! is_numeric "$card"; then
|
||||
continue
|
||||
fi
|
||||
play_on_card "$card" /usr/share/livecd-sounds/pick-a-card.wav&
|
||||
done
|
||||
wait
|
||||
sleep 1
|
||||
for card in $usable_cards; do
|
||||
if ! is_numeric "$card"; then
|
||||
continue
|
||||
fi
|
||||
play_on_card "$card" /usr/share/livecd-sounds/beep.wav
|
||||
if read -r -t 10; then
|
||||
systemd-cat -t "livecdsound" printf "Selecting %s sound card as default\n" "$card"
|
||||
set_default_card "$card"
|
||||
break
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
if [[ $# -eq 0 ]]; then
|
||||
echo "error: No argument passed."
|
||||
exit 1
|
||||
fi
|
||||
while [[ "${1}" != "" ]]; do
|
||||
case ${1} in
|
||||
-h|--help)
|
||||
usage
|
||||
exit
|
||||
;;
|
||||
-u|--unmute)
|
||||
systemd-cat -t "livecdsound" printf "Unmuting all cards"
|
||||
unmute_all_cards
|
||||
;;
|
||||
-p|--pick)
|
||||
pick_a_card
|
||||
;;
|
||||
*)
|
||||
echo "error: Unsupported argument"
|
||||
usage
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
shift
|
||||
done
|
|
@ -1 +0,0 @@
|
|||
B1F96021DB62254D:4:
|
|
@ -1,41 +0,0 @@
|
|||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
|
||||
mQGNBGEREo8BDADPlAh26kdcNAvA9GToOfxoR99ErTkdvzZhO4gse1ZDSs5B6CCP
|
||||
lx5nXjIwVE+TKgpQesgMIqZl6clJrSeZozWVJ7nHWQChamY1J3cs7P4Q2VQ7fJ5j
|
||||
u/VQ+TrSPuRpNv9qAE950t1M1tFKVO4HiH0ogHkf0/uX65R7vsSHZvbwekIXtHk1
|
||||
qIB94PiDmPhr3mJi4VWH+21nYpVJDrKQNUFUMUXJzmk4USvJSW4jEsuBcCXd1uCB
|
||||
BHIawQw825KE209cwNb3verKQ57YoudrpiQOHF+oZxFmQhMZMYqMtbCM6oWa3DWv
|
||||
2k7OVCV8MMx0YaXEoQsJ+AqbagBC8f/NzOMRNfnd4jO54AM3bguifbJrBJPIKuD0
|
||||
vYH8zEpaJmeYqyt5iE3hC+hWwS2nRq6+FeJGMfT8U8wSU0qSttcpcjfmjbrqq21a
|
||||
kWsEuySnELrhH2zKIuQwqDAvzXm4fpfLpWBrGVZjZjjgv2A0EwaN0EMZScQ4tmgK
|
||||
Ldd3k0EDFJJUfj8AEQEAAbQnR3VveWkgWmhhbmcgPGd1b3lpemhhbmdAbWFsYWNv
|
||||
bG9neS5uZXQ+iQHOBBMBCAA4FiEEDg+X+2aEuCFG0yausflgIdtiJU0FAmEREo8C
|
||||
GwMFCwkIBwIGFQoJCAsCBBYCAwECHgECF4AACgkQsflgIdtiJU0b+Qv/e0Oo6Cw0
|
||||
V3BqgjJQ4EmtvsBRVpoFskaGYarR2QlhTSP4lxF6t6WuDJl8v3TNdtJF0ZduKsf1
|
||||
l9GUiDRa5dtqledBY3viKBrCalD/IsGsxSON97ARBMap9wWnYCBlEfRrlXYKI/SY
|
||||
OdbShIoiN1spON39dsfN7DOd0luyz3CsbyaZaJccS5+Fjls/VEiCR+7f4MCoUPBN
|
||||
rbKbPO3ppBCybgo3ivL0idTnp7IqAm76+AiKiqIltLQFFwmTsW2xIw9wdhrxWW4L
|
||||
3KV2vL3YkNfDTZSk4Y1wQarJSQlvbA0ONJaIJUzm5rYf7GH8G0srOq/HYB3kNSBA
|
||||
RMkPOolZl1aXsB+KALaLUVLITNCXuKuZCwj34Q4yryMj3ga1eEwi55eHQcHoPo1s
|
||||
K3rO9YBsyYeUdk6bBGaJwtKOjs0vMH0DoPyrtNtp+eru4YBdaZUIVC5SMKC5xWyI
|
||||
ONVBct9zv9X/kqweNiZP6QIq9muophsItswaaY2twG9D1kG4CePSp1sfuQGNBGER
|
||||
Eo8BDADaYNchn94fcUf1D7BNRzzI07fqj3OnNGH6m67f40O61sl409VJ4+JvaWtN
|
||||
mL6Yb/0zY8lbKzL6fEmo+lUx+QSmbDaqsc1otlxP5taH5iEjJUoyv8TFOkrqeguL
|
||||
THHsbX5MowR5LUKlqJaV777Zr8zEj2e92aWTCyE/hSwyBAk725R1vcGf2pFVOjc1
|
||||
HjpqKEM291rtlb6s/IXUVY0lKulKcT865ilBxiHgs2Yi8wrOjfMHitjMIXKUewAy
|
||||
/y1bOD4udgm5ImFUBAnrTTn4REv53imINQ104VwvBanMPzS/5YU5XPnm2bz+/2tn
|
||||
7LdTYv88td44ygra/Uq32Img1w+xnS5ZTv2alEqRZDmtitXoNOPO6vqCW0lsjDj3
|
||||
D1satl0pGLF2iWquxtjwL4WdQv3Hy7/tcQb8lcXhDBL0p+op5DB8Qe6P4MY3bo3R
|
||||
i4TV7H1VoB7yAquWAQEc4LCsG5JkYthdMO8El9uapOpSf3LIKyf8bQv79vMbaduf
|
||||
aarHDTkAEQEAAYkBtgQYAQgAIBYhBA4Pl/tmhLghRtMmrrH5YCHbYiVNBQJhERKP
|
||||
AhsMAAoJELH5YCHbYiVN8OgL/3EQUC4BYJ2V6xVP1fxdUYTN+/+Po03F35aIzzn2
|
||||
nK60YmMFf19Mb66iSsPhBvz+vqn8fMMA4vEj0KoeMzPbtTmpUEqw1EmoQANUCDf6
|
||||
eRgsRQeK4UcjbXyapSu1MVHz87BFUWEaMTiHmx627xVRtuQPC8TiOobsCmc22JkG
|
||||
inx8k1Hx9C1YE9vH68R/uc3salugm8KG+L6aFxGabi5wh01JTProc9mf0sVDOFis
|
||||
j6olAjGT+kiBCcOzAIXLZDYH6/F3G7/171ra/FU3iw09qhqLezzjr165c0cVDG9U
|
||||
4lZIidqlHM6mROq4eJlVUIzgziSlOHmZYgsw03UvfLf5wXS8tvpjNHr1fUQf3UeO
|
||||
j0/5PjJ3tWCdkrL3lLLna6ZeFN8rQtf+d9SKMnE44FYDPkKGzSjZNu8GqtF5kcsA
|
||||
j3mBEha1amctJZLCgwlX2KvEO9S5icgvbYM6/1oeqNDa0kL6GxqnIrforX0CEt1t
|
||||
dEx6pGebpfoFdjn8MYSWUHRrVQ==
|
||||
=OnWF
|
||||
-----END PGP PUBLIC KEY BLOCK-----
|
|
@ -1,7 +0,0 @@
|
|||
title BioArchLinux install medium (x86_64, UEFI)
|
||||
sort-key 01
|
||||
linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux
|
||||
initrd /%INSTALL_DIR%/boot/intel-ucode.img
|
||||
initrd /%INSTALL_DIR%/boot/amd-ucode.img
|
||||
initrd /%INSTALL_DIR%/boot/x86_64/initramfs-linux.img
|
||||
options archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL%
|
|
@ -1,7 +0,0 @@
|
|||
title BioArchLinux install medium (x86_64, UEFI) with speech
|
||||
sort-key 02
|
||||
linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux
|
||||
initrd /%INSTALL_DIR%/boot/intel-ucode.img
|
||||
initrd /%INSTALL_DIR%/boot/amd-ucode.img
|
||||
initrd /%INSTALL_DIR%/boot/x86_64/initramfs-linux.img
|
||||
options archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% accessibility=on
|
|
@ -1,3 +0,0 @@
|
|||
timeout 15
|
||||
default 01-archiso-x86_64-linux.conf
|
||||
beep on
|
|
@ -1,80 +0,0 @@
|
|||
# Load partition table and file system modules
|
||||
insmod part_gpt
|
||||
insmod part_msdos
|
||||
insmod fat
|
||||
insmod iso9660
|
||||
|
||||
# Use graphics-mode output
|
||||
insmod all_video
|
||||
insmod font
|
||||
if loadfont "${prefix}/fonts/unicode.pf2" ; then
|
||||
insmod gfxterm
|
||||
set gfxmode="auto"
|
||||
terminal_input console
|
||||
terminal_output gfxterm
|
||||
fi
|
||||
|
||||
# Enable serial console
|
||||
if serial --unit=0 --speed=115200; then
|
||||
terminal_input --append serial
|
||||
terminal_output --append serial
|
||||
fi
|
||||
|
||||
# Set default menu entry
|
||||
default=archlinux
|
||||
timeout=15
|
||||
timeout_style=menu
|
||||
|
||||
# GRUB init tune for accessibility
|
||||
play 600 988 1 1319 4
|
||||
|
||||
# Menu entries
|
||||
|
||||
menuentry "BioArchLinux install medium (x86_64, UEFI)" --class arch --class gnu-linux --class gnu --class os --id 'archlinux' {
|
||||
set gfxpayload=keep
|
||||
search --no-floppy --set=root --label %ARCHISO_LABEL%
|
||||
linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL%
|
||||
initrd /%INSTALL_DIR%/boot/intel-ucode.img /%INSTALL_DIR%/boot/amd-ucode.img /%INSTALL_DIR%/boot/x86_64/initramfs-linux.img
|
||||
}
|
||||
|
||||
menuentry "BioArchLinux install medium with speakup screen reader (x86_64, UEFI)" --hotkey s --class arch --class gnu-linux --class gnu --class os --id 'archlinux-accessibility' {
|
||||
set gfxpayload=keep
|
||||
search --no-floppy --set=root --label %ARCHISO_LABEL%
|
||||
linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% accessibility=on
|
||||
initrd /%INSTALL_DIR%/boot/intel-ucode.img /%INSTALL_DIR%/boot/amd-ucode.img /%INSTALL_DIR%/boot/x86_64/initramfs-linux.img
|
||||
}
|
||||
|
||||
if [ "${grub_platform}" == "efi" ]; then
|
||||
if [ "${grub_cpu}" == "x86_64" ]; then
|
||||
menuentry "Run Memtest86+ (RAM test)" --class memtest86 --class gnu --class tool {
|
||||
set gfxpayload=800x600,1024x768
|
||||
search --fs-uuid --no-floppy --set=root --label %ARCHISO_LABEL%
|
||||
linux /%INSTALL_DIR%/boot/memtest.efi
|
||||
}
|
||||
menuentry "UEFI Shell" {
|
||||
insmod chain
|
||||
search --no-floppy --set=root --label %ARCHISO_LABEL%
|
||||
chainloader /shellx64.efi
|
||||
}
|
||||
elif [ "${grub_cpu}" == "i386" ]; then
|
||||
menuentry "UEFI Shell" {
|
||||
insmod chain
|
||||
search --no-floppy --set=root --label %ARCHISO_LABEL%
|
||||
chainloader /shellia32.efi
|
||||
}
|
||||
fi
|
||||
|
||||
menuentry 'UEFI Firmware Settings' --id 'uefi-firmware' {
|
||||
fwsetup
|
||||
}
|
||||
fi
|
||||
|
||||
menuentry "System shutdown" --class shutdown --class poweroff {
|
||||
echo "System shutting down..."
|
||||
halt
|
||||
}
|
||||
|
||||
menuentry "System restart" --class reboot --class restart {
|
||||
echo "System rebooting..."
|
||||
reboot
|
||||
}
|
|
@ -168,13 +168,13 @@ adobe-source-han-sans-kr-fonts
|
|||
ttf-nerd-fonts-symbols
|
||||
## waybar
|
||||
waybar
|
||||
pacman-contrib
|
||||
blueberry
|
||||
pavucontrol
|
||||
htop
|
||||
light
|
||||
# pkg manager
|
||||
yay
|
||||
pacman-contrib
|
||||
# iso
|
||||
calamares-config
|
||||
calamares
|
||||
|
|
|
@ -1,100 +0,0 @@
|
|||
#
|
||||
# /etc/pacman.conf
|
||||
#
|
||||
# See the pacman.conf(5) manpage for option and repository directives
|
||||
|
||||
#
|
||||
# GENERAL OPTIONS
|
||||
#
|
||||
[options]
|
||||
# The following paths are commented out with their default values listed.
|
||||
# If you wish to use different paths, uncomment and update the paths.
|
||||
#RootDir = /
|
||||
#DBPath = /var/lib/pacman/
|
||||
#CacheDir = /var/cache/pacman/pkg/
|
||||
#LogFile = /var/log/pacman.log
|
||||
#GPGDir = /etc/pacman.d/gnupg/
|
||||
#HookDir = /etc/pacman.d/hooks/
|
||||
HoldPkg = pacman glibc
|
||||
#XferCommand = /usr/bin/curl -L -C - -f -o %o %u
|
||||
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
||||
#CleanMethod = KeepInstalled
|
||||
Architecture = auto
|
||||
|
||||
# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
|
||||
#IgnorePkg =
|
||||
#IgnoreGroup =
|
||||
|
||||
#NoUpgrade =
|
||||
#NoExtract =
|
||||
|
||||
# Misc options
|
||||
#UseSyslog
|
||||
#Color
|
||||
#NoProgressBar
|
||||
CheckSpace
|
||||
#VerbosePkgLists
|
||||
#ParallelDownloads = 5
|
||||
|
||||
# By default, pacman accepts packages signed by keys that its local keyring
|
||||
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||
SigLevel = Required DatabaseOptional
|
||||
LocalFileSigLevel = Optional
|
||||
#RemoteFileSigLevel = Required
|
||||
|
||||
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
||||
# keyring can then be populated with the keys of all official Arch Linux
|
||||
# packagers with `pacman-key --populate archlinux`.
|
||||
|
||||
#
|
||||
# REPOSITORIES
|
||||
# - can be defined here or included from another file
|
||||
# - pacman will search repositories in the order defined here
|
||||
# - local/custom mirrors can be added here or in separate files
|
||||
# - repositories listed first will take precedence when packages
|
||||
# have identical names, regardless of version number
|
||||
# - URLs will have $repo replaced by the name of the current repo
|
||||
# - URLs will have $arch replaced by the name of the architecture
|
||||
#
|
||||
# Repository entries are of the format:
|
||||
# [repo-name]
|
||||
# Server = ServerName
|
||||
# Include = IncludePath
|
||||
#
|
||||
# The header [repo-name] is crucial - it must be present and
|
||||
# uncommented to enable the repo.
|
||||
#
|
||||
|
||||
# The testing repositories are disabled by default. To enable, uncomment the
|
||||
# repo name header and Include lines. You can add preferred servers immediately
|
||||
# after the header, and they will be used before the default mirrors.
|
||||
|
||||
#[core-testing]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[core]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[bioarchlinux]
|
||||
Server = https://repo.bioarchlinux.org/$arch
|
||||
|
||||
#[extra-testing]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[extra]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
# If you want to run 32 bit applications on your x86_64 system,
|
||||
# enable the multilib repositories as required here.
|
||||
|
||||
#[multilib-testing]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[multilib]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
# An example of a custom package repository. See the pacman manpage for
|
||||
# tips on creating your own repositories.
|
||||
#[custom]
|
||||
#SigLevel = Optional TrustAll
|
||||
#Server = file:///home/custompkgs
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
# shellcheck disable=SC2034
|
||||
|
||||
iso_name="bioarchlinux"
|
||||
iso_name="bioarchlinux-wayfire"
|
||||
iso_label="ARCH_$(date +%Y%m)"
|
||||
iso_publisher="BioArchLinux <https://bioarchlinux.org>"
|
||||
iso_application="BioArchLinux Live/Rescue CD"
|
||||
|
|
|
@ -1,28 +0,0 @@
|
|||
SERIAL 0 115200
|
||||
UI vesamenu.c32
|
||||
MENU TITLE BioArchLinux
|
||||
MENU BACKGROUND splash.png
|
||||
|
||||
MENU WIDTH 78
|
||||
MENU MARGIN 4
|
||||
MENU ROWS 7
|
||||
MENU VSHIFT 10
|
||||
MENU TABMSGROW 14
|
||||
MENU CMDLINEROW 14
|
||||
MENU HELPMSGROW 16
|
||||
MENU HELPMSGENDROW 29
|
||||
|
||||
# Refer to http://syslinux.zytor.com/wiki/index.php/Doc/menu
|
||||
|
||||
MENU COLOR border 30;44 #40ffffff #a0000000 std
|
||||
MENU COLOR title 1;36;44 #9033ccff #a0000000 std
|
||||
MENU COLOR sel 7;37;40 #e0ffffff #20ffffff all
|
||||
MENU COLOR unsel 37;44 #50ffffff #a0000000 std
|
||||
MENU COLOR help 37;40 #c0ffffff #a0000000 std
|
||||
MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std
|
||||
MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std
|
||||
MENU COLOR msg07 37;40 #90ffffff #a0000000 std
|
||||
MENU COLOR tabmsg 31;40 #30ffffff #00000000 std
|
||||
|
||||
MENU CLEAR
|
||||
MENU IMMEDIATE
|
|
@ -1,32 +0,0 @@
|
|||
LABEL arch64_nbd
|
||||
TEXT HELP
|
||||
Boot the BioArchLinux install medium using NBD.
|
||||
It allows you to install BioArchLinux or perform system maintenance.
|
||||
ENDTEXT
|
||||
MENU LABEL BioArchLinux install medium (x86_64, NBD)
|
||||
LINUX ::/%INSTALL_DIR%/boot/x86_64/vmlinuz-linux
|
||||
INITRD ::/%INSTALL_DIR%/boot/intel-ucode.img,::/%INSTALL_DIR%/boot/amd-ucode.img,::/%INSTALL_DIR%/boot/x86_64/initramfs-linux.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% archiso_nbd_srv=${pxeserver} cms_verify=y
|
||||
SYSAPPEND 3
|
||||
|
||||
LABEL arch64_nfs
|
||||
TEXT HELP
|
||||
Boot the BioArchLinux live medium using NFS.
|
||||
It allows you to install BioArchLinux or perform system maintenance.
|
||||
ENDTEXT
|
||||
MENU LABEL BioArchLinux install medium (x86_64, NFS)
|
||||
LINUX ::/%INSTALL_DIR%/boot/x86_64/vmlinuz-linux
|
||||
INITRD ::/%INSTALL_DIR%/boot/intel-ucode.img,::/%INSTALL_DIR%/boot/amd-ucode.img,::/%INSTALL_DIR%/boot/x86_64/initramfs-linux.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archiso_nfs_srv=${pxeserver}:/run/archiso/bootmnt cms_verify=y
|
||||
SYSAPPEND 3
|
||||
|
||||
LABEL arch64_http
|
||||
TEXT HELP
|
||||
Boot the BioArchLinux live medium using HTTP.
|
||||
It allows you to install BioArchLinux or perform system maintenance.
|
||||
ENDTEXT
|
||||
MENU LABEL BioArchLinux install medium (x86_64, HTTP)
|
||||
LINUX ::/%INSTALL_DIR%/boot/x86_64/vmlinuz-linux
|
||||
INITRD ::/%INSTALL_DIR%/boot/intel-ucode.img,::/%INSTALL_DIR%/boot/amd-ucode.img,::/%INSTALL_DIR%/boot/x86_64/initramfs-linux.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archiso_http_srv=http://${pxeserver}/ cms_verify=y
|
||||
SYSAPPEND 3
|
|
@ -1,5 +0,0 @@
|
|||
INCLUDE archiso_head.cfg
|
||||
|
||||
INCLUDE archiso_pxe-linux.cfg
|
||||
|
||||
INCLUDE archiso_tail.cfg
|
|
@ -1,20 +0,0 @@
|
|||
LABEL arch64
|
||||
TEXT HELP
|
||||
Boot the BioArchLinux install medium on BIOS.
|
||||
It allows you to install BioArchLinux or perform system maintenance.
|
||||
ENDTEXT
|
||||
MENU LABEL BioArchLinux install medium (x86_64, BIOS)
|
||||
LINUX /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux
|
||||
INITRD /%INSTALL_DIR%/boot/intel-ucode.img,/%INSTALL_DIR%/boot/amd-ucode.img,/%INSTALL_DIR%/boot/x86_64/initramfs-linux.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL%
|
||||
|
||||
# Accessibility boot option
|
||||
LABEL arch64speech
|
||||
TEXT HELP
|
||||
Boot the BioArchLinux install medium on BIOS with speakup screen reader.
|
||||
It allows you to install BioArchLinux or perform system maintenance with speech feedback.
|
||||
ENDTEXT
|
||||
MENU LABEL BioArchLinux install medium (x86_64, BIOS) with ^speech
|
||||
LINUX /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux
|
||||
INITRD /%INSTALL_DIR%/boot/intel-ucode.img,/%INSTALL_DIR%/boot/amd-ucode.img,/%INSTALL_DIR%/boot/x86_64/initramfs-linux.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% accessibility=on
|
|
@ -1,8 +0,0 @@
|
|||
INCLUDE archiso_head.cfg
|
||||
|
||||
DEFAULT arch64
|
||||
TIMEOUT 150
|
||||
|
||||
INCLUDE archiso_sys-linux.cfg
|
||||
|
||||
INCLUDE archiso_tail.cfg
|
|
@ -1,35 +0,0 @@
|
|||
LABEL existing
|
||||
TEXT HELP
|
||||
Boot an existing operating system.
|
||||
Press TAB to edit the disk and partition number to boot.
|
||||
ENDTEXT
|
||||
MENU LABEL Boot existing OS
|
||||
COM32 chain.c32
|
||||
APPEND hd0 0
|
||||
|
||||
# http://www.memtest.org/
|
||||
LABEL memtest
|
||||
MENU LABEL Run Memtest86+ (RAM test)
|
||||
LINUX /%INSTALL_DIR%/boot/memtest
|
||||
|
||||
# http://hdt-project.org/
|
||||
LABEL hdt
|
||||
MENU LABEL Hardware Information (HDT)
|
||||
COM32 hdt.c32
|
||||
APPEND modules_alias=hdt/modalias.gz pciids=hdt/pciids.gz
|
||||
|
||||
LABEL reboot
|
||||
TEXT HELP
|
||||
Reboot computer.
|
||||
The computer's firmware must support APM.
|
||||
ENDTEXT
|
||||
MENU LABEL Reboot
|
||||
COM32 reboot.c32
|
||||
|
||||
LABEL poweroff
|
||||
TEXT HELP
|
||||
Power off computer.
|
||||
The computer's firmware must support APM.
|
||||
ENDTEXT
|
||||
MENU LABEL Power Off
|
||||
COM32 poweroff.c32
|
Binary file not shown.
Before Width: | Height: | Size: 30 KiB |
|
@ -1,11 +0,0 @@
|
|||
DEFAULT select
|
||||
|
||||
LABEL select
|
||||
COM32 whichsys.c32
|
||||
APPEND -pxe- pxe -sys- sys -iso- sys
|
||||
|
||||
LABEL pxe
|
||||
CONFIG archiso_pxe.cfg
|
||||
|
||||
LABEL sys
|
||||
CONFIG archiso_sys.cfg
|
|
@ -1 +1 @@
|
|||
LANG=C.UTF-8
|
||||
LANG=en_US.UTF-8
|
||||
|
|
|
@ -1,100 +0,0 @@
|
|||
#
|
||||
# /etc/pacman.conf
|
||||
#
|
||||
# See the pacman.conf(5) manpage for option and repository directives
|
||||
|
||||
#
|
||||
# GENERAL OPTIONS
|
||||
#
|
||||
[options]
|
||||
# The following paths are commented out with their default values listed.
|
||||
# If you wish to use different paths, uncomment and update the paths.
|
||||
#RootDir = /
|
||||
#DBPath = /var/lib/pacman/
|
||||
#CacheDir = /var/cache/pacman/pkg/
|
||||
#LogFile = /var/log/pacman.log
|
||||
#GPGDir = /etc/pacman.d/gnupg/
|
||||
#HookDir = /etc/pacman.d/hooks/
|
||||
HoldPkg = pacman glibc
|
||||
#XferCommand = /usr/bin/curl -L -C - -f -o %o %u
|
||||
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
||||
#CleanMethod = KeepInstalled
|
||||
Architecture = auto
|
||||
|
||||
# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
|
||||
#IgnorePkg =
|
||||
#IgnoreGroup =
|
||||
|
||||
#NoUpgrade =
|
||||
#NoExtract =
|
||||
|
||||
# Misc options
|
||||
#UseSyslog
|
||||
#Color
|
||||
#NoProgressBar
|
||||
CheckSpace
|
||||
#VerbosePkgLists
|
||||
#ParallelDownloads = 5
|
||||
|
||||
# By default, pacman accepts packages signed by keys that its local keyring
|
||||
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||
SigLevel = Required DatabaseOptional
|
||||
LocalFileSigLevel = Optional
|
||||
#RemoteFileSigLevel = Required
|
||||
|
||||
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
||||
# keyring can then be populated with the keys of all official Arch Linux
|
||||
# packagers with `pacman-key --populate archlinux`.
|
||||
|
||||
#
|
||||
# REPOSITORIES
|
||||
# - can be defined here or included from another file
|
||||
# - pacman will search repositories in the order defined here
|
||||
# - local/custom mirrors can be added here or in separate files
|
||||
# - repositories listed first will take precedence when packages
|
||||
# have identical names, regardless of version number
|
||||
# - URLs will have $repo replaced by the name of the current repo
|
||||
# - URLs will have $arch replaced by the name of the architecture
|
||||
#
|
||||
# Repository entries are of the format:
|
||||
# [repo-name]
|
||||
# Server = ServerName
|
||||
# Include = IncludePath
|
||||
#
|
||||
# The header [repo-name] is crucial - it must be present and
|
||||
# uncommented to enable the repo.
|
||||
#
|
||||
|
||||
# The testing repositories are disabled by default. To enable, uncomment the
|
||||
# repo name header and Include lines. You can add preferred servers immediately
|
||||
# after the header, and they will be used before the default mirrors.
|
||||
|
||||
#[core-testing]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[core]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[bioarchlinux]
|
||||
Server = https://repo.bioarchlinux.org/$arch
|
||||
|
||||
#[extra-testing]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[extra]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
# If you want to run 32 bit applications on your x86_64 system,
|
||||
# enable the multilib repositories as required here.
|
||||
|
||||
#[multilib-testing]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[multilib]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
# An example of a custom package repository. See the pacman manpage for
|
||||
# tips on creating your own repositories.
|
||||
#[custom]
|
||||
#SigLevel = Optional TrustAll
|
||||
#Server = file:///home/custompkgs
|
|
@ -11,3 +11,4 @@ When = PostTransaction
|
|||
Depends = pacman-mirrorlist
|
||||
Depends = sed
|
||||
Exec = /usr/bin/sed -i "s/#Server/Server/g" /etc/pacman.d/mirrorlist
|
||||
Exec = /usr/bin/sed -i "s/#Server/Server/g" /etc/pacman.d/mirrorlist.bio
|
||||
|
|
|
@ -1,909 +0,0 @@
|
|||
##
|
||||
## Arch Linux repository mirrorlist
|
||||
## Generated on 2022-12-04
|
||||
##
|
||||
|
||||
## Worldwide
|
||||
Server = https://geo.mirror.pkgbuild.com/$repo/os/$arch
|
||||
Server = http://mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
Server = https://mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
|
||||
## Argentina
|
||||
#Server = http://mirrors.eze.sysarmy.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.eze.sysarmy.com/archlinux/$repo/os/$arch
|
||||
|
||||
## Australia
|
||||
#Server = https://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch
|
||||
#Server = https://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch
|
||||
#Server = https://sydney.mirror.pkgbuild.com/$repo/os/$arch
|
||||
#Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.lucassymons.net/$repo/os/$arch
|
||||
#Server = https://arch.lucassymons.net/$repo/os/$arch
|
||||
#Server = http://syd.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = https://syd.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.swin.edu.au/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.wale.id.au/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.wale.id.au/archlinux/$repo/os/$arch
|
||||
|
||||
## Austria
|
||||
#Server = http://mirror.alwyzon.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.alwyzon.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.digitalnova.at/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.easyname.at/archlinux/$repo/os/$arch
|
||||
#Server = https://at.arch.mirror.kescher.at/$repo/os/$arch
|
||||
#Server = http://mirror.reisenbauer.ee/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.reisenbauer.ee/archlinux/$repo/os/$arch
|
||||
|
||||
## Bangladesh
|
||||
#Server = http://mirror.xeonbd.com/archlinux/$repo/os/$arch
|
||||
|
||||
## Belarus
|
||||
#Server = http://ftp.byfly.by/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.datacenter.by/pub/archlinux/$repo/os/$arch
|
||||
|
||||
## Belgium
|
||||
#Server = http://archlinux.cu.be/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.kangaroot.net/$repo/os/$arch
|
||||
#Server = http://mirror.tiguinet.net/arch/$repo/os/$arch
|
||||
|
||||
## Bosnia and Herzegovina
|
||||
#Server = http://archlinux.mirror.ba/$repo/os/$arch
|
||||
|
||||
## Brazil
|
||||
#Server = http://archlinux-br.com.br/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux-br.com.br/archlinux/$repo/os/$arch
|
||||
#Server = http://br.mirror.archlinux-br.org/$repo/os/$arch
|
||||
#Server = http://archlinux.c3sl.ufpr.br/$repo/os/$arch
|
||||
#Server = http://www.caco.ic.unicamp.br/archlinux/$repo/os/$arch
|
||||
#Server = https://www.caco.ic.unicamp.br/archlinux/$repo/os/$arch
|
||||
#Server = http://linorg.usp.br/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.pop-es.rnp.br/$repo/os/$arch
|
||||
#Server = http://mirror.ufam.edu.br/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.ufscar.br/archlinux/$repo/os/$arch
|
||||
|
||||
## Bulgaria
|
||||
#Server = https://mirror.darklinux.uk/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.host.ag/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.netix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.telepoint.bg/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.telepoint.bg/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.uni-plovdiv.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.uni-plovdiv.net/archlinux/$repo/os/$arch
|
||||
|
||||
## Cambodia
|
||||
#Server = http://mirror.sabay.com.kh/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.sabay.com.kh/archlinux/$repo/os/$arch
|
||||
|
||||
## Canada
|
||||
#Server = http://mirror.0xem.ma/arch/$repo/os/$arch
|
||||
#Server = https://mirror.0xem.ma/arch/$repo/os/$arch
|
||||
#Server = http://mirror.cedille.club/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.colo-serv.net/$repo/os/$arch
|
||||
#Server = http://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror2.evolution-host.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror2.evolution-host.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.its.dal.ca/archlinux/$repo/os/$arch
|
||||
#Server = http://muug.ca/mirror/archlinux/$repo/os/$arch
|
||||
#Server = https://muug.ca/mirror/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.powerfly.ca/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.powerfly.ca/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.rafal.ca/$repo/os/$arch
|
||||
#Server = http://mirror.scd31.com/arch/$repo/os/$arch
|
||||
#Server = https://mirror.scd31.com/arch/$repo/os/$arch
|
||||
#Server = http://mirror.xenyth.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.xenyth.net/archlinux/$repo/os/$arch
|
||||
|
||||
## Chile
|
||||
#Server = http://mirror.anquan.cl/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.anquan.cl/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.archlinux.cl/$repo/os/$arch
|
||||
#Server = http://mirror1.cl.netactuate.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror1.cl.netactuate.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.ufro.cl/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.ufro.cl/archlinux/$repo/os/$arch
|
||||
|
||||
## China
|
||||
#Server = http://mirrors.163.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.aliyun.com/archlinux/$repo/os/$arch
|
||||
Server = https://mirrors.aliyun.com/archlinux/$repo/os/$arch
|
||||
Server = http://mirrors.bfsu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.bfsu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.cqu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.cqu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.hit.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.hit.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.lzu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.nju.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.nju.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.njupt.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.redrock.team/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.redrock.team/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.shanghaitech.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.shanghaitech.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.sjtug.sjtu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch
|
||||
Server = http://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch
|
||||
Server = https://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.wsyu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.wsyu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.xjtu.edu.cn/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.zju.edu.cn/archlinux/$repo/os/$arch
|
||||
|
||||
## Colombia
|
||||
#Server = http://mirrors.udenar.edu.co/archlinux/$repo/os/$arch
|
||||
|
||||
## Croatia
|
||||
#Server = http://archlinux.iskon.hr/$repo/os/$arch
|
||||
|
||||
## Czechia
|
||||
#Server = http://mirror.dkm.cz/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.dkm.cz/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.fi.muni.cz/pub/linux/arch/$repo/os/$arch
|
||||
#Server = http://ftp.linux.cz/pub/linux/arch/$repo/os/$arch
|
||||
#Server = https://europe.mirror.pkgbuild.com/$repo/os/$arch
|
||||
#Server = http://gluttony.sin.cvut.cz/arch/$repo/os/$arch
|
||||
#Server = https://gluttony.sin.cvut.cz/arch/$repo/os/$arch
|
||||
#Server = http://mirror.it4i.cz/arch/$repo/os/$arch
|
||||
#Server = https://mirror.it4i.cz/arch/$repo/os/$arch
|
||||
#Server = http://mirrors.nic.cz/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.nic.cz/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.sh.cvut.cz/arch/$repo/os/$arch
|
||||
#Server = https://ftp.sh.cvut.cz/arch/$repo/os/$arch
|
||||
#Server = http://mirror.vpsfree.cz/archlinux/$repo/os/$arch
|
||||
|
||||
## Denmark
|
||||
#Server = http://mirrors.dotsrc.org/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.dotsrc.org/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.one.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.one.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.safe-con.dk/archlinux/$repo/os/$arch
|
||||
|
||||
## Ecuador
|
||||
#Server = http://mirror.cedia.org.ec/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.espoch.edu.ec/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.uta.edu.ec/archlinux/$repo/os/$arch
|
||||
|
||||
## Estonia
|
||||
#Server = http://mirror.cspacehostings.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.cspacehostings.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.xtom.ee/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.xtom.ee/archlinux/$repo/os/$arch
|
||||
|
||||
## Finland
|
||||
#Server = https://arch.mcstrugs.org/$repo/os/$arch
|
||||
#Server = http://mirror.arctic.lol/ArchMirror/$repo/os/$arch
|
||||
#Server = https://mirror.arctic.lol/ArchMirror/$repo/os/$arch
|
||||
#Server = http://arch.mirror.far.fi/$repo/os/$arch
|
||||
#Server = http://mirror.hosthink.net/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.kyberorg.fi/$repo/os/$arch
|
||||
#Server = https://arch.kyberorg.fi/$repo/os/$arch
|
||||
#Server = https://mirror.srv.fail/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.wuki.li/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.wuki.li/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.yhtez.xyz/$repo/os/$arch
|
||||
#Server = https://arch.yhtez.xyz/$repo/os/$arch
|
||||
|
||||
## France
|
||||
#Server = http://archlinux.de-labrusse.fr/$repo/os/$arch
|
||||
#Server = http://mirror.archlinux.ikoula.com/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.vi-di.fr/$repo/os/$arch
|
||||
#Server = http://archlinux.mirrors.benatherton.com/$repo/os/$arch
|
||||
#Server = http://mirror.cyberbits.eu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.cyberbits.eu/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.datagr.am/$repo/os/$arch
|
||||
#Server = https://mirrors.eric.ovh/arch/$repo/os/$arch
|
||||
#Server = http://mirrors.gandi.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.gandi.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.ibakerserver.pt/Arch/$repo/os/$arch
|
||||
#Server = http://mirror.ibcp.fr/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.jordanrey.me/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.jordanrey.me/archlinux/$repo/os/$arch
|
||||
#Server = https://arch.juline.tech/$repo/os/$arch
|
||||
#Server = http://mirroir.labhouse.fr/arch/$repo/os/$arch
|
||||
#Server = https://mirroir.labhouse.fr/arch/$repo/os/$arch
|
||||
#Server = http://mirror.lastmikoi.net/archlinux/$repo/os/$arch
|
||||
#Server = https://arch-mirror.cloud.louifox.house/$repo/os/$arch
|
||||
#Server = http://archlinux.mailtunnel.eu/$repo/os/$arch
|
||||
#Server = https://archlinux.mailtunnel.eu/$repo/os/$arch
|
||||
#Server = http://mir.archlinux.fr/$repo/os/$arch
|
||||
#Server = http://mirrors.celianvdb.fr/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.celianvdb.fr/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.nimukaito.net/$repo/os/$arch
|
||||
#Server = https://arch.nimukaito.net/$repo/os/$arch
|
||||
#Server = http://mirror.oldsql.cc/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.oldsql.cc/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirrors.ovh.net/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.rezopole.net/$repo/os/$arch
|
||||
#Server = https://mirrors.slaanesh.org/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.standaloneinstaller.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.sysa.tech/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.thekinrar.fr/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.theo546.fr/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.theo546.fr/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.u-strasbg.fr/linux/distributions/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.wormhole.eu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirroir.wptheme.fr/archlinux/$repo/os/$arch
|
||||
#Server = https://mirroir.wptheme.fr/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.yourlabs.org/$repo/os/$arch
|
||||
#Server = https://arch.yourlabs.org/$repo/os/$arch
|
||||
|
||||
## Georgia
|
||||
#Server = http://archlinux.grena.ge/$repo/os/$arch
|
||||
#Server = https://archlinux.grena.ge/$repo/os/$arch
|
||||
|
||||
## Germany
|
||||
#Server = http://mirror.23m.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.23m.com/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.agdsn.de/pub/mirrors/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.agdsn.de/pub/mirrors/archlinux/$repo/os/$arch
|
||||
#Server = https://appuals.com/archlinux/$repo/os/$arch
|
||||
#Server = http://artfiles.org/archlinux.org/$repo/os/$arch
|
||||
#Server = https://mirror.bethselamin.de/$repo/os/$arch
|
||||
#Server = http://mirror.chaoticum.net/arch/$repo/os/$arch
|
||||
#Server = https://mirror.chaoticum.net/arch/$repo/os/$arch
|
||||
#Server = http://mirror.checkdomain.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.checkdomain.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.clientvps.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.clientvps.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.cmt.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.cmt.de/archlinux/$repo/os/$arch
|
||||
#Server = http://os.codefionn.eu/archlinux/$repo/os/$arch
|
||||
#Server = https://os.codefionn.eu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.dogado.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.f4st.host/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.f4st.host/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.fau.de/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.fau.de/archlinux/$repo/os/$arch
|
||||
#Server = https://pkg.fef.moe/archlinux/$repo/os/$arch
|
||||
#Server = https://dist-mirror.fem.tu-ilmenau.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.fsrv.services/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.fsrv.services/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.gnomus.de/$repo/os/$arch
|
||||
#Server = http://www.gutscheindrache.com/mirror/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.gwdg.de/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.homeinfo.de/$repo/os/$arch
|
||||
#Server = http://archlinux.honkgong.info/$repo/os/$arch
|
||||
#Server = http://ftp.hosteurope.de/mirror/ftp.archlinux.org/$repo/os/$arch
|
||||
#Server = http://ftp-stud.hs-esslingen.de/pub/Mirrors/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.informatik.tu-freiberg.de/arch/$repo/os/$arch
|
||||
#Server = https://mirror.informatik.tu-freiberg.de/arch/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.iphh.net/$repo/os/$arch
|
||||
#Server = https://mirror.iusearchbtw.nl/$repo/os/$arch
|
||||
#Server = http://mirrors.janbruckner.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.janbruckner.de/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.jensgutermuth.de/$repo/os/$arch
|
||||
#Server = https://arch.jensgutermuth.de/$repo/os/$arch
|
||||
#Server = https://de.arch.mirror.kescher.at/$repo/os/$arch
|
||||
#Server = http://mirror.kumi.systems/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.kumi.systems/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.fra10.de.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.fra10.de.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.metalgamer.eu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.metalgamer.eu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.mikrogravitation.org/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.mikrogravitation.org/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.moson.org/arch/$repo/os/$arch
|
||||
#Server = https://mirror.moson.org/arch/$repo/os/$arch
|
||||
#Server = http://mirrors.n-ix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.n-ix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.netcologne.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.netcologne.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.niyawe.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.niyawe.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.orbit-os.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.orbit-os.com/archlinux/$repo/os/$arch
|
||||
#Server = http://packages.oth-regensburg.de/archlinux/$repo/os/$arch
|
||||
#Server = https://packages.oth-regensburg.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.pagenotfound.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.pagenotfound.de/archlinux/$repo/os/$arch
|
||||
#Server = http://phinau.de/arch/$repo/os/$arch
|
||||
#Server = https://phinau.de/arch/$repo/os/$arch
|
||||
#Server = https://mirror.pseudoform.org/$repo/os/$arch
|
||||
#Server = https://www.ratenzahlung.de/mirror/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.halifax.rwth-aachen.de/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.halifax.rwth-aachen.de/archlinux/$repo/os/$arch
|
||||
#Server = http://linux.rz.rub.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.satis-faction.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.satis-faction.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.selfnet.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.selfnet.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.spaceint.fr/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.spline.inf.fu-berlin.de/mirrors/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.spline.inf.fu-berlin.de/mirrors/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.thaller.ws/$repo/os/$arch
|
||||
#Server = https://archlinux.thaller.ws/$repo/os/$arch
|
||||
#Server = http://ftp.tu-chemnitz.de/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.ubrco.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.ubrco.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.undisclose.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.undisclose.de/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.uni-bayreuth.de/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.uni-hannover.de/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.uni-kl.de/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.united-gameserver.de/archlinux/$repo/os/$arch
|
||||
#Server = https://arch.unixpeople.org/$repo/os/$arch
|
||||
#Server = http://ftp.wrz.de/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.wrz.de/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.wtnet.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.wtnet.de/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.xtom.de/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.xtom.de/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.mirror.zachlge.org/$repo/os/$arch
|
||||
#Server = https://arch.mirror.zachlge.org/$repo/os/$arch
|
||||
|
||||
## Greece
|
||||
#Server = http://ftp.cc.uoc.gr/mirrors/linux/archlinux/$repo/os/$arch
|
||||
#Server = https://repo.greeklug.gr/data/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.myaegean.gr/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.ntua.gr/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.otenet.gr/linux/archlinux/$repo/os/$arch
|
||||
|
||||
## Hong Kong
|
||||
#Server = https://asia.mirror.pkgbuild.com/$repo/os/$arch
|
||||
#Server = http://mirror-hk.koddos.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror-hk.koddos.net/archlinux/$repo/os/$arch
|
||||
#Server = http://hkg.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = https://hkg.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = https://arch-mirror.wtako.net/$repo/os/$arch
|
||||
#Server = http://mirror.xtom.com.hk/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.xtom.com.hk/archlinux/$repo/os/$arch
|
||||
|
||||
## Hungary
|
||||
#Server = http://ftp.ek-cer.hu/pub/mirrors/ftp.archlinux.org/$repo/os/$arch
|
||||
#Server = http://archmirror.hbit.sztaki.hu/archlinux/$repo/os/$arch
|
||||
#Server = http://nova.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://super.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://nova.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://super.quantum-mirror.hu/mirrors/pub/archlinux/$repo/os/$arch
|
||||
|
||||
## Iceland
|
||||
#Server = http://mirror.system.is/arch/$repo/os/$arch
|
||||
#Server = https://mirror.system.is/arch/$repo/os/$arch
|
||||
|
||||
## India
|
||||
#Server = https://mirrors.abhy.me/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.albony.xyz/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.cse.iitk.ac.in/archlinux/$repo/os/$arch
|
||||
#Server = http://in-mirror.garudalinux.org/archlinux/$repo/os/$arch
|
||||
#Server = https://in-mirror.garudalinux.org/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.net.in/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.mirror.net.in/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.nxtgen.com/archlinux-mirror/$repo/os/$arch
|
||||
#Server = https://mirrors.nxtgen.com/archlinux-mirror/$repo/os/$arch
|
||||
#Server = http://mirrors.piconets.webwerks.in/archlinux-mirror/$repo/os/$arch
|
||||
#Server = https://mirrors.piconets.webwerks.in/archlinux-mirror/$repo/os/$arch
|
||||
#Server = http://mirror.sahil.world/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.sahil.world/archlinux/$repo/os/$arch
|
||||
|
||||
## Indonesia
|
||||
#Server = http://mirror.cloudweeb.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.faizuladib.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.gi.co.id/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.gi.co.id/archlinux/$repo/os/$arch
|
||||
#Server = http://vpsmurah.jagoanhosting.com/archlinux/$repo/os/$arch
|
||||
#Server = https://vpsmurah.jagoanhosting.com/archlinux/$repo/os/$arch
|
||||
#Server = http://kebo.pens.ac.id/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.labkom.id/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.papua.go.id/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.papua.go.id/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.poliwangi.ac.id/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.repository.id/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.repository.id/archlinux/$repo/os/$arch
|
||||
#Server = http://suro.ubaya.ac.id/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.telkomuniversity.ac.id/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.telkomuniversity.ac.id/archlinux/$repo/os/$arch
|
||||
|
||||
## Iran
|
||||
#Server = http://mirror.arvancloud.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.arvancloud.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.bardia.tech/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.bardia.tech/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.hostiran.ir/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.hostiran.ir/archlinux/$repo/os/$arch
|
||||
#Server = http://repo.iut.ac.ir/repo/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.nak-mci.ir/arch/$repo/os/$arch
|
||||
#Server = http://mirror.rasanegar.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.rasanegar.com/archlinux/$repo/os/$arch
|
||||
|
||||
## Ireland
|
||||
#Server = http://ftp.heanet.ie/mirrors/ftp.archlinux.org/$repo/os/$arch
|
||||
#Server = https://ftp.heanet.ie/mirrors/ftp.archlinux.org/$repo/os/$arch
|
||||
|
||||
## Israel
|
||||
#Server = http://archlinux.interhost.co.il/$repo/os/$arch
|
||||
#Server = https://archlinux.interhost.co.il/$repo/os/$arch
|
||||
#Server = http://mirror.isoc.org.il/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.isoc.org.il/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.mivzakim.net/$repo/os/$arch
|
||||
|
||||
## Italy
|
||||
#Server = https://archmirror.it/repos/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.garr.it/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.prometeus.net/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.server24.net/$repo/os/$arch
|
||||
#Server = https://archlinux.mirror.server24.net/$repo/os/$arch
|
||||
#Server = http://mirror.spazioincloud.it/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.spazioincloud.it/archlinux/$repo/os/$arch
|
||||
|
||||
## Japan
|
||||
#Server = http://mirrors.cat.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.cat.net/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.tsukuba.wide.ad.jp/Linux/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.jaist.ac.jp/pub/Linux/ArchLinux/$repo/os/$arch
|
||||
#Server = https://ftp.jaist.ac.jp/pub/Linux/ArchLinux/$repo/os/$arch
|
||||
#Server = https://mirror.saebasol.org/archlinux/$repo/os/$arch
|
||||
|
||||
## Kazakhstan
|
||||
#Server = http://mirror.hoster.kz/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.hoster.kz/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.ps.kz/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.ps.kz/archlinux/$repo/os/$arch
|
||||
|
||||
## Kenya
|
||||
#Server = http://archlinux.mirror.liquidtelecom.com/$repo/os/$arch
|
||||
#Server = https://archlinux.mirror.liquidtelecom.com/$repo/os/$arch
|
||||
|
||||
## Latvia
|
||||
#Server = http://archlinux.koyanet.lv/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.koyanet.lv/archlinux/$repo/os/$arch
|
||||
|
||||
## Lithuania
|
||||
#Server = http://mirrors.atviras.lt/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.atviras.lt/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.ims.nksc.lt/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.ims.nksc.lt/archlinux/$repo/os/$arch
|
||||
|
||||
## Luxembourg
|
||||
#Server = http://archmirror.xyz/archlinux/$repo/os/$arch
|
||||
#Server = https://archmirror.xyz/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.root.lu/$repo/os/$arch
|
||||
|
||||
## Mexico
|
||||
#Server = https://arch.jsc.mx/$repo/os/$arch
|
||||
|
||||
## Moldova
|
||||
#Server = http://md.mirrors.hacktegic.com/archlinux/$repo/os/$arch
|
||||
#Server = https://md.mirrors.hacktegic.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.ihost.md/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.ihost.md/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.mangohost.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.mangohost.net/archlinux/$repo/os/$arch
|
||||
|
||||
## Monaco
|
||||
#Server = http://archlinux.qontinuum.space/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.qontinuum.space/archlinux/$repo/os/$arch
|
||||
|
||||
## Netherlands
|
||||
#Server = http://mirror.cj2.nl/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.cj2.nl/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.daan.vodka/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.evoluso.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.i3d.net/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.i3d.net/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://arch.jeweet.net/$repo/os/$arch
|
||||
#Server = http://mirror.koddos.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.koddos.net/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.mirrors.lavatech.top/$repo/os/$arch
|
||||
#Server = https://arch.mirrors.lavatech.top/$repo/os/$arch
|
||||
#Server = http://mirror.ams1.nl.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.ams1.nl.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.liteserver.nl/$repo/os/$arch
|
||||
#Server = https://archlinux.mirror.liteserver.nl/$repo/os/$arch
|
||||
#Server = http://mirror.lyrahosting.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.lyrahosting.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.mijn.host/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.mijn.host/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.neostrada.nl/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.neostrada.nl/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.nluug.nl/os/Linux/distr/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.pcextreme.nl/$repo/os/$arch
|
||||
#Server = https://archlinux.mirror.pcextreme.nl/$repo/os/$arch
|
||||
#Server = http://mirror.serverion.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.serverion.com/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.snt.utwente.nl/pub/os/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.tarellia.net/distr/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.tarellia.net/distr/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.viflcraft.top/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.viflcraft.top/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirror.wearetriple.com/$repo/os/$arch
|
||||
#Server = https://archlinux.mirror.wearetriple.com/$repo/os/$arch
|
||||
#Server = http://mirror-archlinux.webruimtehosting.nl/$repo/os/$arch
|
||||
#Server = https://mirror-archlinux.webruimtehosting.nl/$repo/os/$arch
|
||||
#Server = http://mirrors.xtom.nl/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.xtom.nl/archlinux/$repo/os/$arch
|
||||
|
||||
## New Caledonia
|
||||
#Server = http://mirror.lagoon.nc/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.nautile.nc/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.nautile.nc/archlinux/$repo/os/$arch
|
||||
|
||||
## New Zealand
|
||||
#Server = http://mirror.2degrees.nz/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.2degrees.nz/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.fsmg.org.nz/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.fsmg.org.nz/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.ourhome.kiwi/$repo/os/$arch
|
||||
#Server = http://mirror.smith.geek.nz/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.smith.geek.nz/archlinux/$repo/os/$arch
|
||||
|
||||
## North Macedonia
|
||||
#Server = http://arch.softver.org.mk/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.onevip.mk/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.t-home.mk/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.t-home.mk/archlinux/$repo/os/$arch
|
||||
|
||||
## Norway
|
||||
#Server = http://mirror.archlinux.no/$repo/os/$arch
|
||||
#Server = https://mirror.archlinux.no/$repo/os/$arch
|
||||
#Server = http://archlinux.uib.no/$repo/os/$arch
|
||||
#Server = http://lysakermoen.com/Software/Linux/Mirrors/ArchLinux/$repo/os/$arch
|
||||
#Server = https://lysakermoen.com/Software/Linux/Mirrors/ArchLinux/$repo/os/$arch
|
||||
#Server = http://mirror.neuf.no/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.neuf.no/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.terrahost.no/linux/archlinux/$repo/os/$arch
|
||||
|
||||
## Pakistan
|
||||
#Server = http://repo.inara.pk/archlinux/$repo/os/$arch
|
||||
#Server = https://repo.inara.pk/archlinux/$repo/os/$arch
|
||||
|
||||
## Paraguay
|
||||
#Server = http://archlinux.mirror.py/archlinux/$repo/os/$arch
|
||||
|
||||
## Poland
|
||||
#Server = https://mirror.eloteam.tk/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.icm.edu.pl/pub/Linux/dist/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.icm.edu.pl/pub/Linux/dist/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.juniorjpdj.pl/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.juniorjpdj.pl/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.midov.pl/arch/$repo/os/$arch
|
||||
#Server = https://arch.midov.pl/arch/$repo/os/$arch
|
||||
#Server = http://mirror.onet.pl/pub/mirrors/archlinux/$repo/os/$arch
|
||||
#Server = http://piotrkosoft.net/pub/mirrors/ftp.archlinux.org/$repo/os/$arch
|
||||
#Server = http://ftp.psnc.pl/linux/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.psnc.pl/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.sakamoto.pl/$repo/os/$arch
|
||||
#Server = https://arch.sakamoto.pl/$repo/os/$arch
|
||||
#Server = http://repo.skni.umcs.pl/archlinux/$repo/os/$arch
|
||||
#Server = https://repo.skni.umcs.pl/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.vectranet.pl/archlinux/$repo/os/$arch
|
||||
|
||||
## Portugal
|
||||
#Server = http://glua.ua.pt/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://glua.ua.pt/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.rnl.tecnico.ulisboa.pt/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.rnl.tecnico.ulisboa.pt/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.up.pt/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.up.pt/pub/archlinux/$repo/os/$arch
|
||||
|
||||
## Romania
|
||||
#Server = http://mirrors.chroot.ro/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.chroot.ro/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.efect.ro/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.efect.ro/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.flokinet.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.flokinet.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.go.ro/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.go.ro/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.hostico.ro/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.hostico.ro/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.mirrors.linux.ro/$repo/os/$arch
|
||||
#Server = http://mirrors.m247.ro/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.nav.ro/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.nxthost.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.nxthost.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.pidginhost.com/arch/$repo/os/$arch
|
||||
#Server = https://mirrors.pidginhost.com/arch/$repo/os/$arch
|
||||
|
||||
## Russia
|
||||
#Server = http://mirror.kamtv.ru/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.kamtv.ru/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.lebedinets.ru/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.lebedinets.ru/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.surf/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.surf/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.nw-sys.ru/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.nw-sys.ru/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.powernet.com.ru/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.rol.ru/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.rol.ru/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.truenetwork.ru/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.truenetwork.ru/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.yal.sl-chat.ru/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.yandex.ru/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.yandex.ru/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.zepto.cloud/$repo/os/$arch
|
||||
|
||||
## Réunion
|
||||
#Server = http://arch.mithril.re/$repo/os/$arch
|
||||
|
||||
## Serbia
|
||||
#Server = http://arch.petarmaric.com/$repo/os/$arch
|
||||
#Server = http://mirror.pmf.kg.ac.rs/archlinux/$repo/os/$arch
|
||||
|
||||
## Singapore
|
||||
#Server = http://mirror.0x.sg/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.0x.sg/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.aktkn.sg/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.aktkn.sg/archlinux/$repo/os/$arch
|
||||
#Server = https://download.nus.edu.sg/mirror/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.guillaumea.fr/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.guillaumea.fr/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.jingk.ai/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.jingk.ai/archlinux/$repo/os/$arch
|
||||
#Server = http://ossmirror.mycloud.services/os/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.sg.gs/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.sg.gs/archlinux/$repo/os/$arch
|
||||
|
||||
## Slovakia
|
||||
#Server = http://mirror.lnx.sk/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.lnx.sk/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://tux.rainside.sk/archlinux/$repo/os/$arch
|
||||
|
||||
## Slovenia
|
||||
#Server = http://archimonde.ts.si/archlinux/$repo/os/$arch
|
||||
#Server = https://archimonde.ts.si/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.tux.si/arch/$repo/os/$arch
|
||||
#Server = https://mirror.tux.si/arch/$repo/os/$arch
|
||||
|
||||
## South Africa
|
||||
#Server = http://archlinux.za.mirror.allworldit.com/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.za.mirror.allworldit.com/archlinux/$repo/os/$arch
|
||||
#Server = http://za.mirror.archlinux-br.org/$repo/os/$arch
|
||||
#Server = http://mirror.is.co.za/mirror/archlinux.org/$repo/os/$arch
|
||||
#Server = http://mirrors.urbanwave.co.za/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.urbanwave.co.za/archlinux/$repo/os/$arch
|
||||
|
||||
## South Korea
|
||||
#Server = http://mirror.anigil.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.anigil.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.funami.tech/arch/$repo/os/$arch
|
||||
#Server = https://mirror.funami.tech/arch/$repo/os/$arch
|
||||
#Server = https://seoul.mirror.pkgbuild.com/$repo/os/$arch
|
||||
#Server = http://ftp.harukasan.org/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.harukasan.org/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.lanet.kr/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.lanet.kr/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.misakamikoto.network/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.misakamikoto.network/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.premi.st/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.premi.st/archlinux/$repo/os/$arch
|
||||
|
||||
## Spain
|
||||
#Server = https://mirror.cloroformo.org/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.librelabucm.org/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.librelabucm.org/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.rediris.es/mirror/archlinux/$repo/os/$arch
|
||||
|
||||
## Sweden
|
||||
#Server = http://ftp.acc.umu.se/mirror/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.acc.umu.se/mirror/archlinux/$repo/os/$arch
|
||||
#Server = http://ftpmirror.infania.net/mirror/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.ludd.ltu.se/mirrors/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.lysator.liu.se/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.lysator.liu.se/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.osbeck.com/archlinux/$repo/os/$arch
|
||||
|
||||
## Switzerland
|
||||
#Server = http://pkg.adfinis.com/archlinux/$repo/os/$arch
|
||||
#Server = https://pkg.adfinis.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.init7.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.init7.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.metanet.ch/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.metanet.ch/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.puzzle.ch/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.puzzle.ch/archlinux/$repo/os/$arch
|
||||
#Server = https://theswissbay.ch/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.ungleich.ch/mirror/packages/archlinux/$repo/os/$arch
|
||||
|
||||
## Taiwan
|
||||
#Server = http://mirror.archlinux.tw/ArchLinux/$repo/os/$arch
|
||||
#Server = https://mirror.archlinux.tw/ArchLinux/$repo/os/$arch
|
||||
#Server = http://archlinux.ccns.ncku.edu.tw/archlinux/$repo/os/$arch
|
||||
#Server = http://free.nchc.org.tw/arch/$repo/os/$arch
|
||||
#Server = https://free.nchc.org.tw/arch/$repo/os/$arch
|
||||
#Server = http://archlinux.cs.nycu.edu.tw/$repo/os/$arch
|
||||
#Server = https://archlinux.cs.nycu.edu.tw/$repo/os/$arch
|
||||
#Server = http://ftp.tku.edu.tw/Linux/ArchLinux/$repo/os/$arch
|
||||
#Server = http://ftp.yzu.edu.tw/Linux/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.yzu.edu.tw/Linux/archlinux/$repo/os/$arch
|
||||
|
||||
## Thailand
|
||||
#Server = https://mirror.cyberbits.asia/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.kku.ac.th/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.kku.ac.th/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror2.totbb.net/archlinux/$repo/os/$arch
|
||||
|
||||
## Turkey
|
||||
#Server = http://ftp.linux.org.tr/archlinux/$repo/os/$arch
|
||||
#Server = http://depo.turkiye.linux.web.tr/archlinux/$repo/os/$arch
|
||||
#Server = https://depo.turkiye.linux.web.tr/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.veriteknik.net.tr/archlinux/$repo/os/$arch
|
||||
|
||||
## Ukraine
|
||||
#Server = http://archlinux.astra.in.ua/$repo/os/$arch
|
||||
#Server = https://archlinux.astra.in.ua/$repo/os/$arch
|
||||
#Server = http://repo.endpoint.ml/archlinux/$repo/os/$arch
|
||||
#Server = https://repo.endpoint.ml/archlinux/$repo/os/$arch
|
||||
#Server = http://fastmirror.pp.ua/archlinux/$repo/os/$arch
|
||||
#Server = https://fastmirror.pp.ua/archlinux/$repo/os/$arch
|
||||
#Server = http://archlinux.ip-connect.vn.ua/$repo/os/$arch
|
||||
#Server = https://archlinux.ip-connect.vn.ua/$repo/os/$arch
|
||||
#Server = http://mirror.mirohost.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.mirohost.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.nix.org.ua/linux/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.nix.org.ua/linux/archlinux/$repo/os/$arch
|
||||
|
||||
## United Kingdom
|
||||
#Server = http://archlinux.uk.mirror.allworldit.com/archlinux/$repo/os/$arch
|
||||
#Server = https://archlinux.uk.mirror.allworldit.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.bytemark.co.uk/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.bytemark.co.uk/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.gethosted.online/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.gethosted.online/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.manchester.m247.com/arch-linux/$repo/os/$arch
|
||||
#Server = http://mirrors.melbourne.co.uk/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.melbourne.co.uk/archlinux/$repo/os/$arch
|
||||
#Server = http://www.mirrorservice.org/sites/ftp.archlinux.org/$repo/os/$arch
|
||||
#Server = https://www.mirrorservice.org/sites/ftp.archlinux.org/$repo/os/$arch
|
||||
#Server = http://mirror.netweaver.uk/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.netweaver.uk/archlinux/$repo/os/$arch
|
||||
#Server = http://lon.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = https://lon.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.serverspace.co.uk/arch/$repo/os/$arch
|
||||
#Server = http://mirrors.ukfast.co.uk/sites/archlinux.org/$repo/os/$arch
|
||||
#Server = https://mirrors.ukfast.co.uk/sites/archlinux.org/$repo/os/$arch
|
||||
#Server = http://mirror.cov.ukservers.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.cov.ukservers.com/archlinux/$repo/os/$arch
|
||||
|
||||
## United States
|
||||
#Server = http://mirrors.acm.wpi.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.advancedhosters.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.aggregate.org/archlinux/$repo/os/$arch
|
||||
#Server = http://ca.us.mirror.archlinux-br.org/$repo/os/$arch
|
||||
#Server = http://il.us.mirror.archlinux-br.org/$repo/os/$arch
|
||||
#Server = http://mirror.arizona.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.arizona.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://arlm.tyzoid.com/$repo/os/$arch
|
||||
#Server = https://arlm.tyzoid.com/$repo/os/$arch
|
||||
#Server = https://mirror.ava.dev/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.bloomu.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.bloomu.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.cat.pdx.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.cc.columbia.edu/pub/linux/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.clarkson.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.clarkson.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.mirror.constant.com/$repo/os/$arch
|
||||
#Server = https://arch.mirror.constant.com/$repo/os/$arch
|
||||
#Server = http://mirror.cs.pitt.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.cs.vt.edu/pub/ArchLinux/$repo/os/$arch
|
||||
#Server = http://mirror.cybersecurity.nmt.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.cybersecurity.nmt.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://distro.ibiblio.org/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.es.its.nyu.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.ette.biz/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.ette.biz/archlinux/$repo/os/$arch
|
||||
#Server = http://codingflyboy.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://coresite.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://forksystems.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://irltoolkit.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mnvoip.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://ridgewireless.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://uvermont.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://ziply.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://codingflyboy.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://coresite.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://forksystems.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://irltoolkit.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mnvoip.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://ridgewireless.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://uvermont.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = https://ziply.mm.fcix.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.fossable.org/archlinux/$repo/os/$arch
|
||||
#Server = https://america.mirror.pkgbuild.com/$repo/os/$arch
|
||||
#Server = http://mirrors.gigenet.com/archlinux/$repo/os/$arch
|
||||
#Server = http://www.gtlib.gatech.edu/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.hackingand.coffee/arch/$repo/os/$arch
|
||||
#Server = https://mirror.hackingand.coffee/arch/$repo/os/$arch
|
||||
#Server = https://mirror.hodgepodge.dev/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.hostup.org/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.hostup.org/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.hu.fo/archlinux/$repo/os/$arch
|
||||
#Server = https://arch.hu.fo/archlinux/$repo/os/$arch
|
||||
#Server = http://repo.ialab.dsu.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://repo.ialab.dsu.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://arch.mirror.ivo.st/$repo/os/$arch
|
||||
#Server = http://mirrors.kernel.org/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.kernel.org/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.dal10.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.mia11.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.sfo12.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.wdc1.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.dal10.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.mia11.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.sfo12.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.wdc1.us.leaseweb.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.liquidweb.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.lty.me/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.lty.me/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.lug.mtu.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.lug.mtu.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.math.princeton.edu/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.metrocast.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.kaminski.io/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.kaminski.io/archlinux/$repo/os/$arch
|
||||
#Server = http://iad.mirrors.misaka.one/archlinux/$repo/os/$arch
|
||||
#Server = https://iad.mirrors.misaka.one/archlinux/$repo/os/$arch
|
||||
#Server = http://repo.miserver.it.umich.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.mit.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.mit.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.ocf.berkeley.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.ocf.berkeley.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://archmirror1.octyl.net/$repo/os/$arch
|
||||
#Server = https://archmirror1.octyl.net/$repo/os/$arch
|
||||
#Server = http://ftp.osuosl.org/pub/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.osuosl.org/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.mirrors.pair.com/$repo/os/$arch
|
||||
#Server = http://dfw.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = http://iad.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = http://ord.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = https://dfw.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = https://iad.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = https://ord.mirror.rackspace.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.radwebhosting.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.radwebhosting.com/archlinux/$repo/os/$arch
|
||||
#Server = http://plug-mirror.rcac.purdue.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://plug-mirror.rcac.purdue.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.rit.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.rit.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.rutgers.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.rutgers.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror2.sandyriver.net/pub/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.siena.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.sonic.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.sonic.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.phx1.us.spryservers.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.phx1.us.spryservers.net/archlinux/$repo/os/$arch
|
||||
#Server = http://arch.mirror.square-r00t.net/$repo/os/$arch
|
||||
#Server = https://arch.mirror.square-r00t.net/$repo/os/$arch
|
||||
#Server = http://mirror.stephen304.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.stephen304.com/archlinux/$repo/os/$arch
|
||||
#Server = http://ftp.sudhip.com/archlinux/$repo/os/$arch
|
||||
#Server = https://ftp.sudhip.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.pit.teraswitch.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.pit.teraswitch.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.the-repo.org/ArchMirror/$repo/os/$arch
|
||||
#Server = https://mirror.theash.xyz/arch/$repo/os/$arch
|
||||
#Server = https://mirror.tmmworkshop.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.umd.edu/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.umd.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.vectair.net/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.vectair.net/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.vtti.vt.edu/archlinux/$repo/os/$arch
|
||||
#Server = http://wcbmedia.io:8000/$repo/os/$arch
|
||||
#Server = http://mirrors.xmission.com/archlinux/$repo/os/$arch
|
||||
#Server = http://mirrors.xtom.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirrors.xtom.com/archlinux/$repo/os/$arch
|
||||
#Server = https://mirror.zackmyers.io/archlinux/$repo/os/$arch
|
||||
#Server = https://zxcvfdsa.com/arch/$repo/os/$arch
|
||||
|
||||
## Uzbekistan
|
||||
#Server = http://mirror.dc.uz/arch/$repo/os/$arch
|
||||
#Server = https://mirror.dc.uz/arch/$repo/os/$arch
|
||||
|
||||
## Vietnam
|
||||
#Server = https://mirrors.42tm.tech/archlinux/$repo/os/$arch
|
||||
#Server = http://f.archlinuxvn.org/archlinux/$repo/os/$arch
|
||||
#Server = http://mirror.bizflycloud.vn/archlinux/$repo/os/$arch
|
||||
|
|
@ -1,47 +0,0 @@
|
|||
## Official Website
|
||||
Server = https://repo.bioarchlinux.org/$arch
|
||||
|
||||
## Australia
|
||||
### xTom
|
||||
# Server = https://mirrors.xtom.au/bioarchlinux/$arch
|
||||
|
||||
## China
|
||||
### ISCAS
|
||||
# Server = https://mirror.iscas.ac.cn/BioArchLinux/$arch
|
||||
### Nanjing University
|
||||
# Server = http://mirror.nju.edu.cn/bioarchlinux/$arch
|
||||
# Server = https://mirror.nju.edu.cn/bioarchlinux/$arch
|
||||
### Nanjing University of Posts and Telecommunications
|
||||
# Server = http://mirrors.njupt.edu.cn/bioarchlinux/$arch
|
||||
# Server = https://mirrors.njupt.edu.cn/bioarchlinux/$arch
|
||||
### Shandong University
|
||||
# Server = http://mirrors.sdu.edu.cn/bioarchlinux/$arch
|
||||
# Server = https://mirrors.sdu.edu.cn/bioarchlinux/$arch
|
||||
### Xi'an Jiaotong University
|
||||
# Server = https://mirrors.xjtu.edu.cn/bioarchlinux/$arch
|
||||
|
||||
## China (HongKong)
|
||||
### xTom
|
||||
# Server = https://mirrors.xtom.hk/bioarchlinux/$arch
|
||||
|
||||
## Estonia
|
||||
### xTom
|
||||
# Server = https://mirrors.xtom.ee/bioarchlinux/$arch
|
||||
|
||||
## Germany
|
||||
### sunred
|
||||
# Server = https://mirror.sunred.org/bioarchlinux/$arch
|
||||
### xTom
|
||||
# Server = https://mirrors.xtom.de/bioarchlinux/$arch
|
||||
|
||||
## Japan
|
||||
### xTom
|
||||
# Server = https://mirrors.xtom.jp/bioarchlinux/$arch
|
||||
|
||||
## Netherland
|
||||
### xTom
|
||||
# Server = https://mirrors.xtom.nl/bioarchlinux/$arch
|
||||
|
||||
## United States
|
||||
### xTom
|
||||
# Server = https://mirrors.xtom.com/bioarchlinux/$arch
|
|
@ -1,3 +1,3 @@
|
|||
[Service]
|
||||
ExecStart=
|
||||
ExecStart=-/sbin/agetty -o '-p -f -- \\u' --noclear --autologin root - $TERM
|
||||
ExecStart=-/sbin/agetty -o '-p -f -- \\u' --noclear --autologin bio %I $TERM
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/iwd.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/systemd-networkd.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/systemd-networkd-wait-online.service
|
|
@ -0,0 +1,7 @@
|
|||
[Unit]
|
||||
ConditionKernelCommandLine=!mirror
|
||||
|
||||
[Service]
|
||||
Restart=on-failure
|
||||
RestartSec=10
|
||||
|
11
bio/airootfs/etc/systemd/system/select-mirror.service
Normal file
11
bio/airootfs/etc/systemd/system/select-mirror.service
Normal file
|
@ -0,0 +1,11 @@
|
|||
[Unit]
|
||||
Description=Choose mirror from the kernel command line
|
||||
ConditionKernelCommandLine=mirror
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=/usr/local/bin/select-mirror
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/system/systemd-networkd.socket
|
|
@ -1,6 +0,0 @@
|
|||
# Allow systemd-networkd-wait-online to succeed with one interface, otherwise, if multiple network interfaces exist,
|
||||
# network-online.target gets needlessly delayed.
|
||||
# See https://wiki.archlinux.org/title/systemd-networkd#systemd-networkd-wait-online
|
||||
[Service]
|
||||
ExecStart=
|
||||
ExecStart=/usr/lib/systemd/systemd-networkd-wait-online --any
|
|
@ -2,4 +2,4 @@
|
|||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
exec lynx 'https://wiki.archlinux.org/title/Installation_guide'
|
||||
exec lynx 'https://github.com/BioArchLinux/iso'
|
||||
|
|
4
bio/airootfs/usr/local/bin/select-mirrorlist
Executable file
4
bio/airootfs/usr/local/bin/select-mirrorlist
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
mv /etc/pacman.d/mirrorlist.bio /etc/pacman.d/mirrorlist.bio.pacnew
|
||||
rankmirrors /etc/pacman.d/mirrorlist.bio.pacnew -r bioarchlinux >> /etc/pacman.d/mirrorlist.bio
|
||||
sed -i '/^#/d' /etc/pacman.d/mirrorlist.bio
|
0
bio/airootfs/usr/share/pacman/keyrings/.gitkeep
Normal file
0
bio/airootfs/usr/share/pacman/keyrings/.gitkeep
Normal file
|
@ -1 +0,0 @@
|
|||
B1F96021DB62254D:4:
|
|
@ -1,41 +0,0 @@
|
|||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
|
||||
mQGNBGEREo8BDADPlAh26kdcNAvA9GToOfxoR99ErTkdvzZhO4gse1ZDSs5B6CCP
|
||||
lx5nXjIwVE+TKgpQesgMIqZl6clJrSeZozWVJ7nHWQChamY1J3cs7P4Q2VQ7fJ5j
|
||||
u/VQ+TrSPuRpNv9qAE950t1M1tFKVO4HiH0ogHkf0/uX65R7vsSHZvbwekIXtHk1
|
||||
qIB94PiDmPhr3mJi4VWH+21nYpVJDrKQNUFUMUXJzmk4USvJSW4jEsuBcCXd1uCB
|
||||
BHIawQw825KE209cwNb3verKQ57YoudrpiQOHF+oZxFmQhMZMYqMtbCM6oWa3DWv
|
||||
2k7OVCV8MMx0YaXEoQsJ+AqbagBC8f/NzOMRNfnd4jO54AM3bguifbJrBJPIKuD0
|
||||
vYH8zEpaJmeYqyt5iE3hC+hWwS2nRq6+FeJGMfT8U8wSU0qSttcpcjfmjbrqq21a
|
||||
kWsEuySnELrhH2zKIuQwqDAvzXm4fpfLpWBrGVZjZjjgv2A0EwaN0EMZScQ4tmgK
|
||||
Ldd3k0EDFJJUfj8AEQEAAbQnR3VveWkgWmhhbmcgPGd1b3lpemhhbmdAbWFsYWNv
|
||||
bG9neS5uZXQ+iQHOBBMBCAA4FiEEDg+X+2aEuCFG0yausflgIdtiJU0FAmEREo8C
|
||||
GwMFCwkIBwIGFQoJCAsCBBYCAwECHgECF4AACgkQsflgIdtiJU0b+Qv/e0Oo6Cw0
|
||||
V3BqgjJQ4EmtvsBRVpoFskaGYarR2QlhTSP4lxF6t6WuDJl8v3TNdtJF0ZduKsf1
|
||||
l9GUiDRa5dtqledBY3viKBrCalD/IsGsxSON97ARBMap9wWnYCBlEfRrlXYKI/SY
|
||||
OdbShIoiN1spON39dsfN7DOd0luyz3CsbyaZaJccS5+Fjls/VEiCR+7f4MCoUPBN
|
||||
rbKbPO3ppBCybgo3ivL0idTnp7IqAm76+AiKiqIltLQFFwmTsW2xIw9wdhrxWW4L
|
||||
3KV2vL3YkNfDTZSk4Y1wQarJSQlvbA0ONJaIJUzm5rYf7GH8G0srOq/HYB3kNSBA
|
||||
RMkPOolZl1aXsB+KALaLUVLITNCXuKuZCwj34Q4yryMj3ga1eEwi55eHQcHoPo1s
|
||||
K3rO9YBsyYeUdk6bBGaJwtKOjs0vMH0DoPyrtNtp+eru4YBdaZUIVC5SMKC5xWyI
|
||||
ONVBct9zv9X/kqweNiZP6QIq9muophsItswaaY2twG9D1kG4CePSp1sfuQGNBGER
|
||||
Eo8BDADaYNchn94fcUf1D7BNRzzI07fqj3OnNGH6m67f40O61sl409VJ4+JvaWtN
|
||||
mL6Yb/0zY8lbKzL6fEmo+lUx+QSmbDaqsc1otlxP5taH5iEjJUoyv8TFOkrqeguL
|
||||
THHsbX5MowR5LUKlqJaV777Zr8zEj2e92aWTCyE/hSwyBAk725R1vcGf2pFVOjc1
|
||||
HjpqKEM291rtlb6s/IXUVY0lKulKcT865ilBxiHgs2Yi8wrOjfMHitjMIXKUewAy
|
||||
/y1bOD4udgm5ImFUBAnrTTn4REv53imINQ104VwvBanMPzS/5YU5XPnm2bz+/2tn
|
||||
7LdTYv88td44ygra/Uq32Img1w+xnS5ZTv2alEqRZDmtitXoNOPO6vqCW0lsjDj3
|
||||
D1satl0pGLF2iWquxtjwL4WdQv3Hy7/tcQb8lcXhDBL0p+op5DB8Qe6P4MY3bo3R
|
||||
i4TV7H1VoB7yAquWAQEc4LCsG5JkYthdMO8El9uapOpSf3LIKyf8bQv79vMbaduf
|
||||
aarHDTkAEQEAAYkBtgQYAQgAIBYhBA4Pl/tmhLghRtMmrrH5YCHbYiVNBQJhERKP
|
||||
AhsMAAoJELH5YCHbYiVN8OgL/3EQUC4BYJ2V6xVP1fxdUYTN+/+Po03F35aIzzn2
|
||||
nK60YmMFf19Mb66iSsPhBvz+vqn8fMMA4vEj0KoeMzPbtTmpUEqw1EmoQANUCDf6
|
||||
eRgsRQeK4UcjbXyapSu1MVHz87BFUWEaMTiHmx627xVRtuQPC8TiOobsCmc22JkG
|
||||
inx8k1Hx9C1YE9vH68R/uc3salugm8KG+L6aFxGabi5wh01JTProc9mf0sVDOFis
|
||||
j6olAjGT+kiBCcOzAIXLZDYH6/F3G7/171ra/FU3iw09qhqLezzjr165c0cVDG9U
|
||||
4lZIidqlHM6mROq4eJlVUIzgziSlOHmZYgsw03UvfLf5wXS8tvpjNHr1fUQf3UeO
|
||||
j0/5PjJ3tWCdkrL3lLLna6ZeFN8rQtf+d9SKMnE44FYDPkKGzSjZNu8GqtF5kcsA
|
||||
j3mBEha1amctJZLCgwlX2KvEO9S5icgvbYM6/1oeqNDa0kL6GxqnIrforX0CEt1t
|
||||
dEx6pGebpfoFdjn8MYSWUHRrVQ==
|
||||
=OnWF
|
||||
-----END PGP PUBLIC KEY BLOCK-----
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 7.4 KiB |
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue