nspawn/mkosi-definitions

RAW zstd-compressed images fails to start

ShalokShalom opened this issue · 10 comments

machinectl start image.raw.zstd

Job for systemd-nspawn@image.raw.zstd.service failed because the control process exited with error code.
See "systemctl status systemd-nspawn@image.raw.zstd.service" and "journalctl -xeu systemd-nspawn@image.raw.zstd.service" for details.

systemctl status systemd-nspawn@image.raw.zstd.service

x systemd-nspawn@image.raw.zstd.service - Container image.raw.zstd
     Loaded: loaded (/usr/lib/systemd/system/systemd-nspawn@.service; disabled; vendor preset: enabled)
     Active: failed (Result: exit-code) since Sun 2022-02-27 13:33:08 CET; 40s ago
       Docs: man:systemd-nspawn(1)
    Process: 6278 ExecStart=systemd-nspawn --quiet --keep-unit --boot --link-journal=try-guest --network-veth -U --settings=override --machine=image.raw.zstd (code=exited, status=1/FAILURE)
   Main PID: 6278 (code=exited, status=1/FAILURE)
     Status: "Terminating..."
      Error: 65 (Package not installed)

Feb 27 13:33:08 cosmos64 systemd-nspawn[6278]: /var/lib/machines/image.raw.zstd.raw: Couldn't identify a suitable partition table or file system.
Feb 27 13:33:08 cosmos64 systemd-nspawn[6278]: Note that the disk image needs to
Feb 27 13:33:08 cosmos64 systemd-nspawn[6278]:     a) either contain only a single MBR partition of type 0x83 that is marked bootable
Feb 27 13:33:08 cosmos64 systemd-nspawn[6278]:     b) or contain a single GPT partition of type 0FC63DAF-8483-4772-8E79-3D69D8477DE4
Feb 27 13:33:08 cosmos64 systemd-nspawn[6278]:     c) or follow https://systemd.io/DISCOVERABLE_PARTITIONS
Feb 27 13:33:08 cosmos64 systemd-nspawn[6278]:     d) or contain a file system without a partition table
Feb 27 13:33:08 cosmos64 systemd-nspawn[6278]: in order to be bootable with systemd-nspawn.
Feb 27 13:33:08 cosmos64 systemd[1]: systemd-nspawn@image.raw.zstd.service: Main process exited, code=exited, status=1/FAILURE
Feb 27 13:33:08 cosmos64 systemd[1]: systemd-nspawn@image.raw.zstd.service: Failed with result 'exit-code'.
Feb 27 13:33:08 cosmos64 systemd[1]: Failed to start Container image.raw.zstd.

journalctl -xeu systemd-nspawn@image.raw.zstd.service

Feb 27 13:33:08 cosmos64 systemd[1]: Starting Container image.raw.zstd...
-- Subject: A start job for unit systemd-nspawn@image.raw.zstd.service has begun execution
-- Defined-By: systemd
-- Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- A start job for unit systemd-nspawn@image.raw.zstd.service has begun execution.
-- 
-- The job identifier is 1521.
Feb 27 13:33:08 cosmos64 systemd-nspawn[6278]: /var/lib/machines/image.raw.zstd.raw: Couldn't identify a suitable partition table or file system.
Feb 27 13:33:08 cosmos64 systemd-nspawn[6278]: Note that the disk image needs to
Feb 27 13:33:08 cosmos64 systemd-nspawn[6278]:     a) either contain only a single MBR partition of type 0x83 that is marked bootable
Feb 27 13:33:08 cosmos64 systemd-nspawn[6278]:     b) or contain a single GPT partition of type 0FC63DAF-8483-4772-8E79-3D69D8477DE4
Feb 27 13:33:08 cosmos64 systemd-nspawn[6278]:     c) or follow https://systemd.io/DISCOVERABLE_PARTITIONS
Feb 27 13:33:08 cosmos64 systemd-nspawn[6278]:     d) or contain a file system without a partition table
Feb 27 13:33:08 cosmos64 systemd-nspawn[6278]: in order to be bootable with systemd-nspawn.
Feb 27 13:33:08 cosmos64 systemd[1]: systemd-nspawn@image.raw.zstd.service: Main process exited, code=exited, status=1/FAILURE
-- Subject: Unit process exited
-- Defined-By: systemd
-- Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- An ExecStart= process belonging to unit systemd-nspawn@image.raw.zstd.service has exited.
-- 
-- The process' exit code is 'exited' and its exit status is 1.
Feb 27 13:33:08 cosmos64 systemd[1]: systemd-nspawn@image.raw.zstd.service: Failed with result 'exit-code'.
-- Subject: Unit failed
-- Defined-By: systemd
-- Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- The unit systemd-nspawn@image.raw.zstd.service has entered the 'failed' state with result 'exit-code'.
Feb 27 13:33:08 cosmos64 systemd[1]: Failed to start Container image.raw.zstd.
-- Subject: A start job for unit systemd-nspawn@image.raw.zstd.service has failed
-- Defined-By: systemd
-- Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- A start job for unit systemd-nspawn@image.raw.zstd.service has finished with a failure.
-- 
-- The job identifier is 1521 and the job result is failed.

Used command to install the nspawn image:
sudo machinectl pull-raw --verify=checksum https://hub.nspawn.org/storage/archlinux/archlinux/raw/image.raw.zstd

Hello, thanks for the report. It seems to be a problem with systemd not decompressing the .zstd image after pulling it. If you do a file /var/lib/machines/image.raw.zstd.raw (weird name) you will see that it's still a ZSTD compressed file, but if you manually do unzstd /var/lib/machines/image.raw.zstd.raw -o /var/lib/machines/image.raw and then file /var/lib/machines/image.raw, it's now a DOS/MBR boot sector; partition 1 : ID=0xee, start-CHS (0x0,0,2), end-CHS (0x3ff,255,63), startsector 1, 6819839 sectors, extended partition table (last) file and you can do systemd-nspawn -bi /var/lib/machines/image.raw

@bluca is not systemd supposed to extract the ZSTD compressed RAW image or do I understand it wrong?

I'm checking if changing the compression method back to xz for the RAW images will work, if that's the case then I will change it back to address the current problem.

So you guess systemd is currently unable to unpack zstd?

Yes, that was my guess and I confirmed it. However, I'm a bit confused now. According to the mkosi manpage:

     CompressOutput=, --compress-output=
              Configure compression for the resulting image or archive.  The argument can be either a boolean or a compression algorithm (xz, zstd).  xz compression is used by  default.
              Note  that  when  applied  to block device image types this means the image cannot be started directly but needs to be decompressed first.  This also means that the shell,
              boot, qemu verbs are not available when this option is used.  Implied for tar and cpio.

Especially the sentence Note that when applied to block device image types this means the image cannot be started directly but needs to be decompressed first. indicated that you should ¿? extract it manually first always? However, when I use xz as a compression algorithm, the pull-raw/import-raw commands work just fine and the image is usable immediately.

I'm switching back to xz for the raw images to address this problem.

Well, I guess mkosi doesnt support zstd. I open a bug report there.
Did you never test this with zstd?

mkosi supports zstd just fine, the tar images that we have are compressed with zstd, the problem is with the raw ones. mkosi does his job well, because if you download one of your current images and run file image.raw.zstd, it's a ZSTD compressed file, so the problem is definitely on the systemd side.

You might be more suitable, to report that bug.

Can you please check out the latest script and try to download/use RAW images? This issue should be fixed now.

Yeah, raw downloads seem to work now.
I get another issue, should I start a new thread for this?

machinectl shell blackarch-blackarch-raw
machinectl login blackarch-blackarch-raw

[ blackarch ~ ]# pacman -Syu
:: Synchronizing package databases...
 core.db failed to download
error: failed retrieving file 'core.db' from mirror.rackspace.com : Could not resolve host: mirror.rackspace.com
warning: too many errors from mirror.rackspace.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.aarnet.edu.au : Could not resolve host: mirror.aarnet.edu.au
warning: too many errors from mirror.aarnet.edu.au, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.mirror.digitalpacific.com.au : Could not resolve host: archlinux.mirror.digitalpacific.com.au
warning: too many errors from archlinux.mirror.digitalpacific.com.au, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.iinet.net.au : Could not resolve host: ftp.iinet.net.au
warning: too many errors from ftp.iinet.net.au, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.internode.on.net : Could not resolve host: mirror.internode.on.net
warning: too many errors from mirror.internode.on.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.lucassymons.net : Could not resolve host: arch.lucassymons.net
warning: too many errors from arch.lucassymons.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from syd.mirror.rackspace.com : Could not resolve host: syd.mirror.rackspace.com
warning: too many errors from syd.mirror.rackspace.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.swin.edu.au : Could not resolve host: ftp.swin.edu.au
warning: too many errors from ftp.swin.edu.au, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.alwyzon.net : Could not resolve host: mirror.alwyzon.net
warning: too many errors from mirror.alwyzon.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.digitalnova.at : Could not resolve host: mirror.digitalnova.at
warning: too many errors from mirror.digitalnova.at, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.easyname.at : Could not resolve host: mirror.easyname.at
warning: too many errors from mirror.easyname.at, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.reisenbauer.ee : Could not resolve host: mirror.reisenbauer.ee
warning: too many errors from mirror.reisenbauer.ee, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.xeonbd.com : Could not resolve host: mirror.xeonbd.com
warning: too many errors from mirror.xeonbd.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.byfly.by : Could not resolve host: ftp.byfly.by
warning: too many errors from ftp.byfly.by, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.datacenter.by : Could not resolve host: mirror.datacenter.by
warning: too many errors from mirror.datacenter.by, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.cu.be : Could not resolve host: archlinux.cu.be
warning: too many errors from archlinux.cu.be, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.mirror.kangaroot.net : Could not resolve host: archlinux.mirror.kangaroot.net
warning: too many errors from archlinux.mirror.kangaroot.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.tiguinet.net : Could not resolve host: mirror.tiguinet.net
warning: too many errors from mirror.tiguinet.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.mirror.ba : Could not resolve host: archlinux.mirror.ba
warning: too many errors from archlinux.mirror.ba, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux-br.com.br : Could not resolve host: archlinux-br.com.br
warning: too many errors from archlinux-br.com.br, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from br.mirror.archlinux-br.org : Could not resolve host: br.mirror.archlinux-br.org
warning: too many errors from br.mirror.archlinux-br.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.c3sl.ufpr.br : Could not resolve host: archlinux.c3sl.ufpr.br
warning: too many errors from archlinux.c3sl.ufpr.br, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from www.caco.ic.unicamp.br : Could not resolve host: www.caco.ic.unicamp.br
warning: too many errors from www.caco.ic.unicamp.br, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from linorg.usp.br : Could not resolve host: linorg.usp.br
warning: too many errors from linorg.usp.br, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.pop-es.rnp.br : Could not resolve host: archlinux.pop-es.rnp.br
warning: too many errors from archlinux.pop-es.rnp.br, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.ufam.edu.br : Could not resolve host: mirror.ufam.edu.br
warning: too many errors from mirror.ufam.edu.br, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.ufscar.br : Could not resolve host: mirror.ufscar.br
warning: too many errors from mirror.ufscar.br, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.darklinux.uk : Could not resolve host: mirror.darklinux.uk
warning: too many errors from mirror.darklinux.uk, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.host.ag : Could not resolve host: mirror.host.ag
warning: too many errors from mirror.host.ag, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.netix.net : Could not resolve host: mirrors.netix.net
warning: too many errors from mirrors.netix.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.telepoint.bg : Could not resolve host: mirror.telepoint.bg
warning: too many errors from mirror.telepoint.bg, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.uni-plovdiv.net : Could not resolve host: mirrors.uni-plovdiv.net
warning: too many errors from mirrors.uni-plovdiv.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.sabay.com.kh : Could not resolve host: mirror.sabay.com.kh
warning: too many errors from mirror.sabay.com.kh, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.0xem.ma : Could not resolve host: mirror.0xem.ma
warning: too many errors from mirror.0xem.ma, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.cedille.club : Could not resolve host: mirror.cedille.club
warning: too many errors from mirror.cedille.club, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.mirror.colo-serv.net : Could not resolve host: archlinux.mirror.colo-serv.net
warning: too many errors from archlinux.mirror.colo-serv.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.csclub.uwaterloo.ca : Could not resolve host: mirror.csclub.uwaterloo.ca
warning: too many errors from mirror.csclub.uwaterloo.ca, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror2.evolution-host.com : Could not resolve host: mirror2.evolution-host.com
warning: too many errors from mirror2.evolution-host.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.its.dal.ca : Could not resolve host: mirror.its.dal.ca
warning: too many errors from mirror.its.dal.ca, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from muug.ca : Could not resolve host: muug.ca
warning: too many errors from muug.ca, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.powerfly.ca : Could not resolve host: arch.powerfly.ca
warning: too many errors from arch.powerfly.ca, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.mirror.rafal.ca : Could not resolve host: archlinux.mirror.rafal.ca
warning: too many errors from archlinux.mirror.rafal.ca, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.scd31.com : Could not resolve host: mirror.scd31.com
warning: too many errors from mirror.scd31.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.sergal.org : Could not resolve host: mirror.sergal.org
warning: too many errors from mirror.sergal.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.anquan.cl : Could not resolve host: mirror.anquan.cl
warning: too many errors from mirror.anquan.cl, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.archlinux.cl : Could not resolve host: mirror.archlinux.cl
warning: too many errors from mirror.archlinux.cl, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror1.cl.netactuate.com : Could not resolve host: mirror1.cl.netactuate.com
warning: too many errors from mirror1.cl.netactuate.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.ufro.cl : Could not resolve host: mirror.ufro.cl
warning: too many errors from mirror.ufro.cl, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.163.com : Could not resolve host: mirrors.163.com
warning: too many errors from mirrors.163.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.aliyun.com : Could not resolve host: mirrors.aliyun.com
warning: too many errors from mirrors.aliyun.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.bfsu.edu.cn : Could not resolve host: mirrors.bfsu.edu.cn
warning: too many errors from mirrors.bfsu.edu.cn, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.cqu.edu.cn : Could not resolve host: mirrors.cqu.edu.cn
warning: too many errors from mirrors.cqu.edu.cn, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.dgut.edu.cn : Could not resolve host: mirrors.dgut.edu.cn
warning: too many errors from mirrors.dgut.edu.cn, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.hit.edu.cn : Could not resolve host: mirrors.hit.edu.cn
warning: too many errors from mirrors.hit.edu.cn, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.lzu.edu.cn : Could not resolve host: mirror.lzu.edu.cn
warning: too many errors from mirror.lzu.edu.cn, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.neusoft.edu.cn : Could not resolve host: mirrors.neusoft.edu.cn
warning: too many errors from mirrors.neusoft.edu.cn, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.nju.edu.cn : Could not resolve host: mirrors.nju.edu.cn
warning: too many errors from mirrors.nju.edu.cn, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.redrock.team : Could not resolve host: mirror.redrock.team
warning: too many errors from mirror.redrock.team, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.sjtug.sjtu.edu.cn : Could not resolve host: mirrors.sjtug.sjtu.edu.cn
warning: too many errors from mirrors.sjtug.sjtu.edu.cn, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.tuna.tsinghua.edu.cn : Could not resolve host: mirrors.tuna.tsinghua.edu.cn
warning: too many errors from mirrors.tuna.tsinghua.edu.cn, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.ustc.edu.cn : Could not resolve host: mirrors.ustc.edu.cn
warning: too many errors from mirrors.ustc.edu.cn, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.wsyu.edu.cn : Could not resolve host: mirrors.wsyu.edu.cn
warning: too many errors from mirrors.wsyu.edu.cn, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.xjtu.edu.cn : Could not resolve host: mirrors.xjtu.edu.cn
warning: too many errors from mirrors.xjtu.edu.cn, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.zju.edu.cn : Could not resolve host: mirrors.zju.edu.cn
warning: too many errors from mirrors.zju.edu.cn, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.udenar.edu.co : Could not resolve host: mirrors.udenar.edu.co
warning: too many errors from mirrors.udenar.edu.co, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.iskon.hr : Could not resolve host: archlinux.iskon.hr
warning: too many errors from archlinux.iskon.hr, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.dkm.cz : Could not resolve host: mirror.dkm.cz
warning: too many errors from mirror.dkm.cz, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from europe.mirror.pkgbuild.com : Could not resolve host: europe.mirror.pkgbuild.com
warning: too many errors from europe.mirror.pkgbuild.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.fi.muni.cz : Could not resolve host: ftp.fi.muni.cz
warning: too many errors from ftp.fi.muni.cz, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.linux.cz : Could not resolve host: ftp.linux.cz
warning: too many errors from ftp.linux.cz, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from gluttony.sin.cvut.cz : Could not resolve host: gluttony.sin.cvut.cz
warning: too many errors from gluttony.sin.cvut.cz, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.nic.cz : Could not resolve host: mirrors.nic.cz
warning: too many errors from mirrors.nic.cz, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.sh.cvut.cz : Could not resolve host: ftp.sh.cvut.cz
warning: too many errors from ftp.sh.cvut.cz, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.vpsfree.cz : Could not resolve host: mirror.vpsfree.cz
warning: too many errors from mirror.vpsfree.cz, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.dotsrc.org : Could not resolve host: mirrors.dotsrc.org
warning: too many errors from mirrors.dotsrc.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.one.com : Could not resolve host: mirror.one.com
warning: too many errors from mirror.one.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.safe-con.dk : Could not resolve host: mirror.safe-con.dk
warning: too many errors from mirror.safe-con.dk, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.cedia.org.ec : Could not resolve host: mirror.cedia.org.ec
warning: too many errors from mirror.cedia.org.ec, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.espoch.edu.ec : Could not resolve host: mirror.espoch.edu.ec
warning: too many errors from mirror.espoch.edu.ec, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.uta.edu.ec : Could not resolve host: mirror.uta.edu.ec
warning: too many errors from mirror.uta.edu.ec, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.cspacehostings.com : Could not resolve host: mirror.cspacehostings.com
warning: too many errors from mirror.cspacehostings.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.xtom.ee : Could not resolve host: mirrors.xtom.ee
warning: too many errors from mirrors.xtom.ee, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.mcstrugs.org : Could not resolve host: arch.mcstrugs.org
warning: too many errors from arch.mcstrugs.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.arctic.lol : Could not resolve host: mirror.arctic.lol
warning: too many errors from mirror.arctic.lol, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.mirror.far.fi : Could not resolve host: arch.mirror.far.fi
warning: too many errors from arch.mirror.far.fi, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.hosthink.net : Could not resolve host: mirror.hosthink.net
warning: too many errors from mirror.hosthink.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.srv.fail : Could not resolve host: mirror.srv.fail
warning: too many errors from mirror.srv.fail, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.wuki.li : Could not resolve host: mirror.wuki.li
warning: too many errors from mirror.wuki.li, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.yhtez.xyz : Could not resolve host: arch.yhtez.xyz
warning: too many errors from arch.yhtez.xyz, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.de-labrusse.fr : Could not resolve host: archlinux.de-labrusse.fr
warning: too many errors from archlinux.de-labrusse.fr, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.archlinux.ikoula.com : Could not resolve host: mirror.archlinux.ikoula.com
warning: too many errors from mirror.archlinux.ikoula.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.vi-di.fr : Could not resolve host: archlinux.vi-di.fr
warning: too many errors from archlinux.vi-di.fr, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.mirrors.benatherton.com : Could not resolve host: archlinux.mirrors.benatherton.com
warning: too many errors from archlinux.mirrors.benatherton.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.cyberbits.eu : Could not resolve host: mirror.cyberbits.eu
warning: too many errors from mirror.cyberbits.eu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.datagr.am : Could not resolve host: archlinux.datagr.am
warning: too many errors from archlinux.datagr.am, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.eric.ovh : Could not resolve host: mirrors.eric.ovh
warning: too many errors from mirrors.eric.ovh, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.gandi.net : Could not resolve host: mirrors.gandi.net
warning: too many errors from mirrors.gandi.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.ibakerserver.pt : Could not resolve host: mirror.ibakerserver.pt
warning: too many errors from mirror.ibakerserver.pt, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.ibcp.fr : Could not resolve host: mirror.ibcp.fr
warning: too many errors from mirror.ibcp.fr, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.juline.tech : Could not resolve host: arch.juline.tech
warning: too many errors from arch.juline.tech, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.lastmikoi.net : Could not resolve host: mirror.lastmikoi.net
warning: too many errors from mirror.lastmikoi.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch-mirror.cloud.louifox.house : Could not resolve host: arch-mirror.cloud.louifox.house
warning: too many errors from arch-mirror.cloud.louifox.house, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.mailtunnel.eu : Could not resolve host: archlinux.mailtunnel.eu
warning: too many errors from archlinux.mailtunnel.eu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mir.archlinux.fr : Could not resolve host: mir.archlinux.fr
warning: too many errors from mir.archlinux.fr, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.celianvdb.fr : Could not resolve host: mirrors.celianvdb.fr
warning: too many errors from mirrors.celianvdb.fr, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.nimukaito.net : Could not resolve host: arch.nimukaito.net
warning: too many errors from arch.nimukaito.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.oldsql.cc : Could not resolve host: mirror.oldsql.cc
warning: too many errors from mirror.oldsql.cc, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.mirrors.ovh.net : Could not resolve host: archlinux.mirrors.ovh.net
warning: too many errors from archlinux.mirrors.ovh.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.polymorf.fr : Could not resolve host: archlinux.polymorf.fr
warning: too many errors from archlinux.polymorf.fr, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.rezopole.net : Could not resolve host: archlinux.rezopole.net
warning: too many errors from archlinux.rezopole.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.slaanesh.org : Could not resolve host: mirrors.slaanesh.org
warning: too many errors from mirrors.slaanesh.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.standaloneinstaller.com : Could not resolve host: mirrors.standaloneinstaller.com
warning: too many errors from mirrors.standaloneinstaller.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.sysa.tech : Could not resolve host: mirror.sysa.tech
warning: too many errors from mirror.sysa.tech, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.thekinrar.fr : Could not resolve host: mirror.thekinrar.fr
warning: too many errors from mirror.thekinrar.fr, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.theo546.fr : Could not resolve host: mirror.theo546.fr
warning: too many errors from mirror.theo546.fr, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.u-strasbg.fr : Could not resolve host: ftp.u-strasbg.fr
warning: too many errors from ftp.u-strasbg.fr, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.wormhole.eu : Could not resolve host: mirror.wormhole.eu
warning: too many errors from mirror.wormhole.eu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirroir.wptheme.fr : Could not resolve host: mirroir.wptheme.fr
warning: too many errors from mirroir.wptheme.fr, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.yourlabs.org : Could not resolve host: arch.yourlabs.org
warning: too many errors from arch.yourlabs.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.grena.ge : Could not resolve host: archlinux.grena.ge
warning: too many errors from archlinux.grena.ge, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.23m.com : Could not resolve host: mirror.23m.com
warning: too many errors from mirror.23m.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.agdsn.de : Could not resolve host: ftp.agdsn.de
warning: too many errors from ftp.agdsn.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from appuals.com : Could not resolve host: appuals.com
warning: too many errors from appuals.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from artfiles.org : Could not resolve host: artfiles.org
warning: too many errors from artfiles.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.bethselamin.de : Could not resolve host: mirror.bethselamin.de
warning: too many errors from mirror.bethselamin.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.chaoticum.net : Could not resolve host: mirror.chaoticum.net
warning: too many errors from mirror.chaoticum.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.checkdomain.de : Could not resolve host: mirror.checkdomain.de
warning: too many errors from mirror.checkdomain.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.clientvps.com : Could not resolve host: mirror.clientvps.com
warning: too many errors from mirror.clientvps.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from os.codefionn.eu : Could not resolve host: os.codefionn.eu
warning: too many errors from os.codefionn.eu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.dogado.de : Could not resolve host: mirror.dogado.de
warning: too many errors from mirror.dogado.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.f4st.host : Could not resolve host: mirror.f4st.host
warning: too many errors from mirror.f4st.host, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.fau.de : Could not resolve host: ftp.fau.de
warning: too many errors from ftp.fau.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from pkg.fef.moe : Could not resolve host: pkg.fef.moe
warning: too many errors from pkg.fef.moe, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from dist-mirror.fem.tu-ilmenau.de : Could not resolve host: dist-mirror.fem.tu-ilmenau.de
warning: too many errors from dist-mirror.fem.tu-ilmenau.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.fsrv.services : Could not resolve host: mirror.fsrv.services
warning: too many errors from mirror.fsrv.services, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archive.gamerparty.eu : Could not resolve host: archive.gamerparty.eu
warning: too many errors from archive.gamerparty.eu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.gnomus.de : Could not resolve host: mirror.gnomus.de
warning: too many errors from mirror.gnomus.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from www.gutscheindrache.com : Could not resolve host: www.gutscheindrache.com
warning: too many errors from www.gutscheindrache.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.gwdg.de : Could not resolve host: ftp.gwdg.de
warning: too many errors from ftp.gwdg.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.homeinfo.de : Could not resolve host: archlinux.homeinfo.de
warning: too many errors from archlinux.homeinfo.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.honkgong.info : Could not resolve host: archlinux.honkgong.info
warning: too many errors from archlinux.honkgong.info, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.hosteurope.de : Could not resolve host: ftp.hosteurope.de
warning: too many errors from ftp.hosteurope.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp-stud.hs-esslingen.de : Could not resolve host: ftp-stud.hs-esslingen.de
warning: too many errors from ftp-stud.hs-esslingen.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.mirror.iphh.net : Could not resolve host: archlinux.mirror.iphh.net
warning: too many errors from archlinux.mirror.iphh.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.iusearchbtw.nl : Could not resolve host: mirror.iusearchbtw.nl
warning: too many errors from mirror.iusearchbtw.nl, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.jaime.sh : Could not resolve host: mirror.jaime.sh
warning: too many errors from mirror.jaime.sh, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.janbruckner.de : Could not resolve host: mirrors.janbruckner.de
warning: too many errors from mirrors.janbruckner.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.jensgutermuth.de : Could not resolve host: arch.jensgutermuth.de
warning: too many errors from arch.jensgutermuth.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from de.arch.mirror.kescher.at : Could not resolve host: de.arch.mirror.kescher.at
warning: too many errors from de.arch.mirror.kescher.at, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.kumi.systems : Could not resolve host: mirror.kumi.systems
warning: too many errors from mirror.kumi.systems, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.fra10.de.leaseweb.net : Could not resolve host: mirror.fra10.de.leaseweb.net
warning: too many errors from mirror.fra10.de.leaseweb.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.luzea.de : Could not resolve host: mirror.luzea.de
warning: too many errors from mirror.luzea.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.metalgamer.eu : Could not resolve host: mirror.metalgamer.eu
warning: too many errors from mirror.metalgamer.eu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.mikrogravitation.org : Could not resolve host: mirror.mikrogravitation.org
warning: too many errors from mirror.mikrogravitation.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.pkgbuild.com : Could not resolve host: mirror.pkgbuild.com
warning: too many errors from mirror.pkgbuild.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.moson.org : Could not resolve host: mirror.moson.org
warning: too many errors from mirror.moson.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.n-ix.net : Could not resolve host: mirrors.n-ix.net
warning: too many errors from mirrors.n-ix.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.netcologne.de : Could not resolve host: mirror.netcologne.de
warning: too many errors from mirror.netcologne.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.niyawe.de : Could not resolve host: mirrors.niyawe.de
warning: too many errors from mirrors.niyawe.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.orbit-os.com : Could not resolve host: mirror.orbit-os.com
warning: too many errors from mirror.orbit-os.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from packages.oth-regensburg.de : Could not resolve host: packages.oth-regensburg.de
warning: too many errors from packages.oth-regensburg.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.pagenotfound.de : Could not resolve host: mirror.pagenotfound.de
warning: too many errors from mirror.pagenotfound.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from phinau.de : Could not resolve host: phinau.de
warning: too many errors from phinau.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.pseudoform.org : Could not resolve host: mirror.pseudoform.org
warning: too many errors from mirror.pseudoform.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from www.ratenzahlung.de : Could not resolve host: www.ratenzahlung.de
warning: too many errors from www.ratenzahlung.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.halifax.rwth-aachen.de : Could not resolve host: ftp.halifax.rwth-aachen.de
warning: too many errors from ftp.halifax.rwth-aachen.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from linux.rz.rub.de : Could not resolve host: linux.rz.rub.de
warning: too many errors from linux.rz.rub.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.satis-faction.de : Could not resolve host: mirror.satis-faction.de
warning: too many errors from mirror.satis-faction.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.selfnet.de : Could not resolve host: mirror.selfnet.de
warning: too many errors from mirror.selfnet.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.spline.inf.fu-berlin.de : Could not resolve host: ftp.spline.inf.fu-berlin.de
warning: too many errors from ftp.spline.inf.fu-berlin.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.thaller.ws : Could not resolve host: archlinux.thaller.ws
warning: too many errors from archlinux.thaller.ws, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.tu-chemnitz.de : Could not resolve host: ftp.tu-chemnitz.de
warning: too many errors from ftp.tu-chemnitz.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.ubrco.de : Could not resolve host: mirror.ubrco.de
warning: too many errors from mirror.ubrco.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.undisclose.de : Could not resolve host: mirror.undisclose.de
warning: too many errors from mirror.undisclose.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.uni-bayreuth.de : Could not resolve host: ftp.uni-bayreuth.de
warning: too many errors from ftp.uni-bayreuth.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.uni-hannover.de : Could not resolve host: ftp.uni-hannover.de
warning: too many errors from ftp.uni-hannover.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.uni-kl.de : Could not resolve host: ftp.uni-kl.de
warning: too many errors from ftp.uni-kl.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.united-gameserver.de : Could not resolve host: mirror.united-gameserver.de
warning: too many errors from mirror.united-gameserver.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.unixpeople.org : Could not resolve host: arch.unixpeople.org
warning: too many errors from arch.unixpeople.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.wrz.de : Could not resolve host: ftp.wrz.de
warning: too many errors from ftp.wrz.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.wtnet.de : Could not resolve host: mirror.wtnet.de
warning: too many errors from mirror.wtnet.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.xtom.de : Could not resolve host: mirrors.xtom.de
warning: too many errors from mirrors.xtom.de, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.mirror.zachlge.org : Could not resolve host: arch.mirror.zachlge.org
warning: too many errors from arch.mirror.zachlge.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.cc.uoc.gr : Could not resolve host: ftp.cc.uoc.gr
warning: too many errors from ftp.cc.uoc.gr, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from repo.greeklug.gr : Could not resolve host: repo.greeklug.gr
warning: too many errors from repo.greeklug.gr, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.myaegean.gr : Could not resolve host: mirrors.myaegean.gr
warning: too many errors from mirrors.myaegean.gr, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.ntua.gr : Could not resolve host: ftp.ntua.gr
warning: too many errors from ftp.ntua.gr, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.otenet.gr : Could not resolve host: ftp.otenet.gr
warning: too many errors from ftp.otenet.gr, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from asia.mirror.pkgbuild.com : Could not resolve host: asia.mirror.pkgbuild.com
warning: too many errors from asia.mirror.pkgbuild.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror-hk.koddos.net : Could not resolve host: mirror-hk.koddos.net
warning: too many errors from mirror-hk.koddos.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from hkg.mirror.rackspace.com : Could not resolve host: hkg.mirror.rackspace.com
warning: too many errors from hkg.mirror.rackspace.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch-mirror.wtako.net : Could not resolve host: arch-mirror.wtako.net
warning: too many errors from arch-mirror.wtako.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.xtom.com.hk : Could not resolve host: mirror.xtom.com.hk
warning: too many errors from mirror.xtom.com.hk, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.ek-cer.hu : Could not resolve host: ftp.ek-cer.hu
warning: too many errors from ftp.ek-cer.hu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archmirror.hbit.sztaki.hu : Could not resolve host: archmirror.hbit.sztaki.hu
warning: too many errors from archmirror.hbit.sztaki.hu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from nova.quantum-mirror.hu : Could not resolve host: nova.quantum-mirror.hu
warning: too many errors from nova.quantum-mirror.hu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from quantum-mirror.hu : Could not resolve host: quantum-mirror.hu
warning: too many errors from quantum-mirror.hu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from super.quantum-mirror.hu : Could not resolve host: super.quantum-mirror.hu
warning: too many errors from super.quantum-mirror.hu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.system.is : Could not resolve host: mirror.system.is
warning: too many errors from mirror.system.is, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archmirror.akhl.in : Could not resolve host: archmirror.akhl.in
warning: too many errors from archmirror.akhl.in, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.cse.iitk.ac.in : Could not resolve host: mirror.cse.iitk.ac.in
warning: too many errors from mirror.cse.iitk.ac.in, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.mirror.net.in : Could not resolve host: archlinux.mirror.net.in
warning: too many errors from archlinux.mirror.net.in, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.piconets.webwerks.in : Could not resolve host: mirrors.piconets.webwerks.in
warning: too many errors from mirrors.piconets.webwerks.in, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.cloudweeb.com : Could not resolve host: mirror.cloudweeb.com
warning: too many errors from mirror.cloudweeb.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.faizuladib.com : Could not resolve host: mirror.faizuladib.com
warning: too many errors from mirror.faizuladib.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.gi.co.id : Could not resolve host: mirror.gi.co.id
warning: too many errors from mirror.gi.co.id, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from vpsmurah.jagoanhosting.com : Could not resolve host: vpsmurah.jagoanhosting.com
warning: too many errors from vpsmurah.jagoanhosting.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.labkom.id : Could not resolve host: mirror.labkom.id
warning: too many errors from mirror.labkom.id, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.papua.go.id : Could not resolve host: mirror.papua.go.id
warning: too many errors from mirror.papua.go.id, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.poliwangi.ac.id : Could not resolve host: mirror.poliwangi.ac.id
warning: too many errors from mirror.poliwangi.ac.id, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.repository.id : Could not resolve host: mirror.repository.id
warning: too many errors from mirror.repository.id, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from suro.ubaya.ac.id : Could not resolve host: suro.ubaya.ac.id
warning: too many errors from suro.ubaya.ac.id, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.telkomuniversity.ac.id : Could not resolve host: mirror.telkomuniversity.ac.id
warning: too many errors from mirror.telkomuniversity.ac.id, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.arvancloud.com : Could not resolve host: mirror.arvancloud.com
warning: too many errors from mirror.arvancloud.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.bardia.tech : Could not resolve host: mirror.bardia.tech
warning: too many errors from mirror.bardia.tech, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.hostiran.ir : Could not resolve host: mirror.hostiran.ir
warning: too many errors from mirror.hostiran.ir, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from repo.iut.ac.ir : Could not resolve host: repo.iut.ac.ir
warning: too many errors from repo.iut.ac.ir, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.nak-mci.ir : Could not resolve host: mirror.nak-mci.ir
warning: too many errors from mirror.nak-mci.ir, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.rasanegar.com : Could not resolve host: mirror.rasanegar.com
warning: too many errors from mirror.rasanegar.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.heanet.ie : Could not resolve host: ftp.heanet.ie
warning: too many errors from ftp.heanet.ie, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.isoc.org.il : Could not resolve host: mirror.isoc.org.il
warning: too many errors from mirror.isoc.org.il, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.mivzakim.net : Could not resolve host: archlinux.mivzakim.net
warning: too many errors from archlinux.mivzakim.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archmirror.it : Could not resolve host: archmirror.it
warning: too many errors from archmirror.it, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.mirror.garr.it : Could not resolve host: archlinux.mirror.garr.it
warning: too many errors from archlinux.mirror.garr.it, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.prometeus.net : Could not resolve host: mirrors.prometeus.net
warning: too many errors from mirrors.prometeus.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.mirror.server24.net : Could not resolve host: archlinux.mirror.server24.net
warning: too many errors from archlinux.mirror.server24.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.cat.net : Could not resolve host: mirrors.cat.net
warning: too many errors from mirrors.cat.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.tsukuba.wide.ad.jp : Could not resolve host: ftp.tsukuba.wide.ad.jp
warning: too many errors from ftp.tsukuba.wide.ad.jp, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.jaist.ac.jp : Could not resolve host: ftp.jaist.ac.jp
warning: too many errors from ftp.jaist.ac.jp, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.hoster.kz : Could not resolve host: mirror.hoster.kz
warning: too many errors from mirror.hoster.kz, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.ps.kz : Could not resolve host: mirror.ps.kz
warning: too many errors from mirror.ps.kz, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.mirror.liquidtelecom.com : Could not resolve host: archlinux.mirror.liquidtelecom.com
warning: too many errors from archlinux.mirror.liquidtelecom.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.koyanet.lv : Could not resolve host: archlinux.koyanet.lv
warning: too many errors from archlinux.koyanet.lv, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.atviras.lt : Could not resolve host: mirrors.atviras.lt
warning: too many errors from mirrors.atviras.lt, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.ims.nksc.lt : Could not resolve host: mirrors.ims.nksc.lt
warning: too many errors from mirrors.ims.nksc.lt, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.mirror.root.lu : Could not resolve host: archlinux.mirror.root.lu
warning: too many errors from archlinux.mirror.root.lu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.jsc.mx : Could not resolve host: arch.jsc.mx
warning: too many errors from arch.jsc.mx, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.ihost.md : Could not resolve host: mirror.ihost.md
warning: too many errors from mirror.ihost.md, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.qontinuum.space : Could not resolve host: archlinux.qontinuum.space
warning: too many errors from archlinux.qontinuum.space, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.qontinuum.space:4443 : Could not resolve host: archlinux.qontinuum.space
warning: too many errors from archlinux.qontinuum.space:4443, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.cj2.nl : Could not resolve host: mirror.cj2.nl
warning: too many errors from mirror.cj2.nl, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.daan.vodka : Could not resolve host: mirrors.daan.vodka
warning: too many errors from mirrors.daan.vodka, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.i3d.net : Could not resolve host: mirror.i3d.net
warning: too many errors from mirror.i3d.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.jeweet.net : Could not resolve host: arch.jeweet.net
warning: too many errors from arch.jeweet.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.koddos.net : Could not resolve host: mirror.koddos.net
warning: too many errors from mirror.koddos.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.mirrors.lavatech.top : Could not resolve host: arch.mirrors.lavatech.top
warning: too many errors from arch.mirrors.lavatech.top, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.ams1.nl.leaseweb.net : Could not resolve host: mirror.ams1.nl.leaseweb.net
warning: too many errors from mirror.ams1.nl.leaseweb.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.mirror.liteserver.nl : Could not resolve host: archlinux.mirror.liteserver.nl
warning: too many errors from archlinux.mirror.liteserver.nl, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.lyrahosting.com : Could not resolve host: mirror.lyrahosting.com
warning: too many errors from mirror.lyrahosting.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.mijn.host : Could not resolve host: mirror.mijn.host
warning: too many errors from mirror.mijn.host, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.neostrada.nl : Could not resolve host: mirror.neostrada.nl
warning: too many errors from mirror.neostrada.nl, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.nluug.nl : Could not resolve host: ftp.nluug.nl
warning: too many errors from ftp.nluug.nl, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.mirror.pcextreme.nl : Could not resolve host: archlinux.mirror.pcextreme.nl
warning: too many errors from archlinux.mirror.pcextreme.nl, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.serverion.com : Could not resolve host: mirror.serverion.com
warning: too many errors from mirror.serverion.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.snt.utwente.nl : Could not resolve host: ftp.snt.utwente.nl
warning: too many errors from ftp.snt.utwente.nl, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.tarellia.net : Could not resolve host: mirror.tarellia.net
warning: too many errors from mirror.tarellia.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.viflcraft.top : Could not resolve host: mirrors.viflcraft.top
warning: too many errors from mirrors.viflcraft.top, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.mirror.wearetriple.com : Could not resolve host: archlinux.mirror.wearetriple.com
warning: too many errors from archlinux.mirror.wearetriple.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror-archlinux.webruimtehosting.nl : Could not resolve host: mirror-archlinux.webruimtehosting.nl
warning: too many errors from mirror-archlinux.webruimtehosting.nl, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.xtom.nl : Could not resolve host: mirrors.xtom.nl
warning: too many errors from mirrors.xtom.nl, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.lagoon.nc : Could not resolve host: mirror.lagoon.nc
warning: too many errors from mirror.lagoon.nc, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.nautile.nc : Could not resolve host: archlinux.nautile.nc
warning: too many errors from archlinux.nautile.nc, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.2degrees.nz : Could not resolve host: mirror.2degrees.nz
warning: too many errors from mirror.2degrees.nz, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.fsmg.org.nz : Could not resolve host: mirror.fsmg.org.nz
warning: too many errors from mirror.fsmg.org.nz, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.ourhome.kiwi : Could not resolve host: archlinux.ourhome.kiwi
warning: too many errors from archlinux.ourhome.kiwi, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.smith.geek.nz : Could not resolve host: mirror.smith.geek.nz
warning: too many errors from mirror.smith.geek.nz, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.softver.org.mk : Could not resolve host: arch.softver.org.mk
warning: too many errors from arch.softver.org.mk, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.onevip.mk : Could not resolve host: mirror.onevip.mk
warning: too many errors from mirror.onevip.mk, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.t-home.mk : Could not resolve host: mirror.t-home.mk
warning: too many errors from mirror.t-home.mk, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.archlinux.no : Could not resolve host: mirror.archlinux.no
warning: too many errors from mirror.archlinux.no, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.uib.no : Could not resolve host: archlinux.uib.no
warning: too many errors from archlinux.uib.no, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from lysakermoen.com : Could not resolve host: lysakermoen.com
warning: too many errors from lysakermoen.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.neuf.no : Could not resolve host: mirror.neuf.no
warning: too many errors from mirror.neuf.no, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.terrahost.no : Could not resolve host: mirror.terrahost.no
warning: too many errors from mirror.terrahost.no, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from repo.inara.pk : Could not resolve host: repo.inara.pk
warning: too many errors from repo.inara.pk, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.mirror.py : Could not resolve host: archlinux.mirror.py
warning: too many errors from archlinux.mirror.py, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.eloteam.tk : Could not resolve host: mirror.eloteam.tk
warning: too many errors from mirror.eloteam.tk, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.icm.edu.pl : Could not resolve host: ftp.icm.edu.pl
warning: too many errors from ftp.icm.edu.pl, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.juniorjpdj.pl : Could not resolve host: mirror.juniorjpdj.pl
warning: too many errors from mirror.juniorjpdj.pl, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.midov.pl : Could not resolve host: arch.midov.pl
warning: too many errors from arch.midov.pl, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.onet.pl : Could not resolve host: mirror.onet.pl
warning: too many errors from mirror.onet.pl, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from piotrkosoft.net : Could not resolve host: piotrkosoft.net
warning: too many errors from piotrkosoft.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.psnc.pl : Could not resolve host: ftp.psnc.pl
warning: too many errors from ftp.psnc.pl, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.sfinae.tech : Could not resolve host: mirror.sfinae.tech
warning: too many errors from mirror.sfinae.tech, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from repo.skni.umcs.pl : Could not resolve host: repo.skni.umcs.pl
warning: too many errors from repo.skni.umcs.pl, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.vectranet.pl : Could not resolve host: ftp.vectranet.pl
warning: too many errors from ftp.vectranet.pl, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from glua.ua.pt : Could not resolve host: glua.ua.pt
warning: too many errors from glua.ua.pt, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.rnl.tecnico.ulisboa.pt : Could not resolve host: ftp.rnl.tecnico.ulisboa.pt
warning: too many errors from ftp.rnl.tecnico.ulisboa.pt, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.up.pt : Could not resolve host: mirrors.up.pt
warning: too many errors from mirrors.up.pt, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.chroot.ro : Could not resolve host: mirrors.chroot.ro
warning: too many errors from mirrors.chroot.ro, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.efect.ro : Could not resolve host: mirror.efect.ro
warning: too many errors from mirror.efect.ro, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.flokinet.net : Could not resolve host: mirror.flokinet.net
warning: too many errors from mirror.flokinet.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.go.ro : Could not resolve host: mirrors.go.ro
warning: too many errors from mirrors.go.ro, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.hostico.ro : Could not resolve host: mirrors.hostico.ro
warning: too many errors from mirrors.hostico.ro, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.mirrors.linux.ro : Could not resolve host: archlinux.mirrors.linux.ro
warning: too many errors from archlinux.mirrors.linux.ro, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.m247.ro : Could not resolve host: mirrors.m247.ro
warning: too many errors from mirrors.m247.ro, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.nav.ro : Could not resolve host: mirrors.nav.ro
warning: too many errors from mirrors.nav.ro, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.nxthost.com : Could not resolve host: mirrors.nxthost.com
warning: too many errors from mirrors.nxthost.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.pidginhost.com : Could not resolve host: mirrors.pidginhost.com
warning: too many errors from mirrors.pidginhost.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.surf : Could not resolve host: mirror.surf
warning: too many errors from mirror.surf, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.nw-sys.ru : Could not resolve host: mirror.nw-sys.ru
warning: too many errors from mirror.nw-sys.ru, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.powernet.com.ru : Could not resolve host: mirrors.powernet.com.ru
warning: too many errors from mirrors.powernet.com.ru, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.rol.ru : Could not resolve host: mirror.rol.ru
warning: too many errors from mirror.rol.ru, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.truenetwork.ru : Could not resolve host: mirror.truenetwork.ru
warning: too many errors from mirror.truenetwork.ru, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.yandex.ru : Could not resolve host: mirror.yandex.ru
warning: too many errors from mirror.yandex.ru, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.zepto.cloud : Could not resolve host: archlinux.zepto.cloud
warning: too many errors from archlinux.zepto.cloud, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.mithril.re : Could not resolve host: arch.mithril.re
warning: too many errors from arch.mithril.re, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.petarmaric.com : Could not resolve host: arch.petarmaric.com
warning: too many errors from arch.petarmaric.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.pmf.kg.ac.rs : Could not resolve host: mirror.pmf.kg.ac.rs
warning: too many errors from mirror.pmf.kg.ac.rs, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.0x.sg : Could not resolve host: mirror.0x.sg
warning: too many errors from mirror.0x.sg, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.aktkn.sg : Could not resolve host: mirror.aktkn.sg
warning: too many errors from mirror.aktkn.sg, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from download.nus.edu.sg : Could not resolve host: download.nus.edu.sg
warning: too many errors from download.nus.edu.sg, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.guillaumea.fr : Could not resolve host: mirror.guillaumea.fr
warning: too many errors from mirror.guillaumea.fr, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.jingk.ai : Could not resolve host: mirror.jingk.ai
warning: too many errors from mirror.jingk.ai, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ossmirror.mycloud.services : Could not resolve host: ossmirror.mycloud.services
warning: too many errors from ossmirror.mycloud.services, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.sg.gs : Could not resolve host: mirror.sg.gs
warning: too many errors from mirror.sg.gs, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.lnx.sk : Could not resolve host: mirror.lnx.sk
warning: too many errors from mirror.lnx.sk, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from tux.rainside.sk : Could not resolve host: tux.rainside.sk
warning: too many errors from tux.rainside.sk, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archimonde.ts.si : Could not resolve host: archimonde.ts.si
warning: too many errors from archimonde.ts.si, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.za.mirror.allworldit.com : Could not resolve host: archlinux.za.mirror.allworldit.com
warning: too many errors from archlinux.za.mirror.allworldit.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from za.mirror.archlinux-br.org : Could not resolve host: za.mirror.archlinux-br.org
warning: too many errors from za.mirror.archlinux-br.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.is.co.za : Could not resolve host: mirror.is.co.za
warning: too many errors from mirror.is.co.za, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from opnmirror.co.za : Could not resolve host: opnmirror.co.za
warning: too many errors from opnmirror.co.za, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.urbanwave.co.za : Could not resolve host: mirrors.urbanwave.co.za
warning: too many errors from mirrors.urbanwave.co.za, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.anigil.com : Could not resolve host: mirror.anigil.com
warning: too many errors from mirror.anigil.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.funami.tech : Could not resolve host: mirror.funami.tech
warning: too many errors from mirror.funami.tech, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.harukasan.org : Could not resolve host: ftp.harukasan.org
warning: too many errors from ftp.harukasan.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.lanet.kr : Could not resolve host: ftp.lanet.kr
warning: too many errors from ftp.lanet.kr, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.premi.st : Could not resolve host: mirror.premi.st
warning: too many errors from mirror.premi.st, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.cloroformo.org : Could not resolve host: mirror.cloroformo.org
warning: too many errors from mirror.cloroformo.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.librelabucm.org : Could not resolve host: mirror.librelabucm.org
warning: too many errors from mirror.librelabucm.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.rediris.es : Could not resolve host: ftp.rediris.es
warning: too many errors from ftp.rediris.es, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.acc.umu.se : Could not resolve host: ftp.acc.umu.se
warning: too many errors from ftp.acc.umu.se, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftpmirror.infania.net : Could not resolve host: ftpmirror.infania.net
warning: too many errors from ftpmirror.infania.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.ludd.ltu.se : Could not resolve host: ftp.ludd.ltu.se
warning: too many errors from ftp.ludd.ltu.se, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.lysator.liu.se : Could not resolve host: ftp.lysator.liu.se
warning: too many errors from ftp.lysator.liu.se, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.myrveln.se : Could not resolve host: ftp.myrveln.se
warning: too many errors from ftp.myrveln.se, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.osbeck.com : Could not resolve host: mirror.osbeck.com
warning: too many errors from mirror.osbeck.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from tedwall.se : Could not resolve host: tedwall.se
warning: too many errors from tedwall.se, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from pkg.adfinis.com : Could not resolve host: pkg.adfinis.com
warning: too many errors from pkg.adfinis.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.init7.net : Could not resolve host: mirror.init7.net
warning: too many errors from mirror.init7.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.puzzle.ch : Could not resolve host: mirror.puzzle.ch
warning: too many errors from mirror.puzzle.ch, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from theswissbay.ch : Could not resolve host: theswissbay.ch
warning: too many errors from theswissbay.ch, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.ungleich.ch : Could not resolve host: mirror.ungleich.ch
warning: too many errors from mirror.ungleich.ch, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.archlinux.tw : Could not resolve host: mirror.archlinux.tw
warning: too many errors from mirror.archlinux.tw, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.ccns.ncku.edu.tw : Could not resolve host: archlinux.ccns.ncku.edu.tw
warning: too many errors from archlinux.ccns.ncku.edu.tw, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from free.nchc.org.tw : Could not resolve host: free.nchc.org.tw
warning: too many errors from free.nchc.org.tw, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.cs.nctu.edu.tw : Could not resolve host: archlinux.cs.nctu.edu.tw
warning: too many errors from archlinux.cs.nctu.edu.tw, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from shadow.ind.ntou.edu.tw : Could not resolve host: shadow.ind.ntou.edu.tw
warning: too many errors from shadow.ind.ntou.edu.tw, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.tku.edu.tw : Could not resolve host: ftp.tku.edu.tw
warning: too many errors from ftp.tku.edu.tw, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.yzu.edu.tw : Could not resolve host: ftp.yzu.edu.tw
warning: too many errors from ftp.yzu.edu.tw, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.cyberbits.asia : Could not resolve host: mirror.cyberbits.asia
warning: too many errors from mirror.cyberbits.asia, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.kku.ac.th : Could not resolve host: mirror.kku.ac.th
warning: too many errors from mirror.kku.ac.th, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror2.totbb.net : Could not resolve host: mirror2.totbb.net
warning: too many errors from mirror2.totbb.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.linux.org.tr : Could not resolve host: ftp.linux.org.tr
warning: too many errors from ftp.linux.org.tr, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.veriteknik.net.tr : Could not resolve host: mirror.veriteknik.net.tr
warning: too many errors from mirror.veriteknik.net.tr, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.astra.in.ua : Could not resolve host: archlinux.astra.in.ua
warning: too many errors from archlinux.astra.in.ua, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from repo.endpoint.ml : Could not resolve host: repo.endpoint.ml
warning: too many errors from repo.endpoint.ml, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.ip-connect.vn.ua : Could not resolve host: archlinux.ip-connect.vn.ua
warning: too many errors from archlinux.ip-connect.vn.ua, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.mirohost.net : Could not resolve host: mirror.mirohost.net
warning: too many errors from mirror.mirohost.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.nix.org.ua : Could not resolve host: mirrors.nix.org.ua
warning: too many errors from mirrors.nix.org.ua, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archlinux.uk.mirror.allworldit.com : Could not resolve host: archlinux.uk.mirror.allworldit.com
warning: too many errors from archlinux.uk.mirror.allworldit.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.bytemark.co.uk : Could not resolve host: mirror.bytemark.co.uk
warning: too many errors from mirror.bytemark.co.uk, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.gethosted.online : Could not resolve host: mirrors.gethosted.online
warning: too many errors from mirrors.gethosted.online, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.manchester.m247.com : Could not resolve host: mirrors.manchester.m247.com
warning: too many errors from mirrors.manchester.m247.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.melbourne.co.uk : Could not resolve host: mirrors.melbourne.co.uk
warning: too many errors from mirrors.melbourne.co.uk, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from www.mirrorservice.org : Could not resolve host: www.mirrorservice.org
warning: too many errors from www.mirrorservice.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.netweaver.uk : Could not resolve host: mirror.netweaver.uk
warning: too many errors from mirror.netweaver.uk, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from lon.mirror.rackspace.com : Could not resolve host: lon.mirror.rackspace.com
warning: too many errors from lon.mirror.rackspace.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.serverspace.co.uk : Could not resolve host: arch.serverspace.co.uk
warning: too many errors from arch.serverspace.co.uk, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.ukfast.co.uk : Could not resolve host: mirrors.ukfast.co.uk
warning: too many errors from mirrors.ukfast.co.uk, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.cov.ukservers.com : Could not resolve host: mirror.cov.ukservers.com
warning: too many errors from mirror.cov.ukservers.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.acm.wpi.edu : Could not resolve host: mirrors.acm.wpi.edu
warning: too many errors from mirrors.acm.wpi.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.advancedhosters.com : Could not resolve host: mirrors.advancedhosters.com
warning: too many errors from mirrors.advancedhosters.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.aggregate.org : Could not resolve host: mirrors.aggregate.org
warning: too many errors from mirrors.aggregate.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from america.mirror.pkgbuild.com : Could not resolve host: america.mirror.pkgbuild.com
warning: too many errors from america.mirror.pkgbuild.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ca.us.mirror.archlinux-br.org : Could not resolve host: ca.us.mirror.archlinux-br.org
warning: too many errors from ca.us.mirror.archlinux-br.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from il.us.mirror.archlinux-br.org : Could not resolve host: il.us.mirror.archlinux-br.org
warning: too many errors from il.us.mirror.archlinux-br.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.arizona.edu : Could not resolve host: mirror.arizona.edu
warning: too many errors from mirror.arizona.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arlm.tyzoid.com : Could not resolve host: arlm.tyzoid.com
warning: too many errors from arlm.tyzoid.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.ava.dev : Could not resolve host: mirror.ava.dev
warning: too many errors from mirror.ava.dev, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.cat.pdx.edu : Could not resolve host: mirrors.cat.pdx.edu
warning: too many errors from mirrors.cat.pdx.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.cc.columbia.edu : Could not resolve host: mirror.cc.columbia.edu
warning: too many errors from mirror.cc.columbia.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.clarkson.edu : Could not resolve host: mirror.clarkson.edu
warning: too many errors from mirror.clarkson.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.mirror.constant.com : Could not resolve host: arch.mirror.constant.com
warning: too many errors from arch.mirror.constant.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.cs.pitt.edu : Could not resolve host: mirror.cs.pitt.edu
warning: too many errors from mirror.cs.pitt.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.cs.vt.edu : Could not resolve host: mirror.cs.vt.edu
warning: too many errors from mirror.cs.vt.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.cybersecurity.nmt.edu : Could not resolve host: mirror.cybersecurity.nmt.edu
warning: too many errors from mirror.cybersecurity.nmt.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from distro.ibiblio.org : Could not resolve host: distro.ibiblio.org
warning: too many errors from distro.ibiblio.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.es.its.nyu.edu : Could not resolve host: mirror.es.its.nyu.edu
warning: too many errors from mirror.es.its.nyu.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.ette.biz : Could not resolve host: mirror.ette.biz
warning: too many errors from mirror.ette.biz, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.gigenet.com : Could not resolve host: mirrors.gigenet.com
warning: too many errors from mirrors.gigenet.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from www.gtlib.gatech.edu : Could not resolve host: www.gtlib.gatech.edu
warning: too many errors from www.gtlib.gatech.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.hackingand.coffee : Could not resolve host: mirror.hackingand.coffee
warning: too many errors from mirror.hackingand.coffee, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.hodgepodge.dev : Could not resolve host: mirror.hodgepodge.dev
warning: too many errors from mirror.hodgepodge.dev, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.hostup.org : Could not resolve host: mirror.hostup.org
warning: too many errors from mirror.hostup.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.hu.fo : Could not resolve host: arch.hu.fo
warning: too many errors from arch.hu.fo, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from repo.ialab.dsu.edu : Could not resolve host: repo.ialab.dsu.edu
warning: too many errors from repo.ialab.dsu.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.kernel.org : Could not resolve host: mirrors.kernel.org
warning: too many errors from mirrors.kernel.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.dal10.us.leaseweb.net : Could not resolve host: mirror.dal10.us.leaseweb.net
warning: too many errors from mirror.dal10.us.leaseweb.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.mia11.us.leaseweb.net : Could not resolve host: mirror.mia11.us.leaseweb.net
warning: too many errors from mirror.mia11.us.leaseweb.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.sfo12.us.leaseweb.net : Could not resolve host: mirror.sfo12.us.leaseweb.net
warning: too many errors from mirror.sfo12.us.leaseweb.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.wdc1.us.leaseweb.net : Could not resolve host: mirror.wdc1.us.leaseweb.net
warning: too many errors from mirror.wdc1.us.leaseweb.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.liquidweb.com : Could not resolve host: mirrors.liquidweb.com
warning: too many errors from mirrors.liquidweb.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.lty.me : Could not resolve host: mirror.lty.me
warning: too many errors from mirror.lty.me, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.lug.mtu.edu : Could not resolve host: mirrors.lug.mtu.edu
warning: too many errors from mirrors.lug.mtu.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.math.princeton.edu : Could not resolve host: mirror.math.princeton.edu
warning: too many errors from mirror.math.princeton.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.metrocast.net : Could not resolve host: mirror.metrocast.net
warning: too many errors from mirror.metrocast.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.kaminski.io : Could not resolve host: mirror.kaminski.io
warning: too many errors from mirror.kaminski.io, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from iad.mirrors.misaka.one : Could not resolve host: iad.mirrors.misaka.one
warning: too many errors from iad.mirrors.misaka.one, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from repo.miserver.it.umich.edu : Could not resolve host: repo.miserver.it.umich.edu
warning: too many errors from repo.miserver.it.umich.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.mit.edu : Could not resolve host: mirrors.mit.edu
warning: too many errors from mirrors.mit.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.ocf.berkeley.edu : Could not resolve host: mirrors.ocf.berkeley.edu
warning: too many errors from mirrors.ocf.berkeley.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from archmirror1.octyl.net : Could not resolve host: archmirror1.octyl.net
warning: too many errors from archmirror1.octyl.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.osuosl.org : Could not resolve host: ftp.osuosl.org
warning: too many errors from ftp.osuosl.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.mirrors.pair.com : Could not resolve host: arch.mirrors.pair.com
warning: too many errors from arch.mirrors.pair.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from dfw.mirror.rackspace.com : Could not resolve host: dfw.mirror.rackspace.com
warning: too many errors from dfw.mirror.rackspace.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from iad.mirror.rackspace.com : Could not resolve host: iad.mirror.rackspace.com
warning: too many errors from iad.mirror.rackspace.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ord.mirror.rackspace.com : Could not resolve host: ord.mirror.rackspace.com
warning: too many errors from ord.mirror.rackspace.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.radwebhosting.com : Could not resolve host: mirrors.radwebhosting.com
warning: too many errors from mirrors.radwebhosting.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from plug-mirror.rcac.purdue.edu : Could not resolve host: plug-mirror.rcac.purdue.edu
warning: too many errors from plug-mirror.rcac.purdue.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.rit.edu : Could not resolve host: mirrors.rit.edu
warning: too many errors from mirrors.rit.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.rutgers.edu : Could not resolve host: mirrors.rutgers.edu
warning: too many errors from mirrors.rutgers.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.sandyriver.net : Could not resolve host: mirror.sandyriver.net
warning: too many errors from mirror.sandyriver.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.siena.edu : Could not resolve host: mirror.siena.edu
warning: too many errors from mirror.siena.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.sonic.net : Could not resolve host: mirrors.sonic.net
warning: too many errors from mirrors.sonic.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.phx1.us.spryservers.net : Could not resolve host: mirror.phx1.us.spryservers.net
warning: too many errors from mirror.phx1.us.spryservers.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from arch.mirror.square-r00t.net : Could not resolve host: arch.mirror.square-r00t.net
warning: too many errors from arch.mirror.square-r00t.net, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.stephen304.com : Could not resolve host: mirror.stephen304.com
warning: too many errors from mirror.stephen304.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from ftp.sudhip.com : Could not resolve host: ftp.sudhip.com
warning: too many errors from ftp.sudhip.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.pit.teraswitch.com : Could not resolve host: mirror.pit.teraswitch.com
warning: too many errors from mirror.pit.teraswitch.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.theash.xyz : Could not resolve host: mirror.theash.xyz
warning: too many errors from mirror.theash.xyz, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from tick-tack.mynetgear.com : Could not resolve host: tick-tack.mynetgear.com
warning: too many errors from tick-tack.mynetgear.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.umd.edu : Could not resolve host: mirror.umd.edu
warning: too many errors from mirror.umd.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.vtti.vt.edu : Could not resolve host: mirror.vtti.vt.edu
warning: too many errors from mirror.vtti.vt.edu, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.xmission.com : Could not resolve host: mirrors.xmission.com
warning: too many errors from mirrors.xmission.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirrors.xtom.com : Could not resolve host: mirrors.xtom.com
warning: too many errors from mirrors.xtom.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from zxcvfdsa.com : Could not resolve host: zxcvfdsa.com
warning: too many errors from zxcvfdsa.com, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from f.archlinuxvn.org : Could not resolve host: f.archlinuxvn.org
warning: too many errors from f.archlinuxvn.org, skipping for the remainder of this transaction
error: failed retrieving file 'core.db' from mirror.bizflycloud.vn : Could not resolve host: mirror.bizflycloud.vn
warning: too many errors from mirror.bizflycloud.vn, skipping for the remainder of this transaction
error: failed to synchronize all databases (invalid url for server)

Honestly, that's an issue with networking when using another network manager than systemd-networkd, if you want I would love to discuss that in the #nspawn-org channel on Libera Chat.