両方とも前のリビジョン前のリビジョン次のリビジョン | 前のリビジョン |
linux:docker [2024/02/20 22:31] – [Docker - 仮想化コンテナ] ともやん | linux:docker [2024/03/12 14:47] (現在) – [Docker - 仮想化コンテナ] ともやん |
---|
ソースコード: [[https://github.com/docker/docker-ce|GitHub - docker/docker-ce: Docker CE]]\\ | ソースコード: [[https://github.com/docker/docker-ce|GitHub - docker/docker-ce: Docker CE]]\\ |
ドキュメント: [[http://docs.docker.jp/|Docker ドキュメント日本語化プロジェクト — Docker-docs-ja 24.0 ドキュメント]]\\ | ドキュメント: [[http://docs.docker.jp/|Docker ドキュメント日本語化プロジェクト — Docker-docs-ja 24.0 ドキュメント]]\\ |
| \\ |
[[windows:docker|Docker - 仮想化コンテナ]] (Windows)\\ | [[windows:docker|Docker - 仮想化コンテナ]] (Windows)\\ |
[[linux:podman|Podman - ローカル環境からコンテナと Kubernetes をシームレスに操作]] (Docker互換の次世代コンテナエンジンに移行を推奨😉)\\ | \\ |
| [[linux:podman|Podman - ローカル環境からコンテナと Kubernetes をシームレスに操作]]\\ |
| <wrap em>※Docker互換の次世代コンテナエンジンに移行を推奨😉</wrap>\\ |
| |
===== インストール ===== | ===== インストール ===== |
<WRAP color_command><html><pre> | <WRAP color_command><html><pre> |
<font color="#FF8700"><b>$</b></font> <font color="#4E9A06">mkdir</font><font color="#FF9999"> haruo_docker </font><font color="#3465A4"><b>&&</b></font><font color="#FF9999"> </font><font color="#4E9A06">cd</font><font color="#FF9999"> haruo_docker</font> | <font color="#FF8700"><b>$</b></font> <font color="#4E9A06">mkdir</font><font color="#FF9999"> haruo_docker </font><font color="#3465A4"><b>&&</b></font><font color="#FF9999"> </font><font color="#4E9A06">cd</font><font color="#FF9999"> haruo_docker</font> |
<font color="#FF8700"><b>$</b></font> <font color="#4E9A06">nano</font><font color="#999999"> </font><font color="#999999"><u style="text-decoration-style:single">Dockerfile</u></font> | <font color="#FF8700"><b>$</b></font> <font color="#26A269">nano</font><font color="#FF9999"> </font><font color="#FF9999"><u style="text-decoration-style:single">Dockerfile</u></font> |
</pre></html></WRAP> | </pre></html></WRAP> |
<WRAP color_mincode><code docker> | <WRAP color_mincode><html><pre> |
FROM fedora:latest | FROM docker.io/amd64/fedora:39 |
ENV TZ=Asia/Tokyo | |
ENV LANG=ja_JP.UTF-8 | |
| |
RUN dnf update -y && dnf install git glibc-locale-source glibc-langpack-ja cowsay figlet toilet lolcat neofet> | RUN dnf update -y && \ |
| dnf install -y git glibc-locale-source glibc-langpack-ja figlet lolcat neofetch && \ |
| dnf clean all |
| <font color="#2AA1B3"># cowsay figlet toilet lolcat neofetch</font> |
| |
RUN localedef --force -i ja_JP -f UTF-8 ja_JP.UTF-8 | ENV LC_ALL=ja_JP.UTF-8 LANG=ja_JP.UTF-8<font color="#FF8700"> </font>LANGUAGE=ja_JP.UTF-8 TZ=Asia/Tokyo |
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | RUN localedef --force -i ja_JP -f UTF-8 ja_JP.UTF-8 && \ |
| ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \ |
| echo $TZ > /etc/timezone |
| |
| RUN git clone --depth 1 <font color="#2A7BDE">https://github.com/xero/figlet-fonts.git</font> |
ADD ./message /message | ADD ./message /message |
RUN git clone --depth 1 https://github.com/xero/figlet-fonts.git | CMD cat /message | figlet -f "Bloody" -d "/figlet-fonts" -w 120 | lolcat && \ |
CMD cat /message | figlet -f "Bloody" -d "/figlet-fonts" -w 100 | lolcat | neofetch | lolcat && \ |
</code></WRAP> | date | lolcat |
| </pre></html></WRAP> |
</WRAP> | </WRAP> |
| |
<WRAP color_term> | <WRAP color_term> |
<WRAP color_command><html><pre> | <WRAP color_command><html><pre> |
<font color="#FF8700"><b>$</b></font> <font color="#4E9A06">docker</font> b<font color="#999999">uild </font><font color="#75507B">--tag</font><font color="#999999"> haruo:0.1 </font><font color="#999999"><u style="text-decoration-style:single">.</u></font> | <font color="#FF8700"><b>$</b></font> <font color="#26A269">docker</font> b<font color="#999999">uild </font><font color="#A347BA">--tag</font><font color="#999999"> haruo_docker:0.01 </font><font color="#999999"><u style="text-decoration-style:single">.</u></font> |
</pre></html></WRAP> | </pre></html></WRAP> |
<WRAP color_result><html><pre> | <WRAP color_result><html><pre> |
[+] Building 648.0s (11/11) FINISHED docker:default | [+] Building 632.1s (10/10) FINISHED docker:default |
<font color="#3465A4"> => [internal] load build definition from Dockerfile 0.2s</font> | <font color="#13496F"> => [internal] load build definition from Dockerfile 0.4s</font> |
<font color="#3465A4"> => => transferring dockerfile: 507B 0.0s</font> | <font color="#13496F"> => => transferring dockerfile: 645B 0.0s</font> |
<font color="#3465A4"> => [internal] load metadata for docker.io/library/fedora:latest 0.0s</font> | <font color="#13496F"> => [internal] load metadata for docker.io/amd64/fedora:39 5.2s</font> |
<font color="#3465A4"> => [internal] load .dockerignore 0.2s</font> | <font color="#13496F"> => [internal] load .dockerignore 0.2s</font> |
<font color="#3465A4"> => => transferring context: 2B 0.0s</font> | <font color="#13496F"> => => transferring context: 2B 0.0s</font> |
<font color="#3465A4"> => CACHED [1/6] FROM docker.io/library/fedora:latest 0.0s</font> | <font color="#13496F"> => [1/5] FROM docker.io/amd64/fedora:39@sha256:dfb5e6183f515192b37df9356622b676461a41b724d9f92953433d 63.3s</font> |
<font color="#3465A4"> => [2/6] RUN dnf update -y && dnf install git glibc-locale-source glibc-langpack-ja cowsay figlet to 613.2s</font> | <font color="#13496F"> => => resolve docker.io/amd64/fedora:39@sha256:dfb5e6183f515192b37df9356622b676461a41b724d9f92953433dc 0.4s</font> |
<font color="#3465A4"> => [internal] load build context 0.3s</font> | <font color="#13496F"> => => sha256:dfb5e6183f515192b37df9356622b676461a41b724d9f92953433dca3e85deb1 529B / 529B 0.0s</font> |
<font color="#3465A4"> => => transferring context: 28B 0.0s</font> | <font color="#13496F"> => => sha256:8404925a71fd9f56243a4c54fe44f1192e29a19d23e7c858842ddc8b43b4ca9e 2.00kB / 2.00kB 0.0s</font> |
<font color="#3465A4"> => [3/6] RUN localedef --force -i ja_JP -f UTF-8 ja_JP.UTF-8 3.5s</font> | <font color="#13496F"> => => sha256:8237fce9fd6b5acc12e7010d84e6245c6b00937de832c1987c4769866af1573a 64.87MB / 64.87MB 57.5s</font> |
<font color="#3465A4"> => [4/6] RUN ln -snf /usr/share/zoneinfo/Asia/Tokyo /etc/localtime && echo Asia/Tokyo > /etc/timezone 2.3s</font> | <font color="#13496F"> => => extracting sha256:8237fce9fd6b5acc12e7010d84e6245c6b00937de832c1987c4769866af1573a 4.0s</font> |
<font color="#3465A4"> => [5/6] ADD ./message /message 1.3s</font> | <font color="#13496F"> => [internal] load build context 0.4s</font> |
<font color="#3465A4"> => [6/6] RUN git clone --depth 1 https://github.com/xero/figlet-fonts.git 5.0s</font> | <font color="#13496F"> => => transferring context: 28B 0.0s</font> |
<font color="#3465A4"> => exporting to image 20.9s</font> | <font color="#13496F"> => [2/5] RUN dnf update -y && dnf install -y git glibc-locale-source glibc-langpack-ja figlet lolcat 534.1s</font> |
<font color="#3465A4"> => => exporting layers 20.8s</font> | <font color="#13496F"> => [3/5] RUN localedef --force -i ja_JP -f UTF-8 ja_JP.UTF-8 && ln -snf /usr/share/zoneinfo/Asia/Tokyo 4.5s</font> |
<font color="#3465A4"> => => writing image sha256:2c60ea853ca96dad4156d35f7cc4084db3319c6f1c0bd95f3b1fe3ac658360b4 0.0s</font> | <font color="#13496F"> => [4/5] RUN git clone --depth 1 https://github.com/xero/figlet-fonts.git 6.1s</font> |
<font color="#3465A4"> => => naming to docker.io/library/haruo:0.1 0.0s</font> | <font color="#13496F"> => [5/5] ADD ./message /message 1.8s</font> |
| <font color="#13496F"> => exporting to image 14.8s</font> |
| <font color="#13496F"> => => exporting layers 14.7s</font> |
| <font color="#13496F"> => => writing image sha256:12bef4a77c1f3e3a5a6416d924293c747d3835b5de32dc67bf57572428b8d731 0.0s</font> |
| <font color="#13496F"> => => naming to docker.io/library/haruo_docker:0.01 0.0s</font> |
</pre></html></WRAP> | </pre></html></WRAP> |
</WRAP> | </WRAP> |
<WRAP color_term> | <WRAP color_term> |
<WRAP color_command><html><pre> | <WRAP color_command><html><pre> |
<font color="#FF8700"><b>$</b></font> <font color="#4E9A06">docker</font> build <font color="#75507B">--tag</font> haruo:0.1 <font color="#75507B">--no-cache</font> <u style="text-decoration-style:single">.</u> | <font color="#FF8700"><b>$</b></font> <font color="#26A269">docker</font> build <font color="#A347BA">--tag</font> haruo_docker:0.01 <font color="#A347BA">--no-cache</font> <u style="text-decoration-style:single">.</u> |
</pre></html></WRAP> | </pre></html></WRAP> |
</WRAP> | </WRAP> |
<WRAP color_term> | <WRAP color_term> |
<WRAP color_command><html><pre> | <WRAP color_command><html><pre> |
<font color="#FF8700"><b>$</b></font> <font color="#4E9A06">docker</font> build <font color="#75507B">--tag</font> haruo:0.1 <font color="#75507B">--no-cache</font> <font color="#75507B">--progress</font> plain <u style="text-decoration-style:single">.</u> | <font color="#FF8700"><b>$</b></font> <font color="#26A269">docker</font> build <font color="#A347BA">--tag</font> haruo_docker:0.01 <font color="#A347BA">--no-cache</font> <font color="#A347BA">--progress</font> plain <u style="text-decoration-style:single">.</u> |
</pre></html></WRAP> | </pre></html></WRAP> |
<WRAP color_result_hlong><html><pre> | <WRAP color_result_hlong><html><pre> |
| |
#1 [internal] load build definition from Dockerfile | #1 [internal] load build definition from Dockerfile |
#1 transferring dockerfile: 507B done | #1 transferring dockerfile: 645B done |
#1 DONE 0.2s | #1 DONE 0.3s |
| |
#2 [internal] load metadata for docker.io/library/fedora:latest | #2 [internal] load metadata for docker.io/amd64/fedora:39 |
#2 DONE 0.0s | #2 DONE 2.9s |
| |
#3 [internal] load .dockerignore | #3 [internal] load .dockerignore |
#3 transferring context: | |
#3 transferring context: 2B done | #3 transferring context: 2B done |
#3 DONE 0.2s | #3 DONE 0.2s |
| |
#4 [1/6] FROM docker.io/library/fedora:latest | #4 [1/5] FROM docker.io/amd64/fedora:39@sha256:dfb5e6183f515192b37df9356622b676461a41b724d9f92953433dca3e85deb1 |
#4 CACHED | #4 CACHED |
| |
#5 [internal] load build context | #5 [internal] load build context |
#5 transferring context: 28B done | #5 transferring context: 28B done |
#5 DONE 0.4s | #5 DONE 0.3s |
| |
#6 [2/6] RUN dnf update -y && dnf install git glibc-locale-source glibc-langpack-ja cowsay figlet toilet lolcat neofetch -y | |
#6 1.178 Failed to set locale, defaulting to C.UTF-8 | |
#6 42.02 Fedora 38 - x86_64 2.0 MB/s | 83 MB 00:40 | |
#6 134.4 Fedora 38 openh264 (From Cisco) - x86_64 0.0 B/s | 0 B 01:02 | |
#6 134.4 Errors during downloading metadata for repository 'fedora-cisco-openh264': | |
#6 134.4 - Curl error (28): Timeout was reached for https://codecs.fedoraproject.org/openh264/38/x86_64/os/repodata/32ab2e7e9bd848401485ba227c6a4c2c9f80e60635b765073db4dea168755926-filelists.xml.gz [SSL connection timeout] | |
#6 134.4 - Curl error (28): Timeout was reached for https://codecs.fedoraproject.org/openh264/38/x86_64/os/repodata/7dfb5bff6d7759e6428fb90448f615fdb922afa2f0ff4b9a81f63a8adc68a992-primary.xml.gz [SSL connection timeout] | |
#6 134.4 - Curl error (28): Timeout was reached for https://codecs.fedoraproject.org/openh264/38/x86_64/os/repodata/3d50825fb25440abc9579f078205d6ba3590b1d146187af8179eb43214c8b40e-comps-Temporary.x86_64.xml.gz [SSL connection timeout] | |
#6 134.4 Error: Failed to download metadata for repo 'fedora-cisco-openh264': Yum repo downloading error: Downloading error(s): repodata/7dfb5bff6d7759e6428fb90448f615fdb922afa2f0ff4b9a81f63a8adc68a992-primary.xml.gz - Cannot download, all mirrors were already tried without success; repodata/32ab2e7e9bd848401485ba227c6a4c2c9f80e60635b765073db4dea168755926-filelists.xml.gz - Cannot download, all mirrors were already tried without success; repodata/3d50825fb25440abc9579f078205d6ba3590b1d146187af8179eb43214c8b40e-comps-Temporary.x86_64.xml.gz - Cannot download, all mirrors were already tried without success | |
#6 136.5 Fedora Modular 38 - x86_64 1.3 MB/s | 2.8 MB 00:02 | |
#6 151.7 Fedora 38 - x86_64 - Updates 2.8 MB/s | 39 MB 00:13 | |
#6 169.0 Fedora Modular 38 - x86_64 - Updates 1.1 MB/s | 2.1 MB 00:02 | |
#6 170.5 Ignoring repositories: fedora-cisco-openh264 | |
#6 170.5 Last metadata expiration check: 0:00:01 ago on Fri Feb 9 09:05:54 2024. | |
#6 175.7 Dependencies resolved. | |
#6 175.7 ================================================================================ | |
#6 175.7 Package Arch Version Repo Size | |
#6 175.7 ================================================================================ | |
#6 175.7 Upgrading: | |
#6 175.7 alternatives x86_64 1.26-1.fc38 updates 39 k | |
#6 175.7 audit-libs x86_64 3.1.2-6.fc38 updates 117 k | |
#6 175.7 authselect x86_64 1.4.3-1.fc38 updates 149 k | |
#6 175.7 authselect-libs x86_64 1.4.3-1.fc38 updates 249 k | |
#6 175.7 bash x86_64 5.2.26-1.fc38 updates 1.8 M | |
#6 175.7 ca-certificates noarch 2023.2.60_v7.0.306-1.0.fc38 updates 837 k | |
#6 175.7 curl x86_64 8.0.1-6.fc38 updates 348 k | |
#6 175.7 dnf noarch 4.18.2-1.fc38 updates 508 k | |
#6 175.7 dnf-data noarch 4.18.2-1.fc38 updates 39 k | |
#6 175.7 elfutils-default-yama-scope noarch 0.190-2.fc38 updates 12 k | |
#6 175.7 elfutils-libelf x86_64 0.190-2.fc38 updates 194 k | |
#6 175.7 elfutils-libs x86_64 0.190-2.fc38 updates 259 k | |
#6 175.7 glib2 x86_64 2.76.6-1.fc38 updates 2.8 M | |
#6 175.7 glibc x86_64 2.37-18.fc38 updates 2.1 M | |
#6 175.7 glibc-common x86_64 2.37-18.fc38 updates 320 k | |
#6 175.7 glibc-minimal-langpack x86_64 2.37-18.fc38 updates 41 k | |
#6 175.7 gnutls x86_64 3.8.2-2.fc38 updates 1.1 M | |
#6 175.7 libacl x86_64 2.3.1-7.fc38 updates 23 k | |
#6 175.7 libcap x86_64 2.48-8.fc38 updates 68 k | |
#6 175.7 libcomps x86_64 0.1.20-1.fc38 updates 77 k | |
#6 175.7 libcurl x86_64 8.0.1-6.fc38 updates 312 k | |
#6 175.7 libdnf x86_64 0.72.0-1.fc38 updates 680 k | |
#6 175.7 libgcc x86_64 13.2.1-4.fc38 updates 111 k | |
#6 175.7 libgomp x86_64 13.2.1-4.fc38 updates 320 k | |
#6 175.7 libnghttp2 x86_64 1.52.0-2.fc38 updates 75 k | |
#6 175.7 librepo x86_64 1.17.0-1.fc38 updates 96 k | |
#6 175.7 libsolv x86_64 0.7.27-1.fc38 updates 426 k | |
#6 175.7 libssh x86_64 0.10.6-2.fc38 updates 212 k | |
#6 175.7 libssh-config noarch 0.10.6-2.fc38 updates 9.0 k | |
#6 175.7 libstdc++ x86_64 13.2.1-4.fc38 updates 865 k | |
#6 175.7 libtirpc x86_64 1.3.4-0.rc2.fc38 updates 94 k | |
#6 175.7 ncurses-base noarch 6.4-7.20230520.fc38 updates 88 k | |
#6 175.7 ncurses-libs x86_64 6.4-7.20230520.fc38 updates 336 k | |
#6 175.7 openldap x86_64 2.6.6-1.fc38 updates 254 k | |
#6 175.7 p11-kit x86_64 0.25.3-1.fc38 updates 521 k | |
#6 175.7 p11-kit-trust x86_64 0.25.3-1.fc38 updates 142 k | |
#6 175.7 publicsuffix-list-dafsa noarch 20240107-1.fc38 updates 58 k | |
#6 175.7 python3 x86_64 3.11.7-2.fc38 updates 28 k | |
#6 175.7 python3-dnf noarch 4.18.2-1.fc38 updates 605 k | |
#6 175.7 python3-hawkey x86_64 0.72.0-1.fc38 updates 107 k | |
#6 175.7 python3-libcomps x86_64 0.1.20-1.fc38 updates 47 k | |
#6 175.7 python3-libdnf x86_64 0.72.0-1.fc38 updates 859 k | |
#6 175.7 python3-libs x86_64 3.11.7-2.fc38 updates 9.6 M | |
#6 175.7 python3-rpm x86_64 4.18.2-1.fc38 updates 70 k | |
#6 175.7 readline x86_64 8.2-4.fc38 updates 212 k | |
#6 175.7 rpm x86_64 4.18.2-1.fc38 updates 567 k | |
#6 175.7 rpm-build-libs x86_64 4.18.2-1.fc38 updates 93 k | |
#6 175.7 rpm-libs x86_64 4.18.2-1.fc38 updates 310 k | |
#6 175.7 rpm-sequoia x86_64 1.5.0-2.fc38 updates 883 k | |
#6 175.7 rpm-sign-libs x86_64 4.18.2-1.fc38 updates 24 k | |
#6 175.7 systemd-libs x86_64 253.15-2.fc38 updates 650 k | |
#6 175.7 tzdata noarch 2023d-1.fc38 updates 717 k | |
#6 175.7 vim-data noarch 2:9.1.031-1.fc38 updates 23 k | |
#6 175.7 vim-minimal x86_64 2:9.1.031-1.fc38 updates 805 k | |
#6 175.7 yum noarch 4.18.2-1.fc38 updates 37 k | |
#6 175.7 zchunk-libs x86_64 1.4.0-1.fc38 updates 52 k | |
#6 175.7 | |
#6 175.7 Transaction Summary | |
#6 175.7 ================================================================================ | |
#6 175.7 Upgrade 56 Packages | |
#6 175.7 | |
#6 175.7 Total download size: 31 M | |
#6 175.7 Downloading Packages: | |
#6 177.0 (1/56): alternatives-1.26-1.fc38.x86_64.rpm 139 kB/s | 39 kB 00:00 | |
#6 177.0 (2/56): audit-libs-3.1.2-6.fc38.x86_64.rpm 334 kB/s | 117 kB 00:00 | |
#6 177.1 (3/56): authselect-1.4.3-1.fc38.x86_64.rpm 387 kB/s | 149 kB 00:00 | |
#6 177.4 (4/56): authselect-libs-1.4.3-1.fc38.x86_64.rpm 600 kB/s | 249 kB 00:00 | |
#6 177.8 (5/56): curl-8.0.1-6.fc38.x86_64.rpm 866 kB/s | 348 kB 00:00 | |
#6 177.9 (6/56): ca-certificates-2023.2.60_v7.0.306-1.0. 966 kB/s | 837 kB 00:00 | |
#6 178.2 (7/56): dnf-4.18.2-1.fc38.noarch.rpm 1.3 MB/s | 508 kB 00:00 | |
#6 178.2 (8/56): dnf-data-4.18.2-1.fc38.noarch.rpm 150 kB/s | 39 kB 00:00 | |
#6 178.3 (9/56): elfutils-default-yama-scope-0.190-2.fc3 123 kB/s | 12 kB 00:00 | |
#6 178.4 (10/56): elfutils-libelf-0.190-2.fc38.x86_64.rp 915 kB/s | 194 kB 00:00 | |
#6 178.5 (11/56): elfutils-libs-0.190-2.fc38.x86_64.rpm 1.4 MB/s | 259 kB 00:00 | |
#6 180.4 (12/56): bash-5.2.26-1.fc38.x86_64.rpm 544 kB/s | 1.8 MB 00:03 | |
#6 181.0 (13/56): glibc-common-2.37-18.fc38.x86_64.rpm 523 kB/s | 320 kB 00:00 | |
#6 181.2 (14/56): glibc-minimal-langpack-2.37-18.fc38.x8 264 kB/s | 41 kB 00:00 | |
#6 182.2 (15/56): glib2-2.76.6-1.fc38.x86_64.rpm 747 kB/s | 2.8 MB 00:03 | |
#6 182.3 (16/56): libacl-2.3.1-7.fc38.x86_64.rpm 192 kB/s | 23 kB 00:00 | |
#6 182.4 (17/56): gnutls-3.8.2-2.fc38.x86_64.rpm 970 kB/s | 1.1 MB 00:01 | |
#6 182.5 (18/56): libcap-2.48-8.fc38.x86_64.rpm 411 kB/s | 68 kB 00:00 | |
#6 182.5 (19/56): libcomps-0.1.20-1.fc38.x86_64.rpm 462 kB/s | 77 kB 00:00 | |
#6 182.9 (20/56): libcurl-8.0.1-6.fc38.x86_64.rpm 666 kB/s | 312 kB 00:00 | |
#6 183.3 (21/56): glibc-2.37-18.fc38.x86_64.rpm 453 kB/s | 2.1 MB 00:04 | |
#6 183.3 (22/56): libgcc-13.2.1-4.fc38.x86_64.rpm 328 kB/s | 111 kB 00:00 | |
#6 183.5 (23/56): libnghttp2-1.52.0-2.fc38.x86_64.rpm 451 kB/s | 75 kB 00:00 | |
#6 183.5 (24/56): libdnf-0.72.0-1.fc38.x86_64.rpm 693 kB/s | 680 kB 00:00 | |
#6 183.6 (25/56): librepo-1.17.0-1.fc38.x86_64.rpm 601 kB/s | 96 kB 00:00 | |
#6 183.9 (26/56): libssh-0.10.6-2.fc38.x86_64.rpm 708 kB/s | 212 kB 00:00 | |
#6 184.0 (27/56): libgomp-13.2.1-4.fc38.x86_64.rpm 434 kB/s | 320 kB 00:00 | |
#6 184.0 (28/56): libsolv-0.7.27-1.fc38.x86_64.rpm 834 kB/s | 426 kB 00:00 | |
#6 184.1 (29/56): libssh-config-0.10.6-2.fc38.noarch.rpm 64 kB/s | 9.0 kB 00:00 | |
#6 184.5 (30/56): libtirpc-1.3.4-0.rc2.fc38.x86_64.rpm 197 kB/s | 94 kB 00:00 | |
#6 184.6 (31/56): ncurses-base-6.4-7.20230520.fc38.noarc 175 kB/s | 88 kB 00:00 | |
#6 184.9 (32/56): libstdc++-13.2.1-4.fc38.x86_64.rpm 996 kB/s | 865 kB 00:00 | |
#6 185.0 (33/56): openldap-2.6.6-1.fc38.x86_64.rpm 590 kB/s | 254 kB 00:00 | |
#6 185.0 (34/56): ncurses-libs-6.4-7.20230520.fc38.x86_6 686 kB/s | 336 kB 00:00 | |
#6 185.2 (35/56): p11-kit-trust-0.25.3-1.fc38.x86_64.rpm 776 kB/s | 142 kB 00:00 | |
#6 185.2 (36/56): publicsuffix-list-dafsa-20240107-1.fc3 321 kB/s | 58 kB 00:00 | |
#6 185.3 (37/56): python3-3.11.7-2.fc38.x86_64.rpm 254 kB/s | 28 kB 00:00 | |
#6 185.7 (38/56): python3-hawkey-0.72.0-1.fc38.x86_64.rp 284 kB/s | 107 kB 00:00 | |
#6 185.7 (39/56): p11-kit-0.25.3-1.fc38.x86_64.rpm 614 kB/s | 521 kB 00:00 | |
#6 185.8 (40/56): python3-dnf-4.18.2-1.fc38.noarch.rpm 1.0 MB/s | 605 kB 00:00 | |
#6 185.8 (41/56): python3-libcomps-0.1.20-1.fc38.x86_64. 333 kB/s | 47 kB 00:00 | |
#6 186.1 (42/56): python3-rpm-4.18.2-1.fc38.x86_64.rpm 302 kB/s | 70 kB 00:00 | |
#6 186.3 (43/56): readline-8.2-4.fc38.x86_64.rpm 908 kB/s | 212 kB 00:00 | |
#6 186.8 (44/56): rpm-4.18.2-1.fc38.x86_64.rpm 1.1 MB/s | 567 kB 00:00 | |
#6 187.1 (45/56): rpm-build-libs-4.18.2-1.fc38.x86_64.rp 369 kB/s | 93 kB 00:00 | |
#6 187.4 (46/56): rpm-libs-4.18.2-1.fc38.x86_64.rpm 868 kB/s | 310 kB 00:00 | |
#6 187.5 (47/56): python3-libdnf-0.72.0-1.fc38.x86_64.rp 495 kB/s | 859 kB 00:01 | |
#6 187.8 (48/56): rpm-sign-libs-4.18.2-1.fc38.x86_64.rpm 82 kB/s | 24 kB 00:00 | |
#6 188.7 (49/56): systemd-libs-253.15-2.fc38.x86_64.rpm 695 kB/s | 650 kB 00:00 | |
#6 189.4 (50/56): tzdata-2023d-1.fc38.noarch.rpm 1.0 MB/s | 717 kB 00:00 | |
#6 189.6 (51/56): vim-data-9.1.031-1.fc38.noarch.rpm 98 kB/s | 23 kB 00:00 | |
#6 190.3 (52/56): vim-minimal-9.1.031-1.fc38.x86_64.rpm 1.1 MB/s | 805 kB 00:00 | |
#6 190.7 (53/56): rpm-sequoia-1.5.0-2.fc38.x86_64.rpm 273 kB/s | 883 kB 00:03 | |
#6 190.8 (54/56): yum-4.18.2-1.fc38.noarch.rpm 77 kB/s | 37 kB 00:00 | |
#6 191.0 (55/56): zchunk-libs-1.4.0-1.fc38.x86_64.rpm 155 kB/s | 52 kB 00:00 | |
#6 191.5 (56/56): python3-libs-3.11.7-2.fc38.x86_64.rpm 1.7 MB/s | 9.6 MB 00:05 | |
#6 191.5 -------------------------------------------------------------------------------- | |
#6 191.5 Total 2.0 MB/s | 31 MB 00:15 | |
#6 192.8 Running transaction check | |
#6 193.1 Transaction check succeeded. | |
#6 193.1 Running transaction test | |
#6 193.8 Transaction test succeeded. | |
#6 193.8 Running transaction | |
#6 202.6 Preparing : 1/1 | |
#6 202.7 Upgrading : libgcc-13.2.1-4.fc38.x86_64 1/112 | |
#6 202.8 Running scriptlet: libgcc-13.2.1-4.fc38.x86_64 1/112 | |
#6 203.2 Upgrading : tzdata-2023d-1.fc38.noarch 2/112 | |
#6 203.4 Upgrading : vim-data-2:9.1.031-1.fc38.noarch 3/112 | |
#6 203.4 Upgrading : ncurses-base-6.4-7.20230520.fc38.noarch 4/112 | |
#6 203.5 Upgrading : ncurses-libs-6.4-7.20230520.fc38.x86_64 5/112 | |
#6 203.5 Running scriptlet: glibc-2.37-18.fc38.x86_64 6/112 | |
#6 203.6 Upgrading : glibc-2.37-18.fc38.x86_64 6/112 | |
#6 203.6 Running scriptlet: glibc-2.37-18.fc38.x86_64 6/112 | |
#6 203.8 Upgrading : bash-5.2.26-1.fc38.x86_64 7/112 | |
#6 203.8 Running scriptlet: bash-5.2.26-1.fc38.x86_64 7/112 | |
#6 203.8 Upgrading : glibc-common-2.37-18.fc38.x86_64 8/112 | |
#6 203.9 Upgrading : glibc-minimal-langpack-2.37-18.fc38.x86_64 9/112 | |
#6 203.9 Upgrading : libacl-2.3.1-7.fc38.x86_64 10/112 | |
#6 203.9 Upgrading : libcap-2.48-8.fc38.x86_64 11/112 | |
#6 204.0 Upgrading : audit-libs-3.1.2-6.fc38.x86_64 12/112 | |
#6 204.1 Upgrading : rpm-sequoia-1.5.0-2.fc38.x86_64 13/112 | |
#6 204.1 Upgrading : rpm-libs-4.18.2-1.fc38.x86_64 14/112 | |
#6 204.1 Upgrading : elfutils-libelf-0.190-2.fc38.x86_64 15/112 | |
#6 204.2 Upgrading : libstdc++-13.2.1-4.fc38.x86_64 16/112 | |
#6 204.3 Upgrading : p11-kit-0.25.3-1.fc38.x86_64 17/112 | |
#6 204.3 Upgrading : zchunk-libs-1.4.0-1.fc38.x86_64 18/112 | |
#6 204.4 Upgrading : libsolv-0.7.27-1.fc38.x86_64 19/112 | |
#6 204.4 Upgrading : rpm-sign-libs-4.18.2-1.fc38.x86_64 20/112 | |
#6 204.4 Upgrading : elfutils-default-yama-scope-0.190-2.fc38.noarch 21/112 | |
#6 204.5 Running scriptlet: elfutils-default-yama-scope-0.190-2.fc38.noarch 21/112 | |
#6 204.5 Upgrading : elfutils-libs-0.190-2.fc38.x86_64 22/112 | |
#6 204.5 Upgrading : alternatives-1.26-1.fc38.x86_64 23/112 | |
#6 204.6 Upgrading : p11-kit-trust-0.25.3-1.fc38.x86_64 24/112 | |
#6 204.6 Running scriptlet: p11-kit-trust-0.25.3-1.fc38.x86_64 24/112 | |
#6 204.7 Upgrading : gnutls-3.8.2-2.fc38.x86_64 25/112 | |
#6 204.8 Upgrading : glib2-2.76.6-1.fc38.x86_64 26/112 | |
#6 204.9 Running scriptlet: authselect-libs-1.4.3-1.fc38.x86_64 27/112 | |
#6 204.9 Upgrading : authselect-libs-1.4.3-1.fc38.x86_64 27/112 | |
#6 204.9 Upgrading : libcomps-0.1.20-1.fc38.x86_64 28/112 | |
#6 205.0 Upgrading : libgomp-13.2.1-4.fc38.x86_64 29/112 | |
#6 205.0 Upgrading : rpm-build-libs-4.18.2-1.fc38.x86_64 30/112 | |
#6 205.0 Upgrading : libnghttp2-1.52.0-2.fc38.x86_64 31/112 | |
#6 205.1 Upgrading : libtirpc-1.3.4-0.rc2.fc38.x86_64 32/112 | |
#6 205.1 Upgrading : openldap-2.6.6-1.fc38.x86_64 33/112 | |
#6 205.2 Upgrading : readline-8.2-4.fc38.x86_64 34/112 | |
#6 205.2 Upgrading : python3-3.11.7-2.fc38.x86_64 35/112 | |
#6 206.1 Upgrading : python3-libs-3.11.7-2.fc38.x86_64 36/112 | |
#6 206.1 Upgrading : python3-libcomps-0.1.20-1.fc38.x86_64 37/112 | |
#6 206.2 Upgrading : python3-rpm-4.18.2-1.fc38.x86_64 38/112 | |
#6 206.2 Upgrading : libssh-config-0.10.6-2.fc38.noarch 39/112 | |
#6 206.2 Upgrading : libssh-0.10.6-2.fc38.x86_64 40/112 | |
#6 206.3 Upgrading : libcurl-8.0.1-6.fc38.x86_64 41/112 | |
#6 206.3 Upgrading : curl-8.0.1-6.fc38.x86_64 42/112 | |
#6 206.4 Upgrading : librepo-1.17.0-1.fc38.x86_64 43/112 | |
#6 206.4 Upgrading : libdnf-0.72.0-1.fc38.x86_64 44/112 | |
#6 206.5 Upgrading : python3-libdnf-0.72.0-1.fc38.x86_64 45/112 | |
#6 206.6 Upgrading : python3-hawkey-0.72.0-1.fc38.x86_64 46/112 | |
#6 206.6 Upgrading : dnf-data-4.18.2-1.fc38.noarch 47/112 | |
#6 206.7 Upgrading : python3-dnf-4.18.2-1.fc38.noarch 48/112 | |
#6 206.8 Upgrading : dnf-4.18.2-1.fc38.noarch 49/112 | |
#6 206.8 Running scriptlet: dnf-4.18.2-1.fc38.noarch 49/112 | |
#6 206.8 Upgrading : yum-4.18.2-1.fc38.noarch 50/112 | |
#6 206.9 Running scriptlet: rpm-4.18.2-1.fc38.x86_64 51/112 | |
#6 207.0 Upgrading : rpm-4.18.2-1.fc38.x86_64 51/112 | |
#6 207.0 Upgrading : authselect-1.4.3-1.fc38.x86_64 52/112 | |
#6 207.0 Running scriptlet: ca-certificates-2023.2.60_v7.0.306-1.0.fc38.noar 53/112 | |
#6 207.1 Upgrading : ca-certificates-2023.2.60_v7.0.306-1.0.fc38.noar 53/112 | |
#6 207.1 Running scriptlet: ca-certificates-2023.2.60_v7.0.306-1.0.fc38.noar 53/112 | |
#6 208.7 Upgrading : systemd-libs-253.15-2.fc38.x86_64 54/112 | |
#6 208.8 Upgrading : vim-minimal-2:9.1.031-1.fc38.x86_64 55/112 | |
#6 208.8 Upgrading : publicsuffix-list-dafsa-20240107-1.fc38.noarch 56/112 | |
#6 208.9 Cleanup : systemd-libs-253.9-1.fc38.x86_64 57/112 | |
#6 208.9 Cleanup : vim-minimal-2:9.0.1872-1.fc38.x86_64 58/112 | |
#6 209.0 Running scriptlet: authselect-1.4.2-2.fc38.x86_64 59/112 | |
#6 209.0 Cleanup : authselect-1.4.2-2.fc38.x86_64 59/112 | |
#6 209.1 Cleanup : ca-certificates-2023.2.60-2.fc38.noarch 60/112 | |
#6 209.1 Cleanup : yum-4.16.2-1.fc38.noarch 61/112 | |
#6 209.1 Running scriptlet: dnf-4.16.2-1.fc38.noarch 62/112 | |
#6 209.1 Cleanup : dnf-4.16.2-1.fc38.noarch 62/112 | |
#6 209.1 Running scriptlet: dnf-4.16.2-1.fc38.noarch 62/112 | |
#6 209.2 Cleanup : python3-dnf-4.16.2-1.fc38.noarch 63/112 | |
#6 209.2 Cleanup : dnf-data-4.16.2-1.fc38.noarch 64/112 | |
#6 209.3 Cleanup : vim-data-2:9.0.1872-1.fc38.noarch 65/112 | |
#6 209.3 Cleanup : publicsuffix-list-dafsa-20230812-1.fc38.noarch 66/112 | |
#6 209.3 Cleanup : python3-hawkey-0.70.2-1.fc38.x86_64 67/112 | |
#6 209.4 Cleanup : python3-libdnf-0.70.2-1.fc38.x86_64 68/112 | |
#6 209.4 Cleanup : libdnf-0.70.2-1.fc38.x86_64 69/112 | |
#6 209.4 Cleanup : libstdc++-13.2.1-1.fc38.x86_64 70/112 | |
#6 209.5 Cleanup : python3-rpm-4.18.1-3.fc38.x86_64 71/112 | |
#6 209.5 Cleanup : rpm-build-libs-4.18.1-3.fc38.x86_64 72/112 | |
#6 209.6 Cleanup : elfutils-libs-0.189-3.fc38.x86_64 73/112 | |
#6 209.6 Cleanup : librepo-1.15.2-1.fc38.x86_64 74/112 | |
#6 209.6 Cleanup : glib2-2.76.5-2.fc38.x86_64 75/112 | |
#6 209.7 Cleanup : gnutls-3.8.1-1.fc38.x86_64 76/112 | |
#6 209.7 Cleanup : p11-kit-trust-0.25.0-1.fc38.x86_64 77/112 | |
#6 209.7 Running scriptlet: p11-kit-trust-0.25.0-1.fc38.x86_64 77/112 | |
#6 209.8 Cleanup : p11-kit-0.25.0-1.fc38.x86_64 78/112 | |
#6 209.8 Cleanup : rpm-sign-libs-4.18.1-3.fc38.x86_64 79/112 | |
#6 209.8 Cleanup : libsolv-0.7.22-4.fc38.x86_64 80/112 | |
#6 209.9 Cleanup : rpm-4.18.1-3.fc38.x86_64 81/112 | |
#6 209.9 Cleanup : rpm-libs-4.18.1-3.fc38.x86_64 82/112 | |
#6 210.0 Cleanup : rpm-sequoia-1.5.0-1.fc38.x86_64 83/112 | |
#6 210.0 Cleanup : libcap-2.48-6.fc38.x86_64 84/112 | |
#6 210.0 Cleanup : curl-8.0.1-3.fc38.x86_64 85/112 | |
#6 210.1 Cleanup : libcurl-8.0.1-3.fc38.x86_64 86/112 | |
#6 210.1 Cleanup : libssh-0.10.5-1.fc38.x86_64 87/112 | |
#6 210.1 Cleanup : openldap-2.6.4-1.fc38.x86_64 88/112 | |
#6 210.2 Cleanup : audit-libs-3.1.2-1.fc38.x86_64 89/112 | |
#6 210.2 Cleanup : elfutils-libelf-0.189-3.fc38.x86_64 90/112 | |
#6 210.3 Cleanup : authselect-libs-1.4.2-2.fc38.x86_64 91/112 | |
#6 210.3 Cleanup : alternatives-1.25-1.fc38.x86_64 92/112 | |
#6 210.3 Cleanup : libgomp-13.2.1-1.fc38.x86_64 93/112 | |
#6 210.4 Cleanup : python3-libcomps-0.1.18-6.fc38.x86_64 94/112 | |
#6 210.4 Cleanup : elfutils-default-yama-scope-0.189-3.fc38.noarch 95/112 | |
#6 210.5 Cleanup : python3-libs-3.11.5-1.fc38.x86_64 96/112 | |
#6 210.5 Cleanup : python3-3.11.5-1.fc38.x86_64 97/112 | |
#6 210.6 Cleanup : libtirpc-1.3.3-1.rc2.fc38.x86_64 98/112 | |
#6 210.6 Cleanup : readline-8.2-3.fc38.x86_64 99/112 | |
#6 210.6 Cleanup : libcomps-0.1.18-6.fc38.x86_64 100/112 | |
#6 210.7 Cleanup : libacl-2.3.1-6.fc38.x86_64 101/112 | |
#6 210.7 Cleanup : zchunk-libs-1.3.1-1.fc38.x86_64 102/112 | |
#6 210.7 Cleanup : libnghttp2-1.52.0-1.fc38.x86_64 103/112 | |
#6 210.8 Cleanup : libssh-config-0.10.5-1.fc38.noarch 104/112 | |
#6 210.8 Cleanup : ncurses-libs-6.4-3.20230114.fc38.x86_64 105/112 | |
#6 210.8 Cleanup : bash-5.2.15-3.fc38.x86_64 106/112 | |
#6 210.8 Running scriptlet: bash-5.2.15-3.fc38.x86_64 106/112 | |
#6 210.9 Cleanup : glibc-2.37-5.fc38.x86_64 107/112 | |
#6 210.9 Cleanup : glibc-minimal-langpack-2.37-5.fc38.x86_64 108/112 | |
#6 210.9 Cleanup : glibc-common-2.37-5.fc38.x86_64 109/112 | |
#6 211.0 Cleanup : tzdata-2023c-1.fc38.noarch 110/112 | |
#6 211.0 Cleanup : ncurses-base-6.4-3.20230114.fc38.noarch 111/112 | |
#6 211.1 Cleanup : libgcc-13.2.1-1.fc38.x86_64 112/112 | |
#6 211.1 Running scriptlet: libgcc-13.2.1-1.fc38.x86_64 112/112 | |
#6 211.2 Running scriptlet: authselect-libs-1.4.3-1.fc38.x86_64 112/112 | |
#6 211.2 Running scriptlet: rpm-4.18.2-1.fc38.x86_64 112/112 | |
#6 211.3 Running scriptlet: ca-certificates-2023.2.60_v7.0.306-1.0.fc38.noar 112/112 | |
#6 212.8 Running scriptlet: libgcc-13.2.1-1.fc38.x86_64 112/112 | |
#6 215.7 Verifying : alternatives-1.26-1.fc38.x86_64 1/112 | |
#6 215.7 Verifying : alternatives-1.25-1.fc38.x86_64 2/112 | |
#6 215.7 Verifying : audit-libs-3.1.2-6.fc38.x86_64 3/112 | |
#6 215.7 Verifying : audit-libs-3.1.2-1.fc38.x86_64 4/112 | |
#6 215.7 Verifying : authselect-1.4.3-1.fc38.x86_64 5/112 | |
#6 215.7 Verifying : authselect-1.4.2-2.fc38.x86_64 6/112 | |
#6 215.7 Verifying : authselect-libs-1.4.3-1.fc38.x86_64 7/112 | |
#6 215.7 Verifying : authselect-libs-1.4.2-2.fc38.x86_64 8/112 | |
#6 215.7 Verifying : bash-5.2.26-1.fc38.x86_64 9/112 | |
#6 215.7 Verifying : bash-5.2.15-3.fc38.x86_64 10/112 | |
#6 215.7 Verifying : ca-certificates-2023.2.60_v7.0.306-1.0.fc38.noar 11/112 | |
#6 215.7 Verifying : ca-certificates-2023.2.60-2.fc38.noarch 12/112 | |
#6 215.7 Verifying : curl-8.0.1-6.fc38.x86_64 13/112 | |
#6 215.7 Verifying : curl-8.0.1-3.fc38.x86_64 14/112 | |
#6 215.7 Verifying : dnf-4.18.2-1.fc38.noarch 15/112 | |
#6 215.7 Verifying : dnf-4.16.2-1.fc38.noarch 16/112 | |
#6 215.7 Verifying : dnf-data-4.18.2-1.fc38.noarch 17/112 | |
#6 215.7 Verifying : dnf-data-4.16.2-1.fc38.noarch 18/112 | |
#6 215.7 Verifying : elfutils-default-yama-scope-0.190-2.fc38.noarch 19/112 | |
#6 215.7 Verifying : elfutils-default-yama-scope-0.189-3.fc38.noarch 20/112 | |
#6 215.7 Verifying : elfutils-libelf-0.190-2.fc38.x86_64 21/112 | |
#6 215.7 Verifying : elfutils-libelf-0.189-3.fc38.x86_64 22/112 | |
#6 215.7 Verifying : elfutils-libs-0.190-2.fc38.x86_64 23/112 | |
#6 215.7 Verifying : elfutils-libs-0.189-3.fc38.x86_64 24/112 | |
#6 215.7 Verifying : glib2-2.76.6-1.fc38.x86_64 25/112 | |
#6 215.7 Verifying : glib2-2.76.5-2.fc38.x86_64 26/112 | |
#6 215.7 Verifying : glibc-2.37-18.fc38.x86_64 27/112 | |
#6 215.7 Verifying : glibc-2.37-5.fc38.x86_64 28/112 | |
#6 215.7 Verifying : glibc-common-2.37-18.fc38.x86_64 29/112 | |
#6 215.7 Verifying : glibc-common-2.37-5.fc38.x86_64 30/112 | |
#6 215.7 Verifying : glibc-minimal-langpack-2.37-18.fc38.x86_64 31/112 | |
#6 215.7 Verifying : glibc-minimal-langpack-2.37-5.fc38.x86_64 32/112 | |
#6 215.7 Verifying : gnutls-3.8.2-2.fc38.x86_64 33/112 | |
#6 215.7 Verifying : gnutls-3.8.1-1.fc38.x86_64 34/112 | |
#6 215.7 Verifying : libacl-2.3.1-7.fc38.x86_64 35/112 | |
#6 215.7 Verifying : libacl-2.3.1-6.fc38.x86_64 36/112 | |
#6 215.7 Verifying : libcap-2.48-8.fc38.x86_64 37/112 | |
#6 215.7 Verifying : libcap-2.48-6.fc38.x86_64 38/112 | |
#6 215.7 Verifying : libcomps-0.1.20-1.fc38.x86_64 39/112 | |
#6 215.7 Verifying : libcomps-0.1.18-6.fc38.x86_64 40/112 | |
#6 215.7 Verifying : libcurl-8.0.1-6.fc38.x86_64 41/112 | |
#6 215.7 Verifying : libcurl-8.0.1-3.fc38.x86_64 42/112 | |
#6 215.7 Verifying : libdnf-0.72.0-1.fc38.x86_64 43/112 | |
#6 215.7 Verifying : libdnf-0.70.2-1.fc38.x86_64 44/112 | |
#6 215.7 Verifying : libgcc-13.2.1-4.fc38.x86_64 45/112 | |
#6 215.7 Verifying : libgcc-13.2.1-1.fc38.x86_64 46/112 | |
#6 215.7 Verifying : libgomp-13.2.1-4.fc38.x86_64 47/112 | |
#6 215.7 Verifying : libgomp-13.2.1-1.fc38.x86_64 48/112 | |
#6 215.7 Verifying : libnghttp2-1.52.0-2.fc38.x86_64 49/112 | |
#6 215.7 Verifying : libnghttp2-1.52.0-1.fc38.x86_64 50/112 | |
#6 215.7 Verifying : librepo-1.17.0-1.fc38.x86_64 51/112 | |
#6 215.7 Verifying : librepo-1.15.2-1.fc38.x86_64 52/112 | |
#6 215.7 Verifying : libsolv-0.7.27-1.fc38.x86_64 53/112 | |
#6 215.7 Verifying : libsolv-0.7.22-4.fc38.x86_64 54/112 | |
#6 215.7 Verifying : libssh-0.10.6-2.fc38.x86_64 55/112 | |
#6 215.7 Verifying : libssh-0.10.5-1.fc38.x86_64 56/112 | |
#6 215.7 Verifying : libssh-config-0.10.6-2.fc38.noarch 57/112 | |
#6 215.7 Verifying : libssh-config-0.10.5-1.fc38.noarch 58/112 | |
#6 215.7 Verifying : libstdc++-13.2.1-4.fc38.x86_64 59/112 | |
#6 215.7 Verifying : libstdc++-13.2.1-1.fc38.x86_64 60/112 | |
#6 215.7 Verifying : libtirpc-1.3.4-0.rc2.fc38.x86_64 61/112 | |
#6 215.7 Verifying : libtirpc-1.3.3-1.rc2.fc38.x86_64 62/112 | |
#6 215.7 Verifying : ncurses-base-6.4-7.20230520.fc38.noarch 63/112 | |
#6 215.7 Verifying : ncurses-base-6.4-3.20230114.fc38.noarch 64/112 | |
#6 215.7 Verifying : ncurses-libs-6.4-7.20230520.fc38.x86_64 65/112 | |
#6 215.7 Verifying : ncurses-libs-6.4-3.20230114.fc38.x86_64 66/112 | |
#6 215.7 Verifying : openldap-2.6.6-1.fc38.x86_64 67/112 | |
#6 215.7 Verifying : openldap-2.6.4-1.fc38.x86_64 68/112 | |
#6 215.7 Verifying : p11-kit-0.25.3-1.fc38.x86_64 69/112 | |
#6 215.7 Verifying : p11-kit-0.25.0-1.fc38.x86_64 70/112 | |
#6 215.7 Verifying : p11-kit-trust-0.25.3-1.fc38.x86_64 71/112 | |
#6 215.7 Verifying : p11-kit-trust-0.25.0-1.fc38.x86_64 72/112 | |
#6 215.7 Verifying : publicsuffix-list-dafsa-20240107-1.fc38.noarch 73/112 | |
#6 215.7 Verifying : publicsuffix-list-dafsa-20230812-1.fc38.noarch 74/112 | |
#6 215.7 Verifying : python3-3.11.7-2.fc38.x86_64 75/112 | |
#6 215.7 Verifying : python3-3.11.5-1.fc38.x86_64 76/112 | |
#6 215.7 Verifying : python3-dnf-4.18.2-1.fc38.noarch 77/112 | |
#6 215.7 Verifying : python3-dnf-4.16.2-1.fc38.noarch 78/112 | |
#6 215.7 Verifying : python3-hawkey-0.72.0-1.fc38.x86_64 79/112 | |
#6 215.7 Verifying : python3-hawkey-0.70.2-1.fc38.x86_64 80/112 | |
#6 215.7 Verifying : python3-libcomps-0.1.20-1.fc38.x86_64 81/112 | |
#6 215.7 Verifying : python3-libcomps-0.1.18-6.fc38.x86_64 82/112 | |
#6 215.7 Verifying : python3-libdnf-0.72.0-1.fc38.x86_64 83/112 | |
#6 215.7 Verifying : python3-libdnf-0.70.2-1.fc38.x86_64 84/112 | |
#6 215.7 Verifying : python3-libs-3.11.7-2.fc38.x86_64 85/112 | |
#6 215.7 Verifying : python3-libs-3.11.5-1.fc38.x86_64 86/112 | |
#6 215.7 Verifying : python3-rpm-4.18.2-1.fc38.x86_64 87/112 | |
#6 215.7 Verifying : python3-rpm-4.18.1-3.fc38.x86_64 88/112 | |
#6 215.7 Verifying : readline-8.2-4.fc38.x86_64 89/112 | |
#6 215.7 Verifying : readline-8.2-3.fc38.x86_64 90/112 | |
#6 215.7 Verifying : rpm-4.18.2-1.fc38.x86_64 91/112 | |
#6 215.7 Verifying : rpm-4.18.1-3.fc38.x86_64 92/112 | |
#6 215.7 Verifying : rpm-build-libs-4.18.2-1.fc38.x86_64 93/112 | |
#6 215.7 Verifying : rpm-build-libs-4.18.1-3.fc38.x86_64 94/112 | |
#6 215.7 Verifying : rpm-libs-4.18.2-1.fc38.x86_64 95/112 | |
#6 215.7 Verifying : rpm-libs-4.18.1-3.fc38.x86_64 96/112 | |
#6 215.7 Verifying : rpm-sequoia-1.5.0-2.fc38.x86_64 97/112 | |
#6 215.7 Verifying : rpm-sequoia-1.5.0-1.fc38.x86_64 98/112 | |
#6 215.7 Verifying : rpm-sign-libs-4.18.2-1.fc38.x86_64 99/112 | |
#6 215.7 Verifying : rpm-sign-libs-4.18.1-3.fc38.x86_64 100/112 | |
#6 215.7 Verifying : systemd-libs-253.15-2.fc38.x86_64 101/112 | |
#6 215.7 Verifying : systemd-libs-253.9-1.fc38.x86_64 102/112 | |
#6 215.7 Verifying : tzdata-2023d-1.fc38.noarch 103/112 | |
#6 215.7 Verifying : tzdata-2023c-1.fc38.noarch 104/112 | |
#6 215.7 Verifying : vim-data-2:9.1.031-1.fc38.noarch 105/112 | |
#6 215.7 Verifying : vim-data-2:9.0.1872-1.fc38.noarch 106/112 | |
#6 215.7 Verifying : vim-minimal-2:9.1.031-1.fc38.x86_64 107/112 | |
#6 215.7 Verifying : vim-minimal-2:9.0.1872-1.fc38.x86_64 108/112 | |
#6 215.7 Verifying : yum-4.18.2-1.fc38.noarch 109/112 | |
#6 215.7 Verifying : yum-4.16.2-1.fc38.noarch 110/112 | |
#6 215.7 Verifying : zchunk-libs-1.4.0-1.fc38.x86_64 111/112 | |
#6 215.7 Verifying : zchunk-libs-1.3.1-1.fc38.x86_64 112/112 | |
#6 218.8 | |
#6 218.8 Upgraded: | |
#6 218.8 alternatives-1.26-1.fc38.x86_64 | |
#6 218.8 audit-libs-3.1.2-6.fc38.x86_64 | |
#6 218.8 authselect-1.4.3-1.fc38.x86_64 | |
#6 218.8 authselect-libs-1.4.3-1.fc38.x86_64 | |
#6 218.8 bash-5.2.26-1.fc38.x86_64 | |
#6 218.8 ca-certificates-2023.2.60_v7.0.306-1.0.fc38.noarch | |
#6 218.8 curl-8.0.1-6.fc38.x86_64 | |
#6 218.8 dnf-4.18.2-1.fc38.noarch | |
#6 218.8 dnf-data-4.18.2-1.fc38.noarch | |
#6 218.8 elfutils-default-yama-scope-0.190-2.fc38.noarch | |
#6 218.8 elfutils-libelf-0.190-2.fc38.x86_64 | |
#6 218.8 elfutils-libs-0.190-2.fc38.x86_64 | |
#6 218.8 glib2-2.76.6-1.fc38.x86_64 | |
#6 218.8 glibc-2.37-18.fc38.x86_64 | |
#6 218.8 glibc-common-2.37-18.fc38.x86_64 | |
#6 218.8 glibc-minimal-langpack-2.37-18.fc38.x86_64 | |
#6 218.8 gnutls-3.8.2-2.fc38.x86_64 | |
#6 218.8 libacl-2.3.1-7.fc38.x86_64 | |
#6 218.8 libcap-2.48-8.fc38.x86_64 | |
#6 218.8 libcomps-0.1.20-1.fc38.x86_64 | |
#6 218.8 libcurl-8.0.1-6.fc38.x86_64 | |
#6 218.8 libdnf-0.72.0-1.fc38.x86_64 | |
#6 218.8 libgcc-13.2.1-4.fc38.x86_64 | |
#6 218.8 libgomp-13.2.1-4.fc38.x86_64 | |
#6 218.8 libnghttp2-1.52.0-2.fc38.x86_64 | |
#6 218.8 librepo-1.17.0-1.fc38.x86_64 | |
#6 218.8 libsolv-0.7.27-1.fc38.x86_64 | |
#6 218.8 libssh-0.10.6-2.fc38.x86_64 | |
#6 218.8 libssh-config-0.10.6-2.fc38.noarch | |
#6 218.8 libstdc++-13.2.1-4.fc38.x86_64 | |
#6 218.8 libtirpc-1.3.4-0.rc2.fc38.x86_64 | |
#6 218.8 ncurses-base-6.4-7.20230520.fc38.noarch | |
#6 218.8 ncurses-libs-6.4-7.20230520.fc38.x86_64 | |
#6 218.8 openldap-2.6.6-1.fc38.x86_64 | |
#6 218.8 p11-kit-0.25.3-1.fc38.x86_64 | |
#6 218.8 p11-kit-trust-0.25.3-1.fc38.x86_64 | |
#6 218.8 publicsuffix-list-dafsa-20240107-1.fc38.noarch | |
#6 218.8 python3-3.11.7-2.fc38.x86_64 | |
#6 218.8 python3-dnf-4.18.2-1.fc38.noarch | |
#6 218.8 python3-hawkey-0.72.0-1.fc38.x86_64 | |
#6 218.8 python3-libcomps-0.1.20-1.fc38.x86_64 | |
#6 218.8 python3-libdnf-0.72.0-1.fc38.x86_64 | |
#6 218.8 python3-libs-3.11.7-2.fc38.x86_64 | |
#6 218.8 python3-rpm-4.18.2-1.fc38.x86_64 | |
#6 218.8 readline-8.2-4.fc38.x86_64 | |
#6 218.8 rpm-4.18.2-1.fc38.x86_64 | |
#6 218.8 rpm-build-libs-4.18.2-1.fc38.x86_64 | |
#6 218.8 rpm-libs-4.18.2-1.fc38.x86_64 | |
#6 218.8 rpm-sequoia-1.5.0-2.fc38.x86_64 | |
#6 218.8 rpm-sign-libs-4.18.2-1.fc38.x86_64 | |
#6 218.8 systemd-libs-253.15-2.fc38.x86_64 | |
#6 218.8 tzdata-2023d-1.fc38.noarch | |
#6 218.8 vim-data-2:9.1.031-1.fc38.noarch | |
#6 218.8 vim-minimal-2:9.1.031-1.fc38.x86_64 | |
#6 218.8 yum-4.18.2-1.fc38.noarch | |
#6 218.8 zchunk-libs-1.4.0-1.fc38.x86_64 | |
#6 218.8 | |
#6 218.8 Complete! | |
#6 219.5 Failed to set locale, defaulting to C.UTF-8 | |
#6 282.1 Fedora 38 openh264 (From Cisco) - x86_64 0.0 B/s | 0 B 01:01 | |
#6 282.1 Errors during downloading metadata for repository 'fedora-cisco-openh264': | |
#6 282.1 - Curl error (28): Timeout was reached for https://codecs.fedoraproject.org/openh264/38/x86_64/os/repodata/32ab2e7e9bd848401485ba227c6a4c2c9f80e60635b765073db4dea168755926-filelists.xml.gz [SSL connection timeout] | |
#6 282.1 - Curl error (28): Timeout was reached for https://codecs.fedoraproject.org/openh264/38/x86_64/os/repodata/3d50825fb25440abc9579f078205d6ba3590b1d146187af8179eb43214c8b40e-comps-Temporary.x86_64.xml.gz [SSL connection timeout] | |
#6 282.1 - Curl error (28): Timeout was reached for https://codecs.fedoraproject.org/openh264/38/x86_64/os/repodata/7dfb5bff6d7759e6428fb90448f615fdb922afa2f0ff4b9a81f63a8adc68a992-primary.xml.gz [SSL connection timeout] | |
#6 282.1 Error: Failed to download metadata for repo 'fedora-cisco-openh264': Yum repo downloading error: Downloading error(s): repodata/7dfb5bff6d7759e6428fb90448f615fdb922afa2f0ff4b9a81f63a8adc68a992-primary.xml.gz - Cannot download, all mirrors were already tried without success; repodata/32ab2e7e9bd848401485ba227c6a4c2c9f80e60635b765073db4dea168755926-filelists.xml.gz - Cannot download, all mirrors were already tried without success; repodata/3d50825fb25440abc9579f078205d6ba3590b1d146187af8179eb43214c8b40e-comps-Temporary.x86_64.xml.gz - Cannot download, all mirrors were already tried without success | |
#6 282.9 Ignoring repositories: fedora-cisco-openh264 | |
#6 282.9 Last metadata expiration check: 0:01:54 ago on Fri Feb 9 09:05:54 2024. | |
#6 283.5 Dependencies resolved. | |
#6 283.6 =============================================================================================== | |
#6 283.6 Package Arch Version Repo Size | |
#6 283.6 =============================================================================================== | |
#6 283.6 Installing: | |
#6 283.6 cowsay noarch 3.7.0-10.fc38 updates 51 k | |
#6 283.6 figlet x86_64 2.2.5-25.20151018gita565ae1.fc38 fedora 137 k | |
#6 283.6 git x86_64 2.43.0-1.fc38 updates 53 k | |
#6 283.6 glibc-langpack-ja x86_64 2.37-18.fc38 updates 354 k | |
#6 283.6 glibc-locale-source x86_64 2.37-18.fc38 updates 4.2 M | |
#6 283.6 lolcat x86_64 1.4-1.fc38 fedora 20 k | |
#6 283.6 neofetch noarch 7.1.0-9.fc38 fedora 89 k | |
#6 283.6 toilet x86_64 0.3-14.fc38 fedora 730 k | |
#6 283.6 Installing dependencies: | |
#6 283.6 ImageMagick-libs x86_64 1:7.1.1.26-2.fc38 updates 2.6 M | |
#6 283.6 LibRaw x86_64 0.21.2-2.fc38 updates 418 k | |
#6 283.6 adobe-mappings-cmap noarch 20230622-1.fc38 updates 2.1 M | |
#6 283.6 adobe-mappings-cmap-deprecated noarch 20230622-1.fc38 updates 113 k | |
#6 283.6 adobe-mappings-pdf noarch 20190401-3.fc38 fedora 698 k | |
#6 283.6 avahi-libs x86_64 0.8-22.fc38 updates 66 k | |
#6 283.6 bind-libs x86_64 32:9.18.20-1.fc38 updates 1.3 M | |
#6 283.6 bind-license noarch 32:9.18.20-1.fc38 updates 14 k | |
#6 283.6 bind-utils x86_64 32:9.18.20-1.fc38 updates 224 k | |
#6 283.6 cairo x86_64 1.17.8-4.fc38 updates 704 k | |
#6 283.6 cairo-gobject x86_64 1.17.8-4.fc38 updates 18 k | |
#6 283.6 catimg x86_64 2.7.0-8.fc38 fedora 55 k | |
#6 283.6 cpio x86_64 2.13-14.fc38 fedora 276 k | |
#6 283.6 crypto-policies-scripts noarch 20230301-1.gita12f7b2.fc38 fedora 116 k | |
#6 283.6 cryptsetup-libs x86_64 2.6.1-1.fc38 fedora 492 k | |
#6 283.6 cups-libs x86_64 1:2.4.7-5.fc38 updates 267 k | |
#6 283.6 dbus x86_64 1:1.14.10-1.fc38 updates 8.0 k | |
#6 283.6 dbus-broker x86_64 33-1.fc38 fedora 173 k | |
#6 283.6 dbus-common noarch 1:1.14.10-1.fc38 updates 15 k | |
#6 283.6 dbus-libs x86_64 1:1.14.10-1.fc38 updates 156 k | |
#6 283.6 device-mapper x86_64 1.02.189-2.fc38 fedora 139 k | |
#6 283.6 device-mapper-libs x86_64 1.02.189-2.fc38 fedora 176 k | |
#6 283.6 dracut x86_64 059-5.fc38 updates 427 k | |
#6 283.6 fftw-libs-double x86_64 3.3.10-10.fc38 updates 1.2 M | |
#6 283.6 file x86_64 5.44-3.fc38 fedora 49 k | |
#6 283.6 fontconfig x86_64 2.14.2-1.fc38 fedora 295 k | |
#6 283.6 fonts-filesystem noarch 1:2.0.5-11.fc38 fedora 8.1 k | |
#6 283.6 freeglut x86_64 3.4.0-2.fc38 fedora 154 k | |
#6 283.6 freetype x86_64 2.13.0-2.fc38 fedora 414 k | |
#6 283.6 fribidi x86_64 1.0.12-3.fc38 fedora 89 k | |
#6 283.6 fstrm x86_64 0.6.1-6.fc38 fedora 28 k | |
#6 283.6 fuse-libs x86_64 2.9.9-16.fc38 fedora 97 k | |
#6 283.6 gc x86_64 8.2.2-3.fc38 fedora 110 k | |
#6 283.6 gd x86_64 2.3.3-10.fc38 fedora 140 k | |
#6 283.6 gdk-pixbuf2 x86_64 2.42.10-2.fc38 fedora 485 k | |
#6 283.6 gdk-pixbuf2-xlib x86_64 2.40.2-6.fc38 fedora 57 k | |
#6 283.6 gettext-envsubst x86_64 0.21.1-2.fc38 fedora 36 k | |
#6 283.6 gettext-libs x86_64 0.21.1-2.fc38 fedora 320 k | |
#6 283.6 gettext-runtime x86_64 0.21.1-2.fc38 fedora 117 k | |
#6 283.6 giflib x86_64 5.2.1-17.fc38 updates 51 k | |
#6 283.6 git-core x86_64 2.43.0-1.fc38 updates 4.5 M | |
#6 283.6 git-core-doc noarch 2.43.0-1.fc38 updates 2.9 M | |
#6 283.6 google-droid-sans-fonts noarch 20200215-15.fc38 updates 2.7 M | |
#6 283.6 google-noto-fonts-common noarch 20230201-2.fc38 updates 16 k | |
#6 283.6 google-noto-sans-vf-fonts noarch 20230201-2.fc38 updates 579 k | |
#6 283.6 gpm-libs x86_64 1.20.7-42.fc38 fedora 20 k | |
#6 283.6 graphite2 x86_64 1.3.14-11.fc38 fedora 95 k | |
#6 283.6 graphviz x86_64 7.1.0-3.fc38 updates 5.0 M | |
#6 283.6 groff-base x86_64 1.22.4-11.fc38 fedora 1.1 M | |
#6 283.6 grub2-common noarch 1:2.06-114.fc38 updates 921 k | |
#6 283.6 grub2-tools x86_64 1:2.06-114.fc38 updates 1.8 M | |
#6 283.6 grub2-tools-minimal x86_64 1:2.06-114.fc38 updates 624 k | |
#6 283.6 gts x86_64 0.7.6-44.20121130.fc38 fedora 240 k | |
#6 283.6 harfbuzz x86_64 7.1.0-1.fc38 fedora 889 k | |
#6 283.6 highway x86_64 1.0.7-1.fc38 updates 478 k | |
#6 283.6 hwdata noarch 0.378-1.fc38 updates 1.6 M | |
#6 283.6 imath x86_64 3.1.9-1.fc38 updates 96 k | |
#6 283.6 imlib2 x86_64 1.7.4-4.fc38 fedora 236 k | |
#6 283.6 jasper-libs x86_64 3.0.6-2.fc38 fedora 163 k | |
#6 283.6 jbig2dec-libs x86_64 0.19-8.fc38 fedora 73 k | |
#6 283.6 jbigkit-libs x86_64 2.1-25.fc38 fedora 53 k | |
#6 283.6 jemalloc x86_64 5.3.0-3.fc38 fedora 232 k | |
#6 283.6 kbd x86_64 2.5.1-5.fc38 fedora 428 k | |
#6 283.6 kbd-legacy noarch 2.5.1-5.fc38 fedora 550 k | |
#6 283.6 kbd-misc noarch 2.5.1-5.fc38 fedora 1.6 M | |
#6 283.6 kmod x86_64 30-4.fc38 fedora 120 k | |
#6 283.6 kmod-libs x86_64 30-4.fc38 fedora 68 k | |
#6 283.6 langpacks-core-font-en noarch 3.0-32.fc38 updates 9.6 k | |
#6 283.6 lasi x86_64 1.1.3-10.fc38 fedora 53 k | |
#6 283.6 lcms2 x86_64 2.15-1.fc38 fedora 178 k | |
#6 283.6 less x86_64 633-1.fc38 updates 175 k | |
#6 283.6 libICE x86_64 1.0.10-10.fc38 fedora 71 k | |
#6 283.6 libSM x86_64 1.2.3-12.fc38 fedora 41 k | |
#6 283.6 libX11 x86_64 1.8.7-1.fc38 updates 650 k | |
#6 283.6 libX11-common noarch 1.8.7-1.fc38 updates 176 k | |
#6 283.6 libX11-xcb x86_64 1.8.7-1.fc38 updates 12 k | |
#6 283.6 libXau x86_64 1.0.11-2.fc38 fedora 32 k | |
#6 283.6 libXcomposite x86_64 0.4.5-9.fc38 fedora 23 k | |
#6 283.6 libXext x86_64 1.3.5-2.fc38 fedora 39 k | |
#6 283.6 libXfixes x86_64 6.0.0-5.fc38 fedora 19 k | |
#6 283.6 libXft x86_64 2.3.8-2.fc38 updates 72 k | |
#6 283.6 libXi x86_64 1.8.1-1.fc38 updates 40 k | |
#6 283.6 libXinerama x86_64 1.1.5-2.fc38 fedora 14 k | |
#6 283.6 libXmu x86_64 1.1.4-2.fc38 fedora 77 k | |
#6 283.6 libXpm x86_64 3.5.17-1.fc38 updates 65 k | |
#6 283.6 libXrandr x86_64 1.5.2-10.fc38 fedora 27 k | |
#6 283.6 libXrender x86_64 0.9.11-2.fc38 fedora 27 k | |
#6 283.6 libXt x86_64 1.2.1-4.fc38 fedora 179 k | |
#6 283.6 libXtst x86_64 1.2.4-2.fc38 fedora 20 k | |
#6 283.6 libXxf86dga x86_64 1.1.5-10.fc38 fedora 20 k | |
#6 283.6 libXxf86vm x86_64 1.1.5-2.fc38 fedora 18 k | |
#6 283.6 libaom x86_64 3.8.0-1.fc38 updates 1.8 M | |
#6 283.6 libargon2 x86_64 20190702-2.fc38 fedora 28 k | |
#6 283.6 libavif x86_64 0.11.1-7.fc38 fedora 84 k | |
#6 283.6 libcaca x86_64 0.99-0.69.beta20.fc38 updates 225 k | |
#6 283.6 libcbor x86_64 0.7.0-9.fc38 fedora 56 k | |
#6 283.6 libdatrie x86_64 0.2.13-5.fc38 fedora 32 k | |
#6 283.6 libdav1d x86_64 1.2.1-1.fc38 updates 618 k | |
#6 283.6 libdrm x86_64 2.4.120-1.fc38 updates 157 k | |
#6 283.6 libedit x86_64 3.1-45.20221030cvs.fc38 fedora 107 k | |
#6 283.6 libfdisk x86_64 2.38.1-4.fc38 fedora 161 k | |
#6 283.6 libfido2 x86_64 1.12.0-3.fc38 fedora 97 k | |
#6 283.6 libfontenc x86_64 1.1.6-2.fc38 fedora 32 k | |
#6 283.6 libglvnd x86_64 1:1.6.0-2.fc38 fedora 134 k | |
#6 283.6 libglvnd-glx x86_64 1:1.6.0-2.fc38 fedora 142 k | |
#6 283.6 libglvnd-opengl x86_64 1:1.6.0-2.fc38 fedora 43 k | |
#6 283.6 libgs x86_64 10.02.1-2.fc38 updates 3.4 M | |
#6 283.6 libheif x86_64 1.17.5-1.fc38 updates 351 k | |
#6 283.6 libijs x86_64 0.35-17.fc38 fedora 29 k | |
#6 283.6 libimagequant x86_64 2.17.0-4.fc38 fedora 63 k | |
#6 283.6 libjpeg-turbo x86_64 2.1.4-2.fc38 fedora 183 k | |
#6 283.6 libjxl x86_64 1:0.7.0-6.fc38 fedora 1.0 M | |
#6 283.6 libkcapi x86_64 1.4.0-5.fc38 fedora 46 k | |
#6 283.6 libkcapi-hmaccalc x86_64 1.4.0-5.fc38 fedora 24 k | |
#6 283.6 liblerc x86_64 4.0.0-3.fc38 fedora 202 k | |
#6 283.6 liblqr-1 x86_64 0.4.2-21.fc38 fedora 49 k | |
#6 283.6 libmaxminddb x86_64 1.9.1-1.fc38 updates 42 k | |
#6 283.6 libmpc x86_64 1.3.1-2.fc38 fedora 70 k | |
#6 283.6 libpaper x86_64 1:2.0.8-1.fc38 fedora 26 k | |
#6 283.6 libpciaccess x86_64 0.16-8.fc38 fedora 26 k | |
#6 283.6 libpng x86_64 2:1.6.37-14.fc38 fedora 120 k | |
#6 283.6 libraqm x86_64 0.8.0-4.fc38 fedora 20 k | |
#6 283.6 librsvg2 x86_64 2.56.4-1.fc38 updates 1.6 M | |
#6 283.6 libseccomp x86_64 2.5.3-4.fc38 fedora 71 k | |
#6 283.6 libthai x86_64 0.1.29-4.fc38 fedora 213 k | |
#6 283.6 libtiff x86_64 4.4.0-8.fc38 updates 201 k | |
#6 283.6 libtool-ltdl x86_64 2.4.7-6.fc38 fedora 37 k | |
#6 283.6 libutempter x86_64 1.2.1-8.fc38 fedora 26 k | |
#6 283.6 libuv x86_64 1:1.47.0-3.fc38 updates 250 k | |
#6 283.6 libvmaf x86_64 2.3.0-5.fc38 fedora 180 k | |
#6 283.6 libwebp x86_64 1.3.2-2.fc38 updates 284 k | |
#6 283.6 libwmf-lite x86_64 0.2.12-10.fc38 fedora 73 k | |
#6 283.6 libxcb x86_64 1.13.1-11.fc38 fedora 231 k | |
#6 283.6 libxshmfence x86_64 1.3-12.fc38 fedora 12 k | |
#6 283.6 libzip x86_64 1.9.2-3.fc38 fedora 65 k | |
#6 283.6 llvm-libs x86_64 16.0.6-3.fc38 updates 27 M | |
#6 283.6 lm_sensors-libs x86_64 3.6.0-13.fc38 fedora 41 k | |
#6 283.6 lmdb-libs x86_64 0.9.31-1.fc38 updates 60 k | |
#6 283.6 mesa-filesystem x86_64 23.1.9-1.fc38 updates 17 k | |
#6 283.6 mesa-libGL x86_64 23.1.9-1.fc38 updates 173 k | |
#6 283.6 mesa-libGLU x86_64 9.0.3-1.fc38 updates 160 k | |
#6 283.6 mesa-libglapi x86_64 23.1.9-1.fc38 updates 53 k | |
#6 283.6 mkfontscale x86_64 1.2.2-3.fc38 fedora 32 k | |
#6 283.6 ncurses x86_64 6.4-7.20230520.fc38 updates 415 k | |
#6 283.6 netpbm x86_64 11.02.00-1.fc38 fedora 185 k | |
#6 283.6 nspr x86_64 4.35.0-14.fc38 updates 137 k | |
#6 283.6 nss x86_64 3.96.1-1.fc38 updates 696 k | |
#6 283.6 nss-softokn x86_64 3.96.1-1.fc38 updates 414 k | |
#6 283.6 nss-softokn-freebl x86_64 3.96.1-1.fc38 updates 351 k | |
#6 283.6 nss-sysinit x86_64 3.96.1-1.fc38 updates 18 k | |
#6 283.6 nss-util x86_64 3.96.1-1.fc38 updates 87 k | |
#6 283.6 openexr-libs x86_64 3.1.10-1.fc38 updates 1.1 M | |
#6 283.6 openjpeg2 x86_64 2.5.0-5.fc38 updates 178 k | |
#6 283.6 openssh x86_64 9.0p1-18.fc38 updates 435 k | |
#6 283.6 openssh-clients x86_64 9.0p1-18.fc38 updates 701 k | |
#6 283.6 os-prober x86_64 1.81-3.fc38 fedora 50 k | |
#6 283.6 pango x86_64 1.50.14-1.fc38 fedora 342 k | |
#6 283.6 pciutils x86_64 3.9.0-3.fc38 fedora 97 k | |
#6 283.6 pciutils-libs x86_64 3.9.0-3.fc38 fedora 44 k | |
#6 283.6 perl-AutoLoader noarch 5.74-498.fc38 updates 22 k | |
#6 283.6 perl-B x86_64 1.83-498.fc38 updates 182 k | |
#6 283.6 perl-Carp noarch 1.52-490.fc38 fedora 29 k | |
#6 283.6 perl-Class-Struct noarch 0.66-498.fc38 updates 23 k | |
#6 283.6 perl-Data-Dumper x86_64 2.184-491.fc38 fedora 56 k | |
#6 283.6 perl-Digest noarch 1.20-490.fc38 fedora 25 k | |
#6 283.6 perl-Digest-MD5 x86_64 2.58-490.fc38 fedora 36 k | |
#6 283.6 perl-DynaLoader x86_64 1.52-498.fc38 updates 27 k | |
#6 283.6 perl-Encode x86_64 4:3.19-493.fc38 fedora 1.7 M | |
#6 283.6 perl-Errno x86_64 1.36-498.fc38 updates 15 k | |
#6 283.6 perl-Error noarch 1:0.17029-11.fc38 fedora 40 k | |
#6 283.6 perl-Exporter noarch 5.77-490.fc38 fedora 31 k | |
#6 283.6 perl-Fcntl x86_64 1.15-498.fc38 updates 21 k | |
#6 283.6 perl-File-Basename noarch 2.85-498.fc38 updates 18 k | |
#6 283.6 perl-File-Find noarch 1.40-498.fc38 updates 26 k | |
#6 283.6 perl-File-Path noarch 2.18-490.fc38 fedora 35 k | |
#6 283.6 perl-File-Temp noarch 1:0.231.100-490.fc38 fedora 59 k | |
#6 283.6 perl-File-stat noarch 1.12-498.fc38 updates 18 k | |
#6 283.6 perl-FileHandle noarch 2.03-498.fc38 updates 16 k | |
#6 283.6 perl-Getopt-Long noarch 1:2.54-2.fc38 fedora 60 k | |
#6 283.6 perl-Getopt-Std noarch 1.13-498.fc38 updates 16 k | |
#6 283.6 perl-Git noarch 2.43.0-1.fc38 updates 40 k | |
#6 283.6 perl-HTTP-Tiny noarch 0.086-2.fc38 updates 55 k | |
#6 283.6 perl-IO x86_64 1.50-498.fc38 updates 92 k | |
#6 283.6 perl-IO-Socket-IP noarch 0.41-492.fc38 fedora 41 k | |
#6 283.6 perl-IO-Socket-SSL noarch 2.081-1.fc38 fedora 227 k | |
#6 283.6 perl-IPC-Open3 noarch 1.22-498.fc38 updates 23 k | |
#6 283.6 perl-MIME-Base64 x86_64 3.16-490.fc38 fedora 30 k | |
#6 283.6 perl-Mozilla-CA noarch 20221114-2.fc38 fedora 12 k | |
#6 283.6 perl-NKF x86_64 1:2.1.4-28.fc38 fedora 144 k | |
#6 283.6 perl-Net-SSLeay x86_64 1.92-5.fc38 fedora 361 k | |
#6 283.6 perl-POSIX x86_64 2.03-498.fc38 updates 98 k | |
#6 283.6 perl-PathTools x86_64 3.84-490.fc38 fedora 87 k | |
#6 283.6 perl-Pod-Escapes noarch 1:1.07-490.fc38 fedora 20 k | |
#6 283.6 perl-Pod-Perldoc noarch 3.28.01-491.fc38 fedora 86 k | |
#6 283.6 perl-Pod-Simple noarch 1:3.43-491.fc38 fedora 219 k | |
#6 283.6 perl-Pod-Usage noarch 4:2.03-4.fc38 fedora 40 k | |
#6 283.6 perl-Scalar-List-Utils x86_64 5:1.63-490.fc38 fedora 72 k | |
#6 283.6 perl-SelectSaver noarch 1.02-498.fc38 updates 12 k | |
#6 283.6 perl-Socket x86_64 4:2.036-2.fc38 fedora 55 k | |
#6 283.6 perl-Storable x86_64 1:3.26-490.fc38 fedora 97 k | |
#6 283.6 perl-Symbol noarch 1.09-498.fc38 updates 15 k | |
#6 283.6 perl-Term-ANSIColor noarch 5.01-491.fc38 fedora 47 k | |
#6 283.6 perl-Term-Cap noarch 1.18-1.fc38 fedora 22 k | |
#6 283.6 perl-TermReadKey x86_64 2.38-16.fc38 fedora 35 k | |
#6 283.6 perl-Text-ParseWords noarch 3.31-490.fc38 fedora 16 k | |
#6 283.6 perl-Text-Tabs+Wrap noarch 2023.0511-1.fc38 updates 22 k | |
#6 283.6 perl-Time-Local noarch 2:1.300-490.fc38 fedora 33 k | |
#6 283.6 perl-URI noarch 5.17-2.fc38 fedora 120 k | |
#6 283.6 perl-base noarch 2.27-498.fc38 updates 17 k | |
#6 283.6 perl-constant noarch 1.33-491.fc38 fedora 23 k | |
#6 283.6 perl-if noarch 0.61.000-498.fc38 updates 15 k | |
#6 283.6 perl-interpreter x86_64 4:5.36.3-498.fc38 updates 73 k | |
#6 283.6 perl-lib x86_64 0.65-498.fc38 updates 15 k | |
#6 283.6 perl-libnet noarch 3.15-1.fc38 fedora 128 k | |
#6 283.6 perl-libs x86_64 4:5.36.3-498.fc38 updates 2.2 M | |
#6 283.6 perl-locale noarch 1.10-498.fc38 updates 14 k | |
#6 283.6 perl-mro x86_64 1.26-498.fc38 updates 29 k | |
#6 283.6 perl-overload noarch 1.35-498.fc38 updates 46 k | |
#6 283.6 perl-overloading noarch 0.02-498.fc38 updates 13 k | |
#6 283.6 perl-parent noarch 1:0.241-1.fc38 fedora 15 k | |
#6 283.6 perl-podlators noarch 1:5.01-2.fc38 fedora 125 k | |
#6 283.6 perl-vars noarch 1.05-498.fc38 updates 14 k | |
#6 283.6 pixman x86_64 0.42.2-1.fc38 fedora 285 k | |
#6 283.6 poppler x86_64 23.02.0-3.fc38 updates 1.2 M | |
#6 283.6 poppler-data noarch 0.4.11-4.fc38 fedora 2.0 M | |
#6 283.6 poppler-glib x86_64 23.02.0-3.fc38 updates 175 k | |
#6 283.6 procps-ng x86_64 3.3.17-11.fc38 updates 338 k | |
#6 283.6 protobuf-c x86_64 1.4.1-4.fc38 fedora 39 k | |
#6 283.6 rav1e-libs x86_64 0.6.6-4.fc38 updates 1.0 M | |
#6 283.6 shared-mime-info x86_64 2.2-3.fc38 fedora 381 k | |
#6 283.6 slang x86_64 2.3.3-3.fc38 fedora 432 k | |
#6 283.6 svt-av1-libs x86_64 1.4.1-2.fc38 fedora 2.0 M | |
#6 283.6 systemd x86_64 253.15-2.fc38 updates 4.5 M | |
#6 283.6 systemd-pam x86_64 253.15-2.fc38 updates 337 k | |
#6 283.6 systemd-udev x86_64 253.15-2.fc38 updates 2.1 M | |
#6 283.6 urw-base35-bookman-fonts noarch 20200910-16.fc38 fedora 848 k | |
#6 283.6 urw-base35-c059-fonts noarch 20200910-16.fc38 fedora 875 k | |
#6 283.6 urw-base35-d050000l-fonts noarch 20200910-16.fc38 fedora 76 k | |
#6 283.6 urw-base35-fonts noarch 20200910-16.fc38 fedora 11 k | |
#6 283.6 urw-base35-fonts-common noarch 20200910-16.fc38 fedora 21 k | |
#6 283.6 urw-base35-gothic-fonts noarch 20200910-16.fc38 fedora 643 k | |
#6 283.6 urw-base35-nimbus-mono-ps-fonts noarch 20200910-16.fc38 fedora 796 k | |
#6 283.6 urw-base35-nimbus-roman-fonts noarch 20200910-16.fc38 fedora 857 k | |
#6 283.6 urw-base35-nimbus-sans-fonts noarch 20200910-16.fc38 fedora 1.3 M | |
#6 283.6 urw-base35-p052-fonts noarch 20200910-16.fc38 fedora 974 k | |
#6 283.6 urw-base35-standard-symbols-ps-fonts noarch 20200910-16.fc38 fedora 42 k | |
#6 283.6 urw-base35-z003-fonts noarch 20200910-16.fc38 fedora 276 k | |
#6 283.6 util-linux x86_64 2.38.1-4.fc38 fedora 2.3 M | |
#6 283.6 w3m x86_64 0.5.3-60.git20230121.fc38 fedora 1.1 M | |
#6 283.6 xkeyboard-config noarch 2.38-1.fc38 fedora 963 k | |
#6 283.6 xml-common noarch 0.6.3-60.fc38 fedora 31 k | |
#6 283.6 xorg-x11-fonts-ISO8859-1-100dpi noarch 7.5-35.fc38 fedora 1.1 M | |
#6 283.6 xz x86_64 5.4.1-1.fc38 fedora 419 k | |
#6 283.6 Installing weak dependencies: | |
#6 283.6 ImageMagick x86_64 1:7.1.1.26-2.fc38 updates 81 k | |
#6 283.6 caca-utils x86_64 0.99-0.69.beta20.fc38 updates 98 k | |
#6 283.6 cpp x86_64 13.2.1-4.fc38 updates 11 M | |
#6 283.6 diffutils x86_64 3.10-1.fc38 updates 398 k | |
#6 283.6 grubby x86_64 8.40-70.fc38 updates 26 k | |
#6 283.6 jxl-pixbuf-loader x86_64 1:0.7.0-6.fc38 fedora 56 k | |
#6 283.6 kpartx x86_64 0.9.4-2.fc38 fedora 49 k | |
#6 283.6 libxkbcommon x86_64 1.5.0-2.fc38 fedora 140 k | |
#6 283.6 memstrack x86_64 0.2.5-1.fc38 fedora 50 k | |
#6 283.6 mesa-dri-drivers x86_64 23.1.9-1.fc38 updates 19 M | |
#6 283.6 mesa-va-drivers x86_64 23.1.9-1.fc38 updates 3.4 M | |
#6 283.6 open-sans-fonts noarch 1.10-18.fc38 fedora 471 k | |
#6 283.6 perl-NDBM_File x86_64 1.15-498.fc38 updates 23 k | |
#6 283.6 pigz x86_64 2.7-3.fc38 fedora 83 k | |
#6 283.6 qrencode-libs x86_64 4.1.1-4.fc38 fedora 61 k | |
#6 283.6 systemd-networkd x86_64 253.15-2.fc38 updates 631 k | |
#6 283.6 systemd-resolved x86_64 253.15-2.fc38 updates 288 k | |
#6 283.6 tpm2-tools x86_64 5.5-3.fc38 updates 795 k | |
#6 283.6 w3m-img x86_64 0.5.3-60.git20230121.fc38 fedora 23 k | |
#6 283.6 xdpyinfo x86_64 1.3.3-3.fc38 fedora 26 k | |
#6 283.6 xprop x86_64 1.2.5-3.fc38 fedora 35 k | |
#6 283.6 xrandr x86_64 1.5.2-2.fc38 fedora 46 k | |
#6 283.6 xrdb x86_64 1.2.1-5.fc38 fedora 30 k | |
#6 283.6 xwininfo x86_64 1.1.5-6.fc38 fedora 32 k | |
#6 283.6 | |
#6 283.6 Transaction Summary | |
#6 283.6 =============================================================================================== | |
#6 283.6 Install 285 Packages | |
#6 283.6 | |
#6 283.6 Total download size: 164 M | |
#6 283.6 Installed size: 645 M | |
#6 283.6 Downloading Packages: | |
#6 286.2 (1/285): catimg-2.7.0-8.fc38.x86_64.rpm 131 kB/s | 55 kB 00:00 | |
#6 286.7 (2/285): adobe-mappings-pdf-20190401-3.fc38.noa 783 kB/s | 698 kB 00:00 | |
#6 286.7 (3/285): cpio-2.13-14.fc38.x86_64.rpm 299 kB/s | 276 kB 00:00 | |
#6 286.7 (4/285): crypto-policies-scripts-20230301-1.git 218 kB/s | 116 kB 00:00 | |
#6 287.1 (5/285): cryptsetup-libs-2.6.1-1.fc38.x86_64.rp 1.3 MB/s | 492 kB 00:00 | |
#6 287.1 (6/285): dbus-broker-33-1.fc38.x86_64.rpm 495 kB/s | 173 kB 00:00 | |
#6 287.1 (7/285): device-mapper-1.02.189-2.fc38.x86_64.r 372 kB/s | 139 kB 00:00 | |
#6 287.2 (8/285): device-mapper-libs-1.02.189-2.fc38.x86 936 kB/s | 176 kB 00:00 | |
#6 287.4 (9/285): figlet-2.2.5-25.20151018gita565ae1.fc3 489 kB/s | 137 kB 00:00 | |
#6 287.4 (10/285): file-5.44-3.fc38.x86_64.rpm 170 kB/s | 49 kB 00:00 | |
#6 287.7 (11/285): fontconfig-2.14.2-1.fc38.x86_64.rpm 733 kB/s | 295 kB 00:00 | |
#6 287.7 (12/285): fonts-filesystem-2.0.5-11.fc38.noarch 27 kB/s | 8.1 kB 00:00 | |
#6 287.8 (13/285): freeglut-3.4.0-2.fc38.x86_64.rpm 406 kB/s | 154 kB 00:00 | |
#6 287.9 (14/285): freetype-2.13.0-2.fc38.x86_64.rpm 1.6 MB/s | 414 kB 00:00 | |
#6 288.0 (15/285): fribidi-1.0.12-3.fc38.x86_64.rpm 318 kB/s | 89 kB 00:00 | |
#6 288.0 (16/285): fstrm-0.6.1-6.fc38.x86_64.rpm 145 kB/s | 28 kB 00:00 | |
#6 288.2 (17/285): fuse-libs-2.9.9-16.fc38.x86_64.rpm 364 kB/s | 97 kB 00:00 | |
#6 288.2 (18/285): gc-8.2.2-3.fc38.x86_64.rpm 411 kB/s | 110 kB 00:00 | |
#6 288.3 (19/285): gd-2.3.3-10.fc38.x86_64.rpm 499 kB/s | 140 kB 00:00 | |
#6 288.7 (20/285): gdk-pixbuf2-2.42.10-2.fc38.x86_64.rpm 1.1 MB/s | 485 kB 00:00 | |
#6 288.7 (21/285): gdk-pixbuf2-xlib-2.40.2-6.fc38.x86_64 126 kB/s | 57 kB 00:00 | |
#6 288.7 (22/285): gettext-envsubst-0.21.1-2.fc38.x86_64 83 kB/s | 36 kB 00:00 | |
#6 289.0 (23/285): gettext-libs-0.21.1-2.fc38.x86_64.rpm 898 kB/s | 320 kB 00:00 | |
#6 289.0 (24/285): gettext-runtime-0.21.1-2.fc38.x86_64. 350 kB/s | 117 kB 00:00 | |
#6 289.1 (25/285): gpm-libs-1.20.7-42.fc38.x86_64.rpm 57 kB/s | 20 kB 00:00 | |
#6 289.2 (26/285): graphite2-1.3.14-11.fc38.x86_64.rpm 603 kB/s | 95 kB 00:00 | |
#6 289.7 (27/285): groff-base-1.22.4-11.fc38.x86_64.rpm 1.6 MB/s | 1.1 MB 00:00 | |
#6 289.8 (28/285): gts-0.7.6-44.20121130.fc38.x86_64.rpm 343 kB/s | 240 kB 00:00 | |
#6 290.1 (29/285): harfbuzz-7.1.0-1.fc38.x86_64.rpm 971 kB/s | 889 kB 00:00 | |
#6 290.2 (30/285): imlib2-1.7.4-4.fc38.x86_64.rpm 552 kB/s | 236 kB 00:00 | |
#6 290.2 (31/285): jasper-libs-3.0.6-2.fc38.x86_64.rpm 389 kB/s | 163 kB 00:00 | |
#6 290.2 (32/285): jbig2dec-libs-0.19-8.fc38.x86_64.rpm 499 kB/s | 73 kB 00:00 | |
#6 290.3 (33/285): jbigkit-libs-2.1-25.fc38.x86_64.rpm 367 kB/s | 53 kB 00:00 | |
#6 290.4 (34/285): jemalloc-5.3.0-3.fc38.x86_64.rpm 1.0 MB/s | 232 kB 00:00 | |
#6 290.4 (35/285): jxl-pixbuf-loader-0.7.0-6.fc38.x86_64 291 kB/s | 56 kB 00:00 | |
#6 290.7 (36/285): kbd-2.5.1-5.fc38.x86_64.rpm 1.2 MB/s | 428 kB 00:00 | |
#6 290.9 (37/285): kbd-legacy-2.5.1-5.fc38.noarch.rpm 1.2 MB/s | 550 kB 00:00 | |
#6 291.4 (38/285): kbd-misc-2.5.1-5.fc38.noarch.rpm 1.6 MB/s | 1.6 MB 00:00 | |
#6 291.5 (39/285): kmod-30-4.fc38.x86_64.rpm 153 kB/s | 120 kB 00:00 | |
#6 291.5 (40/285): kmod-libs-30-4.fc38.x86_64.rpm 108 kB/s | 68 kB 00:00 | |
#6 291.6 (41/285): kpartx-0.9.4-2.fc38.x86_64.rpm 374 kB/s | 49 kB 00:00 | |
#6 291.6 (42/285): lasi-1.1.3-10.fc38.x86_64.rpm 398 kB/s | 53 kB 00:00 | |
#6 291.7 (43/285): lcms2-2.15-1.fc38.x86_64.rpm 832 kB/s | 178 kB 00:00 | |
#6 291.7 (44/285): libICE-1.0.10-10.fc38.x86_64.rpm 440 kB/s | 71 kB 00:00 | |
#6 291.8 (45/285): libSM-1.2.3-12.fc38.x86_64.rpm 332 kB/s | 41 kB 00:00 | |
#6 291.8 (46/285): libXau-1.0.11-2.fc38.x86_64.rpm 254 kB/s | 32 kB 00:00 | |
#6 291.9 (47/285): libXcomposite-0.4.5-9.fc38.x86_64.rpm 174 kB/s | 23 kB 00:00 | |
#6 291.9 (48/285): libXext-1.3.5-2.fc38.x86_64.rpm 288 kB/s | 39 kB 00:00 | |
#6 292.0 (49/285): libXfixes-6.0.0-5.fc38.x86_64.rpm 129 kB/s | 19 kB 00:00 | |
#6 292.0 (50/285): libXinerama-1.1.5-2.fc38.x86_64.rpm 106 kB/s | 14 kB 00:00 | |
#6 292.1 (51/285): libXmu-1.1.4-2.fc38.x86_64.rpm 487 kB/s | 77 kB 00:00 | |
#6 292.1 (52/285): libXrandr-1.5.2-10.fc38.x86_64.rpm 222 kB/s | 27 kB 00:00 | |
#6 292.1 (53/285): libXrender-0.9.11-2.fc38.x86_64.rpm 202 kB/s | 27 kB 00:00 | |
#6 292.3 (54/285): libXt-1.2.1-4.fc38.x86_64.rpm 876 kB/s | 179 kB 00:00 | |
#6 292.3 (55/285): libXtst-1.2.4-2.fc38.x86_64.rpm 119 kB/s | 20 kB 00:00 | |
#6 292.3 (56/285): libXxf86dga-1.1.5-10.fc38.x86_64.rpm 126 kB/s | 20 kB 00:00 | |
#6 292.4 (57/285): libXxf86vm-1.1.5-2.fc38.x86_64.rpm 132 kB/s | 18 kB 00:00 | |
#6 292.4 (58/285): libargon2-20190702-2.fc38.x86_64.rpm 254 kB/s | 28 kB 00:00 | |
#6 292.4 (59/285): libavif-0.11.1-7.fc38.x86_64.rpm 620 kB/s | 84 kB 00:00 | |
#6 292.5 (60/285): libcbor-0.7.0-9.fc38.x86_64.rpm 413 kB/s | 56 kB 00:00 | |
#6 292.7 (61/285): libdatrie-0.2.13-5.fc38.x86_64.rpm 124 kB/s | 32 kB 00:00 | |
#6 292.7 (62/285): libedit-3.1-45.20221030cvs.fc38.x86_6 412 kB/s | 107 kB 00:00 | |
#6 292.7 (63/285): libfdisk-2.38.1-4.fc38.x86_64.rpm 786 kB/s | 161 kB 00:00 | |
#6 292.9 (64/285): libfido2-1.12.0-3.fc38.x86_64.rpm 627 kB/s | 97 kB 00:00 | |
#6 292.9 (65/285): libfontenc-1.1.6-2.fc38.x86_64.rpm 179 kB/s | 32 kB 00:00 | |
#6 292.9 (66/285): libglvnd-1.6.0-2.fc38.x86_64.rpm 696 kB/s | 134 kB 00:00 | |
#6 293.0 (67/285): libglvnd-glx-1.6.0-2.fc38.x86_64.rpm 1.0 MB/s | 142 kB 00:00 | |
#6 293.0 (68/285): libglvnd-opengl-1.6.0-2.fc38.x86_64.r 312 kB/s | 43 kB 00:00 | |
#6 293.1 (69/285): libijs-0.35-17.fc38.x86_64.rpm 253 kB/s | 29 kB 00:00 | |
#6 293.2 (70/285): libimagequant-2.17.0-4.fc38.x86_64.rp 370 kB/s | 63 kB 00:00 | |
#6 293.3 (71/285): libjpeg-turbo-2.1.4-2.fc38.x86_64.rpm 770 kB/s | 183 kB 00:00 | |
#6 293.7 (72/285): libjxl-0.7.0-6.fc38.x86_64.rpm 1.5 MB/s | 1.0 MB 00:00 | |
#6 293.8 (73/285): libkcapi-1.4.0-5.fc38.x86_64.rpm 80 kB/s | 46 kB 00:00 | |
#6 293.8 (74/285): libkcapi-hmaccalc-1.4.0-5.fc38.x86_64 48 kB/s | 24 kB 00:00 | |
#6 294.1 (75/285): liblerc-4.0.0-3.fc38.x86_64.rpm 565 kB/s | 202 kB 00:00 | |
#6 294.1 (76/285): liblqr-1-0.4.2-21.fc38.x86_64.rpm 145 kB/s | 49 kB 00:00 | |
#6 294.1 (77/285): libmpc-1.3.1-2.fc38.x86_64.rpm 197 kB/s | 70 kB 00:00 | |
#6 294.2 (78/285): libpaper-2.0.8-1.fc38.x86_64.rpm 213 kB/s | 26 kB 00:00 | |
#6 294.3 (79/285): libpciaccess-0.16-8.fc38.x86_64.rpm 198 kB/s | 26 kB 00:00 | |
#6 294.4 (80/285): libpng-1.6.37-14.fc38.x86_64.rpm 507 kB/s | 120 kB 00:00 | |
#6 294.4 (81/285): libraqm-0.8.0-4.fc38.x86_64.rpm 111 kB/s | 20 kB 00:00 | |
#6 294.4 (82/285): libseccomp-2.5.3-4.fc38.x86_64.rpm 481 kB/s | 71 kB 00:00 | |
#6 294.7 (83/285): libthai-0.1.29-4.fc38.x86_64.rpm 733 kB/s | 213 kB 00:00 | |
#6 294.7 (84/285): libtool-ltdl-2.4.7-6.fc38.x86_64.rpm 126 kB/s | 37 kB 00:00 | |
#6 294.7 (85/285): libutempter-1.2.1-8.fc38.x86_64.rpm 89 kB/s | 26 kB 00:00 | |
#6 295.0 (86/285): libvmaf-2.3.0-5.fc38.x86_64.rpm 646 kB/s | 180 kB 00:00 | |
#6 295.0 (87/285): libwmf-lite-0.2.12-10.fc38.x86_64.rpm 281 kB/s | 73 kB 00:00 | |
#6 295.0 (88/285): libxcb-1.13.1-11.fc38.x86_64.rpm 784 kB/s | 231 kB 00:00 | |
#6 295.1 (89/285): libxkbcommon-1.5.0-2.fc38.x86_64.rpm 829 kB/s | 140 kB 00:00 | |
#6 295.1 (90/285): libxshmfence-1.3-12.fc38.x86_64.rpm 69 kB/s | 12 kB 00:00 | |
#6 295.4 (91/285): libzip-1.9.2-3.fc38.x86_64.rpm 176 kB/s | 65 kB 00:00 | |
#6 295.4 (92/285): lolcat-1.4-1.fc38.x86_64.rpm 80 kB/s | 20 kB 00:00 | |
#6 295.4 (93/285): lm_sensors-libs-3.6.0-13.fc38.x86_64. 136 kB/s | 41 kB 00:00 | |
#6 295.5 (94/285): memstrack-0.2.5-1.fc38.x86_64.rpm 374 kB/s | 50 kB 00:00 | |
#6 295.6 (95/285): mkfontscale-1.2.2-3.fc38.x86_64.rpm 207 kB/s | 32 kB 00:00 | |
#6 295.6 (96/285): neofetch-7.1.0-9.fc38.noarch.rpm 491 kB/s | 89 kB 00:00 | |
#6 295.8 (97/285): netpbm-11.02.00-1.fc38.x86_64.rpm 860 kB/s | 185 kB 00:00 | |
#6 296.0 (98/285): open-sans-fonts-1.10-18.fc38.noarch.r 1.1 MB/s | 471 kB 00:00 | |
#6 296.0 (99/285): os-prober-1.81-3.fc38.x86_64.rpm 124 kB/s | 50 kB 00:00 | |
#6 296.1 (100/285): pango-1.50.14-1.fc38.x86_64.rpm 1.1 MB/s | 342 kB 00:00 | |
#6 296.3 (101/285): pciutils-3.9.0-3.fc38.x86_64.rpm 379 kB/s | 97 kB 00:00 | |
#6 296.3 (102/285): pciutils-libs-3.9.0-3.fc38.x86_64.rp 170 kB/s | 44 kB 00:00 | |
#6 296.3 (103/285): perl-Carp-1.52-490.fc38.noarch.rpm 122 kB/s | 29 kB 00:00 | |
#6 296.6 (104/285): perl-Data-Dumper-2.184-491.fc38.x86_ 158 kB/s | 56 kB 00:00 | |
#6 296.6 (105/285): perl-Digest-MD5-2.58-490.fc38.x86_64 107 kB/s | 36 kB 00:00 | |
#6 296.7 (106/285): perl-Digest-1.20-490.fc38.noarch.rpm 69 kB/s | 25 kB 00:00 | |
#6 297.5 (107/285): perl-Encode-3.19-493.fc38.x86_64.rpm 1.9 MB/s | 1.7 MB 00:00 | |
#6 297.6 (108/285): perl-Error-0.17029-11.fc38.noarch.rp 44 kB/s | 40 kB 00:00 | |
#6 297.6 (109/285): perl-Exporter-5.77-490.fc38.noarch.r 34 kB/s | 31 kB 00:00 | |
#6 297.7 (110/285): perl-File-Path-2.18-490.fc38.noarch. 309 kB/s | 35 kB 00:00 | |
#6 297.9 (111/285): perl-File-Temp-0.231.100-490.fc38.no 219 kB/s | 59 kB 00:00 | |
#6 297.9 (112/285): perl-Getopt-Long-2.54-2.fc38.noarch. 206 kB/s | 60 kB 00:00 | |
#6 297.9 (113/285): perl-IO-Socket-IP-0.41-492.fc38.noar 168 kB/s | 41 kB 00:00 | |
#6 298.2 (114/285): perl-IO-Socket-SSL-2.081-1.fc38.noar 704 kB/s | 227 kB 00:00 | |
#6 298.2 (115/285): perl-MIME-Base64-3.16-490.fc38.x86_6 86 kB/s | 30 kB 00:00 | |
#6 298.3 (116/285): perl-Mozilla-CA-20221114-2.fc38.noar 34 kB/s | 12 kB 00:00 | |
#6 298.4 (117/285): perl-NKF-2.1.4-28.fc38.x86_64.rpm 677 kB/s | 144 kB 00:00 | |
#6 298.6 (118/285): perl-Net-SSLeay-1.92-5.fc38.x86_64.r 1.2 MB/s | 361 kB 00:00 | |
#6 298.6 (119/285): perl-PathTools-3.84-490.fc38.x86_64. 256 kB/s | 87 kB 00:00 | |
#6 298.6 (120/285): perl-Pod-Escapes-1.07-490.fc38.noarc 102 kB/s | 20 kB 00:00 | |
#6 298.8 (121/285): perl-Pod-Perldoc-3.28.01-491.fc38.no 425 kB/s | 86 kB 00:00 | |
#6 298.9 (122/285): perl-Pod-Simple-3.43-491.fc38.noarch 813 kB/s | 219 kB 00:00 | |
#6 298.9 (123/285): perl-Pod-Usage-2.03-4.fc38.noarch.rp 141 kB/s | 40 kB 00:00 | |
#6 299.0 (124/285): perl-Scalar-List-Utils-1.63-490.fc38 381 kB/s | 72 kB 00:00 | |
#6 299.1 (125/285): perl-Socket-2.036-2.fc38.x86_64.rpm 325 kB/s | 55 kB 00:00 | |
#6 299.2 (126/285): perl-Storable-3.26-490.fc38.x86_64.r 391 kB/s | 97 kB 00:00 | |
#6 299.2 (127/285): perl-Term-ANSIColor-5.01-491.fc38.no 200 kB/s | 47 kB 00:00 | |
#6 299.2 (128/285): perl-Term-Cap-1.18-1.fc38.noarch.rpm 121 kB/s | 22 kB 00:00 | |
#6 299.3 (129/285): perl-TermReadKey-2.38-16.fc38.x86_64 244 kB/s | 35 kB 00:00 | |
#6 299.3 (130/285): perl-Text-ParseWords-3.31-490.fc38.n 132 kB/s | 16 kB 00:00 | |
#6 299.4 (131/285): perl-Time-Local-1.300-490.fc38.noarc 197 kB/s | 33 kB 00:00 | |
#6 299.5 (132/285): perl-URI-5.17-2.fc38.noarch.rpm 670 kB/s | 120 kB 00:00 | |
#6 299.5 (133/285): perl-constant-1.33-491.fc38.noarch.r 127 kB/s | 23 kB 00:00 | |
#6 299.6 (134/285): perl-libnet-3.15-1.fc38.noarch.rpm 568 kB/s | 128 kB 00:00 | |
#6 299.7 (135/285): perl-parent-0.241-1.fc38.noarch.rpm 92 kB/s | 15 kB 00:00 | |
#6 299.7 (136/285): perl-podlators-5.01-2.fc38.noarch.rp 555 kB/s | 125 kB 00:00 | |
#6 299.8 (137/285): pigz-2.7-3.fc38.x86_64.rpm 464 kB/s | 83 kB 00:00 | |
#6 300.0 (138/285): pixman-0.42.2-1.fc38.x86_64.rpm 844 kB/s | 285 kB 00:00 | |
#6 301.0 (139/285): poppler-data-0.4.11-4.fc38.noarch.rp 1.6 MB/s | 2.0 MB 00:01 | |
#6 301.1 (140/285): protobuf-c-1.4.1-4.fc38.x86_64.rpm 31 kB/s | 39 kB 00:01 | |
#6 301.1 (141/285): qrencode-libs-4.1.1-4.fc38.x86_64.rp 56 kB/s | 61 kB 00:01 | |
#6 301.4 (142/285): shared-mime-info-2.2-3.fc38.x86_64.r 1.0 MB/s | 381 kB 00:00 | |
#6 301.8 (143/285): slang-2.3.3-3.fc38.x86_64.rpm 604 kB/s | 432 kB 00:00 | |
#6 303.1 (144/285): svt-av1-libs-1.4.1-2.fc38.x86_64.rpm 1.0 MB/s | 2.0 MB 00:01 | |
#6 303.9 (145/285): toilet-0.3-14.fc38.x86_64.rpm 298 kB/s | 730 kB 00:02 | |
#6 304.2 (146/285): urw-base35-bookman-fonts-20200910-16 350 kB/s | 848 kB 00:02 | |
#6 304.7 (147/285): urw-base35-c059-fonts-20200910-16.fc 526 kB/s | 875 kB 00:01 | |
#6 304.7 (148/285): urw-base35-d050000l-fonts-20200910-1 87 kB/s | 76 kB 00:00 | |
#6 304.8 (149/285): urw-base35-fonts-20200910-16.fc38.no 20 kB/s | 11 kB 00:00 | |
#6 304.8 (150/285): urw-base35-fonts-common-20200910-16. 214 kB/s | 21 kB 00:00 | |
#6 305.3 (151/285): urw-base35-nimbus-mono-ps-fonts-2020 1.4 MB/s | 796 kB 00:00 | |
#6 305.7 (152/285): urw-base35-gothic-fonts-20200910-16. 715 kB/s | 643 kB 00:00 | |
#6 306.0 (153/285): urw-base35-nimbus-roman-fonts-202009 710 kB/s | 857 kB 00:01 | |
#6 307.2 (154/285): urw-base35-nimbus-sans-fonts-2020091 733 kB/s | 1.3 MB 00:01 | |
#6 307.7 (155/285): urw-base35-p052-fonts-20200910-16.fc 484 kB/s | 974 kB 00:02 | |
#6 307.7 (156/285): urw-base35-standard-symbols-ps-fonts 25 kB/s | 42 kB 00:01 | |
#6 307.9 (157/285): urw-base35-z003-fonts-20200910-16.fc 376 kB/s | 276 kB 00:00 | |
#6 310.1 (158/285): util-linux-2.38.1-4.fc38.x86_64.rpm 979 kB/s | 2.3 MB 00:02 | |
#6 310.2 (159/285): w3m-img-0.5.3-60.git20230121.fc38.x8 10 kB/s | 23 kB 00:02 | |
#6 311.1 (160/285): w3m-0.5.3-60.git20230121.fc38.x86_64 342 kB/s | 1.1 MB 00:03 | |
#6 311.1 (161/285): xdpyinfo-1.3.3-3.fc38.x86_64.rpm 27 kB/s | 26 kB 00:00 | |
#6 311.5 (162/285): xkeyboard-config-2.38-1.fc38.noarch. 691 kB/s | 963 kB 00:01 | |
#6 311.6 (163/285): xml-common-0.6.3-60.fc38.noarch.rpm 66 kB/s | 31 kB 00:00 | |
#6 312.2 (164/285): xorg-x11-fonts-ISO8859-1-100dpi-7.5- 1.0 MB/s | 1.1 MB 00:01 | |
#6 312.2 (165/285): xprop-1.2.5-3.fc38.x86_64.rpm 54 kB/s | 35 kB 00:00 | |
#6 312.2 (166/285): xrandr-1.5.2-2.fc38.x86_64.rpm 71 kB/s | 46 kB 00:00 | |
#6 312.3 (167/285): xrdb-1.2.1-5.fc38.x86_64.rpm 294 kB/s | 30 kB 00:00 | |
#6 312.4 (168/285): xwininfo-1.1.5-6.fc38.x86_64.rpm 264 kB/s | 32 kB 00:00 | |
#6 312.6 (169/285): xz-5.4.1-1.fc38.x86_64.rpm 1.1 MB/s | 419 kB 00:00 | |
#6 313.1 (170/285): ImageMagick-7.1.1.26-2.fc38.x86_64.r 97 kB/s | 81 kB 00:00 | |
#6 314.1 (171/285): LibRaw-0.21.2-2.fc38.x86_64.rpm 271 kB/s | 418 kB 00:01 | |
#6 314.9 (172/285): adobe-mappings-cmap-deprecated-20230 140 kB/s | 113 kB 00:00 | |
#6 315.1 (173/285): ImageMagick-libs-7.1.1.26-2.fc38.x86 960 kB/s | 2.6 MB 00:02 | |
#6 315.2 (174/285): avahi-libs-0.8-22.fc38.x86_64.rpm 323 kB/s | 66 kB 00:00 | |
#6 315.7 (175/285): adobe-mappings-cmap-20230622-1.fc38. 845 kB/s | 2.1 MB 00:02 | |
#6 315.7 (176/285): bind-license-9.18.20-1.fc38.noarch.r 25 kB/s | 14 kB 00:00 | |
#6 316.2 (177/285): bind-libs-9.18.20-1.fc38.x86_64.rpm 1.1 MB/s | 1.3 MB 00:01 | |
#6 316.4 (178/285): bind-utils-9.18.20-1.fc38.x86_64.rpm 321 kB/s | 224 kB 00:00 | |
#6 316.4 (179/285): caca-utils-0.99-0.69.beta20.fc38.x86 140 kB/s | 98 kB 00:00 | |
#6 316.8 (180/285): cairo-gobject-1.17.8-4.fc38.x86_64.r 47 kB/s | 18 kB 00:00 | |
#6 316.8 (181/285): cairo-1.17.8-4.fc38.x86_64.rpm 1.1 MB/s | 704 kB 00:00 | |
#6 316.9 (182/285): cowsay-3.7.0-10.fc38.noarch.rpm 116 kB/s | 51 kB 00:00 | |
#6 317.2 (183/285): cups-libs-2.4.7-5.fc38.x86_64.rpm 795 kB/s | 267 kB 00:00 | |
#6 317.2 (184/285): dbus-1.14.10-1.fc38.x86_64.rpm 24 kB/s | 8.0 kB 00:00 | |
#6 317.5 (185/285): dbus-common-1.14.10-1.fc38.noarch.rp 46 kB/s | 15 kB 00:00 | |
#6 317.7 (186/285): dbus-libs-1.14.10-1.fc38.x86_64.rpm 351 kB/s | 156 kB 00:00 | |
#6 318.0 (187/285): diffutils-3.10-1.fc38.x86_64.rpm 869 kB/s | 398 kB 00:00 | |
#6 318.7 (188/285): dracut-059-5.fc38.x86_64.rpm 411 kB/s | 427 kB 00:01 | |
#6 319.3 (189/285): giflib-5.2.1-17.fc38.x86_64.rpm 78 kB/s | 51 kB 00:00 | |
#6 319.4 (190/285): fftw-libs-double-3.3.10-10.fc38.x86_ 835 kB/s | 1.2 MB 00:01 | |
#6 319.9 (191/285): git-2.43.0-1.fc38.x86_64.rpm 97 kB/s | 53 kB 00:00 | |
#6 322.3 (192/285): git-core-doc-2.43.0-1.fc38.noarch.rp 1.2 MB/s | 2.9 MB 00:02 | |
#6 323.0 (193/285): glibc-langpack-ja-2.37-18.fc38.x86_6 454 kB/s | 354 kB 00:00 | |
#6 325.4 (194/285): glibc-locale-source-2.37-18.fc38.x86 1.8 MB/s | 4.2 MB 00:02 | |
#6 326.7 (195/285): cpp-13.2.1-4.fc38.x86_64.rpm 1.1 MB/s | 11 MB 00:09 | |
#6 327.0 (196/285): google-noto-fonts-common-20230201-2. 53 kB/s | 16 kB 00:00 | |
#6 327.1 (197/285): google-droid-sans-fonts-20200215-15. 1.6 MB/s | 2.7 MB 00:01 | |
#6 327.5 (198/285): google-noto-sans-vf-fonts-20230201-2 1.0 MB/s | 579 kB 00:00 | |
#6 328.5 (199/285): grub2-common-2.06-114.fc38.noarch.rp 994 kB/s | 921 kB 00:00 | |
#6 330.2 (200/285): grub2-tools-2.06-114.fc38.x86_64.rpm 1.1 MB/s | 1.8 MB 00:01 | |
#6 330.6 (201/285): grub2-tools-minimal-2.06-114.fc38.x8 1.6 MB/s | 624 kB 00:00 | |
#6 330.9 (202/285): grubby-8.40-70.fc38.x86_64.rpm 72 kB/s | 26 kB 00:00 | |
#6 331.2 (203/285): highway-1.0.7-1.fc38.x86_64.rpm 1.7 MB/s | 478 kB 00:00 | |
#6 332.1 (204/285): hwdata-0.378-1.fc38.noarch.rpm 1.8 MB/s | 1.6 MB 00:00 | |
#6 332.3 (205/285): imath-3.1.9-1.fc38.x86_64.rpm 395 kB/s | 96 kB 00:00 | |
#6 332.5 (206/285): langpacks-core-font-en-3.0-32.fc38.n 68 kB/s | 9.6 kB 00:00 | |
#6 332.7 (207/285): less-633-1.fc38.x86_64.rpm 748 kB/s | 175 kB 00:00 | |
#6 332.8 (208/285): git-core-2.43.0-1.fc38.x86_64.rpm 340 kB/s | 4.5 MB 00:13 | |
#6 333.2 (209/285): libX11-1.8.7-1.fc38.x86_64.rpm 1.4 MB/s | 650 kB 00:00 | |
#6 333.2 (210/285): libX11-common-1.8.7-1.fc38.noarch.rp 486 kB/s | 176 kB 00:00 | |
#6 333.3 (211/285): libX11-xcb-1.8.7-1.fc38.x86_64.rpm 80 kB/s | 12 kB 00:00 | |
#6 333.3 (212/285): libXft-2.3.8-2.fc38.x86_64.rpm 496 kB/s | 72 kB 00:00 | |
#6 333.4 (213/285): libXi-1.8.1-1.fc38.x86_64.rpm 396 kB/s | 40 kB 00:00 | |
#6 333.5 (214/285): libXpm-3.5.17-1.fc38.x86_64.rpm 417 kB/s | 65 kB 00:00 | |
#6 333.8 (215/285): libcaca-0.99-0.69.beta20.fc38.x86_64 698 kB/s | 225 kB 00:00 | |
#6 334.4 (216/285): libaom-3.8.0-1.fc38.x86_64.rpm 1.9 MB/s | 1.8 MB 00:00 | |
#6 334.5 (217/285): graphviz-7.1.0-3.fc38.x86_64.rpm 683 kB/s | 5.0 MB 00:07 | |
#6 334.6 (218/285): libdrm-2.4.120-1.fc38.x86_64.rpm 731 kB/s | 157 kB 00:00 | |
#6 334.6 (219/285): libdav1d-1.2.1-1.fc38.x86_64.rpm 773 kB/s | 618 kB 00:00 | |
#6 334.8 (220/285): libmaxminddb-1.9.1-1.fc38.x86_64.rpm 291 kB/s | 42 kB 00:00 | |
#6 334.8 (221/285): libheif-1.17.5-1.fc38.x86_64.rpm 1.6 MB/s | 351 kB 00:00 | |
#6 335.2 (222/285): libtiff-4.4.0-8.fc38.x86_64.rpm 517 kB/s | 201 kB 00:00 | |
#6 335.5 (223/285): libuv-1.47.0-3.fc38.x86_64.rpm 704 kB/s | 250 kB 00:00 | |
#6 335.9 (224/285): libwebp-1.3.2-2.fc38.x86_64.rpm 876 kB/s | 284 kB 00:00 | |
#6 336.3 (225/285): librsvg2-2.56.4-1.fc38.x86_64.rpm 1.1 MB/s | 1.6 MB 00:01 | |
#6 336.7 (226/285): libgs-10.02.1-2.fc38.x86_64.rpm 1.6 MB/s | 3.4 MB 00:02 | |
#6 336.7 (227/285): lmdb-libs-0.9.31-1.fc38.x86_64.rpm 142 kB/s | 60 kB 00:00 | |
#6 336.9 (228/285): mesa-filesystem-23.1.9-1.fc38.x86_64 72 kB/s | 17 kB 00:00 | |
#6 337.2 (229/285): mesa-libGL-23.1.9-1.fc38.x86_64.rpm 552 kB/s | 173 kB 00:00 | |
#6 337.5 (230/285): mesa-libGLU-9.0.3-1.fc38.x86_64.rpm 725 kB/s | 160 kB 00:00 | |
#6 337.6 (231/285): mesa-libglapi-23.1.9-1.fc38.x86_64.r 427 kB/s | 53 kB 00:00 | |
#6 339.1 (232/285): mesa-va-drivers-23.1.9-1.fc38.x86_64 2.2 MB/s | 3.4 MB 00:01 | |
#6 339.5 (233/285): ncurses-6.4-7.20230520.fc38.x86_64.r 1.0 MB/s | 415 kB 00:00 | |
#6 339.8 (234/285): nspr-4.35.0-14.fc38.x86_64.rpm 589 kB/s | 137 kB 00:00 | |
#6 340.9 (235/285): nss-3.96.1-1.fc38.x86_64.rpm 625 kB/s | 696 kB 00:01 | |
#6 341.2 (236/285): nss-softokn-3.96.1-1.fc38.x86_64.rpm 1.3 MB/s | 414 kB 00:00 | |
#6 341.5 (237/285): nss-softokn-freebl-3.96.1-1.fc38.x86 1.3 MB/s | 351 kB 00:00 | |
#6 341.7 (238/285): nss-sysinit-3.96.1-1.fc38.x86_64.rpm 78 kB/s | 18 kB 00:00 | |
#6 341.9 (239/285): nss-util-3.96.1-1.fc38.x86_64.rpm 356 kB/s | 87 kB 00:00 | |
#6 343.1 (240/285): openexr-libs-3.1.10-1.fc38.x86_64.rp 1.0 MB/s | 1.1 MB 00:01 | |
#6 343.7 (241/285): openjpeg2-2.5.0-5.fc38.x86_64.rpm 294 kB/s | 178 kB 00:00 | |
#6 343.9 (242/285): openssh-9.0p1-18.fc38.x86_64.rpm 1.7 MB/s | 435 kB 00:00 | |
#6 344.6 (243/285): openssh-clients-9.0p1-18.fc38.x86_64 980 kB/s | 701 kB 00:00 | |
#6 344.8 (244/285): perl-AutoLoader-5.74-498.fc38.noarch 133 kB/s | 22 kB 00:00 | |
#6 345.1 (245/285): perl-B-1.83-498.fc38.x86_64.rpm 744 kB/s | 182 kB 00:00 | |
#6 345.3 (246/285): perl-Class-Struct-0.66-498.fc38.noar 114 kB/s | 23 kB 00:00 | |
#6 345.4 (247/285): perl-DynaLoader-1.52-498.fc38.x86_64 186 kB/s | 27 kB 00:00 | |
#6 345.5 (248/285): perl-Errno-1.36-498.fc38.x86_64.rpm 140 kB/s | 15 kB 00:00 | |
#6 345.7 (249/285): perl-Fcntl-1.15-498.fc38.x86_64.rpm 147 kB/s | 21 kB 00:00 | |
#6 345.9 (250/285): perl-File-Basename-2.85-498.fc38.noa 90 kB/s | 18 kB 00:00 | |
#6 346.1 (251/285): perl-File-Find-1.40-498.fc38.noarch. 90 kB/s | 26 kB 00:00 | |
#6 346.8 (252/285): perl-File-stat-1.12-498.fc38.noarch. 27 kB/s | 18 kB 00:00 | |
#6 347.1 (253/285): perl-FileHandle-2.03-498.fc38.noarch 50 kB/s | 16 kB 00:00 | |
#6 347.4 (254/285): perl-Getopt-Std-1.13-498.fc38.noarch 66 kB/s | 16 kB 00:00 | |
#6 347.6 (255/285): perl-Git-2.43.0-1.fc38.noarch.rpm 166 kB/s | 40 kB 00:00 | |
#6 347.9 (256/285): perl-HTTP-Tiny-0.086-2.fc38.noarch.r 227 kB/s | 55 kB 00:00 | |
#6 348.0 (257/285): perl-IO-1.50-498.fc38.x86_64.rpm 642 kB/s | 92 kB 00:00 | |
#6 348.1 (258/285): perl-IPC-Open3-1.22-498.fc38.noarch. 163 kB/s | 23 kB 00:00 | |
#6 348.4 (259/285): perl-NDBM_File-1.15-498.fc38.x86_64. 95 kB/s | 23 kB 00:00 | |
#6 348.6 (260/285): perl-POSIX-2.03-498.fc38.x86_64.rpm 403 kB/s | 98 kB 00:00 | |
#6 348.7 (261/285): perl-SelectSaver-1.02-498.fc38.noarc 112 kB/s | 12 kB 00:00 | |
#6 349.0 (262/285): perl-Symbol-1.09-498.fc38.noarch.rpm 49 kB/s | 15 kB 00:00 | |
#6 349.2 (263/285): perl-Text-Tabs+Wrap-2023.0511-1.fc38 155 kB/s | 22 kB 00:00 | |
#6 349.4 (264/285): perl-base-2.27-498.fc38.noarch.rpm 72 kB/s | 17 kB 00:00 | |
#6 349.7 (265/285): perl-if-0.61.000-498.fc38.noarch.rpm 63 kB/s | 15 kB 00:00 | |
#6 349.8 (266/285): perl-interpreter-5.36.3-498.fc38.x86 509 kB/s | 73 kB 00:00 | |
#6 349.9 (267/285): perl-lib-0.65-498.fc38.x86_64.rpm 156 kB/s | 15 kB 00:00 | |
#6 351.1 (268/285): perl-libs-5.36.3-498.fc38.x86_64.rpm 1.9 MB/s | 2.2 MB 00:01 | |
#6 351.3 (269/285): perl-locale-1.10-498.fc38.noarch.rpm 56 kB/s | 14 kB 00:00 | |
#6 351.5 (270/285): perl-mro-1.26-498.fc38.x86_64.rpm 134 kB/s | 29 kB 00:00 | |
#6 351.8 (271/285): perl-overload-1.35-498.fc38.noarch.r 189 kB/s | 46 kB 00:00 | |
#6 351.9 (272/285): perl-overloading-0.02-498.fc38.noarc 94 kB/s | 13 kB 00:00 | |
#6 352.1 (273/285): perl-vars-1.05-498.fc38.noarch.rpm 112 kB/s | 14 kB 00:00 | |
#6 352.7 (274/285): poppler-23.02.0-3.fc38.x86_64.rpm 1.8 MB/s | 1.2 MB 00:00 | |
#6 353.0 (275/285): poppler-glib-23.02.0-3.fc38.x86_64.r 565 kB/s | 175 kB 00:00 | |
#6 353.5 (276/285): llvm-libs-16.0.6-3.fc38.x86_64.rpm 1.5 MB/s | 27 MB 00:17 | |
#6 353.5 (277/285): procps-ng-3.3.17-11.fc38.x86_64.rpm 714 kB/s | 338 kB 00:00 | |
#6 355.4 (278/285): rav1e-libs-0.6.6-4.fc38.x86_64.rpm 538 kB/s | 1.0 MB 00:01 | |
#6 355.6 (279/285): systemd-253.15-2.fc38.x86_64.rpm 2.1 MB/s | 4.5 MB 00:02 | |
#6 356.0 (280/285): systemd-networkd-253.15-2.fc38.x86_6 1.1 MB/s | 631 kB 00:00 | |
#6 356.0 (281/285): systemd-pam-253.15-2.fc38.x86_64.rpm 830 kB/s | 337 kB 00:00 | |
#6 356.5 (282/285): systemd-resolved-253.15-2.fc38.x86_6 547 kB/s | 288 kB 00:00 | |
#6 357.9 (283/285): tpm2-tools-5.5-3.fc38.x86_64.rpm 549 kB/s | 795 kB 00:01 | |
#6 358.5 (284/285): systemd-udev-253.15-2.fc38.x86_64.rp 857 kB/s | 2.1 MB 00:02 | |
#6 359.0 (285/285): mesa-dri-drivers-23.1.9-1.fc38.x86_6 856 kB/s | 19 MB 00:22 | |
#6 359.1 -------------------------------------------------------------------------------- | |
#6 359.1 Total 2.2 MB/s | 164 MB 01:15 | |
#6 366.1 Running transaction check | |
#6 366.4 Transaction check succeeded. | |
#6 366.4 Running transaction test | |
#6 369.6 Transaction test succeeded. | |
#6 369.6 Running transaction | |
#6 395.6 Preparing : 1/1 | |
#6 395.7 Installing : libjpeg-turbo-2.1.4-2.fc38.x86_64 1/285 | |
#6 395.8 Installing : libpng-2:1.6.37-14.fc38.x86_64 2/285 | |
#6 395.8 Installing : nspr-4.35.0-14.fc38.x86_64 3/285 | |
#6 395.9 Installing : libwebp-1.3.2-2.fc38.x86_64 4/285 | |
#6 395.9 Installing : fonts-filesystem-1:2.0.5-11.fc38.noarch 5/285 | |
#6 395.9 Installing : urw-base35-fonts-common-20200910-16.fc38.noarch 6/285 | |
#6 396.0 Installing : nss-util-3.96.1-1.fc38.x86_64 7/285 | |
#6 396.0 Installing : openjpeg2-2.5.0-5.fc38.x86_64 8/285 | |
#6 396.1 Installing : libX11-xcb-1.8.7-1.fc38.x86_64 9/285 | |
#6 396.1 Installing : lcms2-2.15-1.fc38.x86_64 10/285 | |
#6 396.1 Installing : kmod-libs-30-4.fc38.x86_64 11/285 | |
#6 396.2 Installing : libfdisk-2.38.1-4.fc38.x86_64 12/285 | |
#6 396.2 Installing : libICE-1.0.10-10.fc38.x86_64 13/285 | |
#6 396.2 Installing : kmod-30-4.fc38.x86_64 14/285 | |
#6 396.3 Installing : libSM-1.2.3-12.fc38.x86_64 15/285 | |
#6 396.4 Installing : rav1e-libs-0.6.6-4.fc38.x86_64 16/285 | |
#6 396.4 Installing : mesa-filesystem-23.1.9-1.fc38.x86_64 17/285 | |
#6 396.4 Installing : lmdb-libs-0.9.31-1.fc38.x86_64 18/285 | |
#6 396.5 Installing : libdav1d-1.2.1-1.fc38.x86_64 19/285 | |
#6 396.5 Installing : imath-3.1.9-1.fc38.x86_64 20/285 | |
#6 396.7 Installing : hwdata-0.378-1.fc38.noarch 21/285 | |
#6 396.7 Installing : grub2-common-1:2.06-114.fc38.noarch 22/285 | |
#6 396.9 Installing : adobe-mappings-cmap-20230622-1.fc38.noarch 23/285 | |
#6 397.0 Installing : svt-av1-libs-1.4.1-2.fc38.x86_64 24/285 | |
#6 397.1 Installing : shared-mime-info-2.2-3.fc38.x86_64 25/285 | |
#6 397.1 Running scriptlet: shared-mime-info-2.2-3.fc38.x86_64 25/285 | |
#6 397.2 Installing : gdk-pixbuf2-2.42.10-2.fc38.x86_64 26/285 | |
#6 397.2 Installing : protobuf-c-1.4.1-4.fc38.x86_64 27/285 | |
#6 397.3 Installing : libxshmfence-1.3-12.fc38.x86_64 28/285 | |
#6 397.3 Installing : libtool-ltdl-2.4.7-6.fc38.x86_64 29/285 | |
#6 397.4 Installing : libglvnd-1:1.6.0-2.fc38.x86_64 30/285 | |
#6 397.4 Installing : libedit-3.1-45.20221030cvs.fc38.x86_64 31/285 | |
#6 398.4 Installing : llvm-libs-16.0.6-3.fc38.x86_64 32/285 | |
#6 398.5 Installing : jbigkit-libs-2.1-25.fc38.x86_64 33/285 | |
#6 398.6 Installing : fribidi-1.0.12-3.fc38.x86_64 34/285 | |
#6 398.6 Installing : libglvnd-opengl-1:1.6.0-2.fc38.x86_64 35/285 | |
#6 398.7 Installing : mesa-libGLU-9.0.3-1.fc38.x86_64 36/285 | |
#6 398.7 Installing : adobe-mappings-cmap-deprecated-20230622-1.fc38.n 37/285 | |
#6 398.7 Installing : libpciaccess-0.16-8.fc38.x86_64 38/285 | |
#6 398.8 Installing : libdrm-2.4.120-1.fc38.x86_64 39/285 | |
#6 398.9 Installing : openexr-libs-3.1.10-1.fc38.x86_64 40/285 | |
#6 398.9 Installing : nss-softokn-freebl-3.96.1-1.fc38.x86_64 41/285 | |
#6 399.0 Installing : nss-softokn-3.96.1-1.fc38.x86_64 42/285 | |
#6 399.1 Installing : urw-base35-bookman-fonts-20200910-16.fc38.noarch 43/285 | |
#6 399.1 Running scriptlet: urw-base35-bookman-fonts-20200910-16.fc38.noarch 43/285 | |
#6 399.2 Installing : urw-base35-c059-fonts-20200910-16.fc38.noarch 44/285 | |
#6 399.2 Running scriptlet: urw-base35-c059-fonts-20200910-16.fc38.noarch 44/285 | |
#6 399.3 Installing : urw-base35-d050000l-fonts-20200910-16.fc38.noarc 45/285 | |
#6 399.3 Running scriptlet: urw-base35-d050000l-fonts-20200910-16.fc38.noarc 45/285 | |
#6 399.4 Installing : urw-base35-gothic-fonts-20200910-16.fc38.noarch 46/285 | |
#6 399.4 Running scriptlet: urw-base35-gothic-fonts-20200910-16.fc38.noarch 46/285 | |
#6 399.4 Installing : urw-base35-nimbus-mono-ps-fonts-20200910-16.fc38 47/285 | |
#6 399.5 Running scriptlet: urw-base35-nimbus-mono-ps-fonts-20200910-16.fc38 47/285 | |
#6 399.6 Installing : urw-base35-nimbus-roman-fonts-20200910-16.fc38.n 48/285 | |
#6 399.6 Running scriptlet: urw-base35-nimbus-roman-fonts-20200910-16.fc38.n 48/285 | |
#6 399.7 Installing : urw-base35-nimbus-sans-fonts-20200910-16.fc38.no 49/285 | |
#6 399.7 Running scriptlet: urw-base35-nimbus-sans-fonts-20200910-16.fc38.no 49/285 | |
#6 399.7 Installing : urw-base35-p052-fonts-20200910-16.fc38.noarch 50/285 | |
#6 399.8 Running scriptlet: urw-base35-p052-fonts-20200910-16.fc38.noarch 50/285 | |
#6 399.9 Installing : urw-base35-standard-symbols-ps-fonts-20200910-16 51/285 | |
#6 399.9 Running scriptlet: urw-base35-standard-symbols-ps-fonts-20200910-16 51/285 | |
#6 399.9 Installing : urw-base35-z003-fonts-20200910-16.fc38.noarch 52/285 | |
#6 400.0 Running scriptlet: urw-base35-z003-fonts-20200910-16.fc38.noarch 52/285 | |
#6 400.0 Installing : urw-base35-fonts-20200910-16.fc38.noarch 53/285 | |
#6 400.1 Installing : open-sans-fonts-1.10-18.fc38.noarch 54/285 | |
#6 400.2 Installing : jasper-libs-3.0.6-2.fc38.x86_64 55/285 | |
#6 400.2 Installing : LibRaw-0.21.2-2.fc38.x86_64 56/285 | |
#6 400.5 Installing : tpm2-tools-5.5-3.fc38.x86_64 57/285 | |
#6 400.5 Installing : procps-ng-3.3.17-11.fc38.x86_64 58/285 | |
#6 400.7 Installing : ncurses-6.4-7.20230520.fc38.x86_64 59/285 | |
#6 400.8 Installing : libuv-1:1.47.0-3.fc38.x86_64 60/285 | |
#6 400.8 Installing : libmaxminddb-1.9.1-1.fc38.x86_64 61/285 | |
#6 401.1 Installing : libX11-common-1.8.7-1.fc38.noarch 62/285 | |
#6 401.1 Installing : less-633-1.fc38.x86_64 63/285 | |
#6 401.3 Installing : highway-1.0.7-1.fc38.x86_64 64/285 | |
#6 401.3 Installing : libjxl-1:0.7.0-6.fc38.x86_64 65/285 | |
#6 401.4 Installing : jxl-pixbuf-loader-1:0.7.0-6.fc38.x86_64 66/285 | |
#6 401.4 Installing : google-noto-fonts-common-20230201-2.fc38.noarch 67/285 | |
#6 401.6 Installing : google-noto-sans-vf-fonts-20230201-2.fc38.noarch 68/285 | |
#6 401.7 Installing : google-droid-sans-fonts-20200215-15.fc38.noarch 69/285 | |
#6 401.8 Installing : langpacks-core-font-en-3.0-32.fc38.noarch 70/285 | |
#6 401.8 Installing : giflib-5.2.1-17.fc38.x86_64 71/285 | |
#6 402.0 Installing : fftw-libs-double-3.3.10-10.fc38.x86_64 72/285 | |
#6 402.0 Installing : diffutils-3.10-1.fc38.x86_64 73/285 | |
#6 402.1 Installing : dbus-libs-1:1.14.10-1.fc38.x86_64 74/285 | |
#6 402.1 Installing : avahi-libs-0.8-22.fc38.x86_64 75/285 | |
#6 402.2 Installing : cups-libs-1:2.4.7-5.fc38.x86_64 76/285 | |
#6 402.2 Installing : dbus-common-1:1.14.10-1.fc38.noarch 77/285 | |
#6 402.2 Running scriptlet: dbus-common-1:1.14.10-1.fc38.noarch 77/285 | |
#6 402.3 Running scriptlet: dbus-broker-33-1.fc38.x86_64 78/285 | |
#6 402.9 Installing : dbus-broker-33-1.fc38.x86_64 78/285 | |
#6 402.9 Running scriptlet: dbus-broker-33-1.fc38.x86_64 78/285 | |
#6 402.9 Installing : dbus-1:1.14.10-1.fc38.x86_64 79/285 | |
#6 402.9 Installing : bind-license-32:9.18.20-1.fc38.noarch 80/285 | |
#6 403.0 Installing : xz-5.4.1-1.fc38.x86_64 81/285 | |
#6 403.0 Running scriptlet: xml-common-0.6.3-60.fc38.noarch 82/285 | |
#6 403.1 Installing : xml-common-0.6.3-60.fc38.noarch 82/285 | |
#6 403.2 Installing : xkeyboard-config-2.38-1.fc38.noarch 83/285 | |
#6 403.3 Installing : libxkbcommon-1.5.0-2.fc38.x86_64 84/285 | |
#6 403.3 Installing : slang-2.3.3-3.fc38.x86_64 85/285 | |
#6 403.3 Installing : qrencode-libs-4.1.1-4.fc38.x86_64 86/285 | |
#6 403.6 Installing : poppler-data-0.4.11-4.fc38.noarch 87/285 | |
#6 403.6 Installing : pixman-0.42.2-1.fc38.x86_64 88/285 | |
#6 403.7 Installing : pigz-2.7-3.fc38.x86_64 89/285 | |
#6 403.7 Installing : pciutils-libs-3.9.0-3.fc38.x86_64 90/285 | |
#6 403.8 Installing : pciutils-3.9.0-3.fc38.x86_64 91/285 | |
#6 403.8 Installing : netpbm-11.02.00-1.fc38.x86_64 92/285 | |
#6 403.9 Installing : gts-0.7.6-44.20121130.fc38.x86_64 93/285 | |
#6 403.9 Installing : memstrack-0.2.5-1.fc38.x86_64 94/285 | |
#6 404.0 Installing : lm_sensors-libs-3.6.0-13.fc38.x86_64 95/285 | |
#6 404.1 Installing : libzip-1.9.2-3.fc38.x86_64 96/285 | |
#6 404.1 Installing : libwmf-lite-0.2.12-10.fc38.x86_64 97/285 | |
#6 404.2 Installing : libvmaf-2.3.0-5.fc38.x86_64 98/285 | |
#6 404.3 Installing : libaom-3.8.0-1.fc38.x86_64 99/285 | |
#6 404.4 Installing : libavif-0.11.1-7.fc38.x86_64 100/285 | |
#6 404.4 Installing : libheif-1.17.5-1.fc38.x86_64 101/285 | |
#6 404.5 Running scriptlet: libutempter-1.2.1-8.fc38.x86_64 102/285 | |
#6 404.9 Installing : libutempter-1.2.1-8.fc38.x86_64 102/285 | |
#6 406.0 Installing : util-linux-2.38.1-4.fc38.x86_64 103/285 | |
#6 406.0 warning: /etc/adjtime created as /etc/adjtime.rpmnew | |
#6 406.0 | |
#6 406.1 Installing : openssh-9.0p1-18.fc38.x86_64 104/285 | |
#6 406.2 Installing : libseccomp-2.5.3-4.fc38.x86_64 105/285 | |
#6 406.2 Installing : libpaper-1:2.0.8-1.fc38.x86_64 106/285 | |
#6 406.4 Installing : libmpc-1.3.1-2.fc38.x86_64 107/285 | |
#6 406.7 Installing : cpp-13.2.1-4.fc38.x86_64 108/285 | |
#6 406.8 Installing : liblqr-1-0.4.2-21.fc38.x86_64 109/285 | |
#6 406.8 Installing : liblerc-4.0.0-3.fc38.x86_64 110/285 | |
#6 406.9 Installing : libtiff-4.4.0-8.fc38.x86_64 111/285 | |
#6 407.0 Installing : libimagequant-2.17.0-4.fc38.x86_64 112/285 | |
#6 407.0 Installing : libijs-0.35-17.fc38.x86_64 113/285 | |
#6 407.1 Installing : libfontenc-1.1.6-2.fc38.x86_64 114/285 | |
#6 407.1 Installing : libdatrie-0.2.13-5.fc38.x86_64 115/285 | |
#6 407.1 Installing : libthai-0.1.29-4.fc38.x86_64 116/285 | |
#6 407.2 Installing : libcbor-0.7.0-9.fc38.x86_64 117/285 | |
#6 407.3 Installing : libfido2-1.12.0-3.fc38.x86_64 118/285 | |
#6 407.4 Installing : openssh-clients-9.0p1-18.fc38.x86_64 119/285 | |
#6 407.5 Running scriptlet: openssh-clients-9.0p1-18.fc38.x86_64 119/285 | |
#6 407.6 Installing : git-core-2.43.0-1.fc38.x86_64 120/285 | |
#6 407.8 Installing : git-core-doc-2.43.0-1.fc38.noarch 121/285 | |
#6 407.8 Installing : libargon2-20190702-2.fc38.x86_64 122/285 | |
#6 407.9 Installing : device-mapper-libs-1.02.189-2.fc38.x86_64 123/285 | |
#6 408.2 Installing : cryptsetup-libs-2.6.1-1.fc38.x86_64 124/285 | |
#6 408.2 Installing : device-mapper-1.02.189-2.fc38.x86_64 125/285 | |
#6 408.3 Installing : systemd-networkd-253.15-2.fc38.x86_64 126/285 | |
#6 408.3 Running scriptlet: systemd-networkd-253.15-2.fc38.x86_64 126/285 | |
#6 408.4 Installing : systemd-pam-253.15-2.fc38.x86_64 127/285 | |
#6 408.4 Installing : systemd-resolved-253.15-2.fc38.x86_64 128/285 | |
#6 408.4 Running scriptlet: systemd-resolved-253.15-2.fc38.x86_64 128/285 | |
#6 408.7 Installing : systemd-253.15-2.fc38.x86_64 129/285 | |
#6 408.8 Running scriptlet: systemd-253.15-2.fc38.x86_64 129/285 | |
#6 410.2 Creating group 'input' with GID 104. | |
#6 410.2 Creating group 'kvm' with GID 36. | |
#6 410.2 Creating group 'render' with GID 105. | |
#6 410.2 Creating group 'sgx' with GID 106. | |
#6 410.2 Creating group 'systemd-journal' with GID 190. | |
#6 410.2 Creating group 'systemd-network' with GID 192. | |
#6 410.2 Creating user 'systemd-network' (systemd Network Management) with UID 192 and GID 192. | |
#6 410.2 Creating group 'systemd-oom' with GID 999. | |
#6 410.2 Creating user 'systemd-oom' (systemd Userspace OOM Killer) with UID 999 and GID 999. | |
#6 410.2 Creating group 'systemd-resolve' with GID 193. | |
#6 410.2 Creating user 'systemd-resolve' (systemd Resolver) with UID 193 and GID 193. | |
#6 410.2 | |
#6 410.2 Installing : libkcapi-1.4.0-5.fc38.x86_64 130/285 | |
#6 410.2 Installing : libkcapi-hmaccalc-1.4.0-5.fc38.x86_64 131/285 | |
#6 410.3 Installing : kpartx-0.9.4-2.fc38.x86_64 132/285 | |
#6 410.4 Installing : libXau-1.0.11-2.fc38.x86_64 133/285 | |
#6 410.5 Installing : libxcb-1.13.1-11.fc38.x86_64 134/285 | |
#6 410.6 Installing : libX11-1.8.7-1.fc38.x86_64 135/285 | |
#6 410.6 Installing : libXext-1.3.5-2.fc38.x86_64 136/285 | |
#6 410.7 Installing : libXrender-0.9.11-2.fc38.x86_64 137/285 | |
#6 410.7 Installing : libXi-1.8.1-1.fc38.x86_64 138/285 | |
#6 410.8 Installing : libXt-1.2.1-4.fc38.x86_64 139/285 | |
#6 410.8 Installing : libXxf86vm-1.1.5-2.fc38.x86_64 140/285 | |
#6 410.9 Installing : libXmu-1.1.4-2.fc38.x86_64 141/285 | |
#6 411.0 Installing : xrdb-1.2.1-5.fc38.x86_64 142/285 | |
#6 411.1 Installing : libXtst-1.2.4-2.fc38.x86_64 143/285 | |
#6 411.1 Installing : libXrandr-1.5.2-10.fc38.x86_64 144/285 | |
#6 411.2 Installing : xrandr-1.5.2-2.fc38.x86_64 145/285 | |
#6 411.2 Installing : libXinerama-1.1.5-2.fc38.x86_64 146/285 | |
#6 411.3 Installing : libXxf86dga-1.1.5-10.fc38.x86_64 147/285 | |
#6 411.4 Installing : gdk-pixbuf2-xlib-2.40.2-6.fc38.x86_64 148/285 | |
#6 411.5 Installing : libXcomposite-0.4.5-9.fc38.x86_64 149/285 | |
#6 411.5 Installing : xdpyinfo-1.3.3-3.fc38.x86_64 150/285 | |
#6 411.5 Installing : libXfixes-6.0.0-5.fc38.x86_64 151/285 | |
#6 411.6 Installing : xprop-1.2.5-3.fc38.x86_64 152/285 | |
#6 411.6 Installing : libXpm-3.5.17-1.fc38.x86_64 153/285 | |
#6 411.7 Installing : xwininfo-1.1.5-6.fc38.x86_64 154/285 | |
#6 411.9 Installing : mesa-va-drivers-23.1.9-1.fc38.x86_64 155/285 | |
#6 412.0 Installing : mesa-libglapi-23.1.9-1.fc38.x86_64 156/285 | |
#6 412.8 Installing : mesa-dri-drivers-23.1.9-1.fc38.x86_64 157/285 | |
#6 412.9 Installing : libglvnd-glx-1:1.6.0-2.fc38.x86_64 158/285 | |
#6 413.0 Installing : mesa-libGL-23.1.9-1.fc38.x86_64 159/285 | |
#6 413.0 Installing : freeglut-3.4.0-2.fc38.x86_64 160/285 | |
#6 413.1 Installing : libcaca-0.99-0.69.beta20.fc38.x86_64 161/285 | |
#6 413.1 Installing : toilet-0.3-14.fc38.x86_64 162/285 | |
#6 413.4 Installing : kbd-misc-2.5.1-5.fc38.noarch 163/285 | |
#6 414.0 Installing : kbd-legacy-2.5.1-5.fc38.noarch 164/285 | |
#6 414.1 Installing : kbd-2.5.1-5.fc38.x86_64 165/285 | |
#6 414.5 Installing : systemd-udev-253.15-2.fc38.x86_64 166/285 | |
#6 414.7 Running scriptlet: systemd-udev-253.15-2.fc38.x86_64 166/285 | |
#6 415.5 Created symlink /etc/systemd/system/dbus-org.freedesktop.home1.service → /usr/lib/systemd/system/systemd-homed.service. | |
#6 415.5 Created symlink /etc/systemd/system/multi-user.target.wants/systemd-homed.service → /usr/lib/systemd/system/systemd-homed.service. | |
#6 415.5 Created symlink /etc/systemd/system/systemd-homed.service.wants/systemd-homed-activate.service → /usr/lib/systemd/system/systemd-homed-activate.service. | |
#6 415.5 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /usr/lib/systemd/system/systemd-pstore.service. | |
#6 415.5 Created symlink /etc/systemd/system/multi-user.target.wants/remote-cryptsetup.target → /usr/lib/systemd/system/remote-cryptsetup.target. | |
#6 415.5 | |
#6 415.5 Installing : jemalloc-5.3.0-3.fc38.x86_64 167/285 | |
#6 415.6 Installing : jbig2dec-libs-0.19-8.fc38.x86_64 168/285 | |
#6 415.7 Running scriptlet: groff-base-1.22.4-11.fc38.x86_64 169/285 | |
#6 415.8 Installing : groff-base-1.22.4-11.fc38.x86_64 169/285 | |
#6 415.8 Running scriptlet: groff-base-1.22.4-11.fc38.x86_64 169/285 | |
#6 415.8 Installing : perl-Digest-1.20-490.fc38.noarch 170/285 | |
#6 415.9 Installing : perl-Digest-MD5-2.58-490.fc38.x86_64 171/285 | |
#6 416.0 Installing : perl-B-1.83-498.fc38.x86_64 172/285 | |
#6 416.1 Installing : perl-FileHandle-2.03-498.fc38.noarch 173/285 | |
#6 416.1 Installing : perl-Data-Dumper-2.184-491.fc38.x86_64 174/285 | |
#6 416.2 Installing : perl-libnet-3.15-1.fc38.noarch 175/285 | |
#6 416.3 Installing : perl-AutoLoader-5.74-498.fc38.noarch 176/285 | |
#6 416.4 Installing : perl-base-2.27-498.fc38.noarch 177/285 | |
#6 416.4 Installing : perl-URI-5.17-2.fc38.noarch 178/285 | |
#6 416.5 Installing : perl-Time-Local-2:1.300-490.fc38.noarch 179/285 | |
#6 416.6 Installing : perl-Mozilla-CA-20221114-2.fc38.noarch 180/285 | |
#6 416.6 Installing : perl-Text-Tabs+Wrap-2023.0511-1.fc38.noarch 181/285 | |
#6 416.8 Installing : perl-if-0.61.000-498.fc38.noarch 182/285 | |
#6 416.8 Installing : perl-locale-1.10-498.fc38.noarch 183/285 | |
#6 416.9 Installing : perl-IO-Socket-IP-0.41-492.fc38.noarch 184/285 | |
#6 416.9 Installing : perl-File-Path-2.18-490.fc38.noarch 185/285 | |
#6 417.0 Installing : perl-IO-Socket-SSL-2.081-1.fc38.noarch 186/285 | |
#6 417.1 Installing : perl-Net-SSLeay-1.92-5.fc38.x86_64 187/285 | |
#6 417.2 Installing : perl-Pod-Escapes-1:1.07-490.fc38.noarch 188/285 | |
#6 417.2 Installing : perl-Term-ANSIColor-5.01-491.fc38.noarch 189/285 | |
#6 417.3 Installing : perl-Class-Struct-0.66-498.fc38.noarch 190/285 | |
#6 417.3 Installing : perl-POSIX-2.03-498.fc38.x86_64 191/285 | |
#6 417.3 Installing : perl-IPC-Open3-1.22-498.fc38.noarch 192/285 | |
#6 417.4 Installing : perl-File-Temp-1:0.231.100-490.fc38.noarch 193/285 | |
#6 417.4 Installing : perl-HTTP-Tiny-0.086-2.fc38.noarch 194/285 | |
#6 417.5 Installing : perl-Term-Cap-1.18-1.fc38.noarch 195/285 | |
#6 417.6 Installing : perl-Pod-Simple-1:3.43-491.fc38.noarch 196/285 | |
#6 417.7 Installing : perl-Socket-4:2.036-2.fc38.x86_64 197/285 | |
#6 417.7 Installing : perl-SelectSaver-1.02-498.fc38.noarch 198/285 | |
#6 417.8 Installing : perl-Symbol-1.09-498.fc38.noarch 199/285 | |
#6 417.8 Installing : perl-File-stat-1.12-498.fc38.noarch 200/285 | |
#6 418.0 Installing : perl-podlators-1:5.01-2.fc38.noarch 201/285 | |
#6 418.0 Installing : perl-Pod-Perldoc-3.28.01-491.fc38.noarch 202/285 | |
#6 418.0 Installing : perl-Text-ParseWords-3.31-490.fc38.noarch 203/285 | |
#6 418.1 Installing : perl-Fcntl-1.15-498.fc38.x86_64 204/285 | |
#6 418.2 Installing : perl-mro-1.26-498.fc38.x86_64 205/285 | |
#6 418.2 Installing : perl-IO-1.50-498.fc38.x86_64 206/285 | |
#6 418.3 Installing : perl-overloading-0.02-498.fc38.noarch 207/285 | |
#6 418.3 Installing : perl-Pod-Usage-4:2.03-4.fc38.noarch 208/285 | |
#6 418.4 Installing : perl-MIME-Base64-3.16-490.fc38.x86_64 209/285 | |
#6 418.5 Installing : perl-Scalar-List-Utils-5:1.63-490.fc38.x86_64 210/285 | |
#6 418.7 Installing : perl-constant-1.33-491.fc38.noarch 211/285 | |
#6 418.7 Installing : perl-parent-1:0.241-1.fc38.noarch 212/285 | |
#6 418.8 Installing : perl-Errno-1.36-498.fc38.x86_64 213/285 | |
#6 418.8 Installing : perl-File-Basename-2.85-498.fc38.noarch 214/285 | |
#6 419.0 Installing : perl-Getopt-Std-1.13-498.fc38.noarch 215/285 | |
#6 419.0 Installing : perl-Storable-1:3.26-490.fc38.x86_64 216/285 | |
#6 419.1 Installing : perl-overload-1.35-498.fc38.noarch 217/285 | |
#6 419.1 Installing : perl-vars-1.05-498.fc38.noarch 218/285 | |
#6 419.2 Installing : perl-Getopt-Long-1:2.54-2.fc38.noarch 219/285 | |
#6 419.3 Installing : perl-Carp-1.52-490.fc38.noarch 220/285 | |
#6 419.4 Installing : perl-Exporter-5.77-490.fc38.noarch 221/285 | |
#6 419.4 Installing : perl-PathTools-3.84-490.fc38.x86_64 222/285 | |
#6 419.5 Installing : perl-NDBM_File-1.15-498.fc38.x86_64 223/285 | |
#6 419.6 Installing : perl-DynaLoader-1.52-498.fc38.x86_64 224/285 | |
#6 419.8 Installing : perl-Encode-4:3.19-493.fc38.x86_64 225/285 | |
#6 420.2 Installing : perl-libs-4:5.36.3-498.fc38.x86_64 226/285 | |
#6 420.2 Installing : perl-interpreter-4:5.36.3-498.fc38.x86_64 227/285 | |
#6 420.3 Installing : perl-File-Find-1.40-498.fc38.noarch 228/285 | |
#6 420.3 Installing : perl-Error-1:0.17029-11.fc38.noarch 229/285 | |
#6 420.5 Installing : perl-NKF-1:2.1.4-28.fc38.x86_64 230/285 | |
#6 420.5 Installing : perl-TermReadKey-2.38-16.fc38.x86_64 231/285 | |
#6 420.6 Installing : perl-lib-0.65-498.fc38.x86_64 232/285 | |
#6 420.6 Installing : perl-Git-2.43.0-1.fc38.noarch 233/285 | |
#6 420.8 Installing : git-2.43.0-1.fc38.x86_64 234/285 | |
#6 420.8 Installing : graphite2-1.3.14-11.fc38.x86_64 235/285 | |
#6 420.9 Installing : cairo-1.17.8-4.fc38.x86_64 236/285 | |
#6 421.0 Installing : harfbuzz-7.1.0-1.fc38.x86_64 237/285 | |
#6 421.1 Installing : freetype-2.13.0-2.fc38.x86_64 238/285 | |
#6 421.2 Installing : fontconfig-2.14.2-1.fc38.x86_64 239/285 | |
#6 421.2 Running scriptlet: fontconfig-2.14.2-1.fc38.x86_64 239/285 | |
#6 422.5 Installing : gd-2.3.3-10.fc38.x86_64 240/285 | |
#6 422.6 Installing : libXft-2.3.8-2.fc38.x86_64 241/285 | |
#6 422.6 Installing : pango-1.50.14-1.fc38.x86_64 242/285 | |
#6 422.7 Installing : lasi-1.1.3-10.fc38.x86_64 243/285 | |
#6 422.7 Installing : imlib2-1.7.4-4.fc38.x86_64 244/285 | |
#6 422.8 Installing : caca-utils-0.99-0.69.beta20.fc38.x86_64 245/285 | |
#6 422.8 Installing : libraqm-0.8.0-4.fc38.x86_64 246/285 | |
#6 422.9 Installing : mkfontscale-1.2.2-3.fc38.x86_64 247/285 | |
#6 423.0 Installing : xorg-x11-fonts-ISO8859-1-100dpi-7.5-35.fc38.noar 248/285 | |
#6 423.0 Running scriptlet: xorg-x11-fonts-ISO8859-1-100dpi-7.5-35.fc38.noar 248/285 | |
#6 423.1 Installing : cairo-gobject-1.17.8-4.fc38.x86_64 249/285 | |
#6 423.2 Installing : librsvg2-2.56.4-1.fc38.x86_64 250/285 | |
#6 423.2 Installing : gpm-libs-1.20.7-42.fc38.x86_64 251/285 | |
#6 423.2 Installing : gettext-libs-0.21.1-2.fc38.x86_64 252/285 | |
#6 423.2 Installing : gettext-envsubst-0.21.1-2.fc38.x86_64 253/285 | |
#6 423.3 Installing : gettext-runtime-0.21.1-2.fc38.x86_64 254/285 | |
#6 423.3 Installing : gc-8.2.2-3.fc38.x86_64 255/285 | |
#6 423.4 Installing : w3m-0.5.3-60.git20230121.fc38.x86_64 256/285 | |
#6 423.4 Installing : fuse-libs-2.9.9-16.fc38.x86_64 257/285 | |
#6 423.5 Installing : grub2-tools-minimal-1:2.06-114.fc38.x86_64 258/285 | |
#6 423.6 Installing : os-prober-1.81-3.fc38.x86_64 259/285 | |
#6 423.6 Installing : fstrm-0.6.1-6.fc38.x86_64 260/285 | |
#6 423.7 Installing : bind-libs-32:9.18.20-1.fc38.x86_64 261/285 | |
#6 423.7 Installing : bind-utils-32:9.18.20-1.fc38.x86_64 262/285 | |
#6 423.8 Installing : file-5.44-3.fc38.x86_64 263/285 | |
#6 423.8 Installing : cpio-2.13-14.fc38.x86_64 264/285 | |
#6 424.0 Installing : dracut-059-5.fc38.x86_64 265/285 | |
#6 424.0 Running scriptlet: grub2-tools-1:2.06-114.fc38.x86_64 266/285 | |
#6 424.1 Installing : grub2-tools-1:2.06-114.fc38.x86_64 266/285 | |
#6 424.2 Running scriptlet: grub2-tools-1:2.06-114.fc38.x86_64 266/285 | |
#6 424.2 Created symlink /etc/systemd/user/timers.target.wants/grub-boot-success.timer → /usr/lib/systemd/user/grub-boot-success.timer. | |
#6 424.2 | |
#6 424.2 Installing : grubby-8.40-70.fc38.x86_64 267/285 | |
#6 424.2 Running scriptlet: grubby-8.40-70.fc38.x86_64 267/285 | |
#6 424.3 Installing : crypto-policies-scripts-20230301-1.gita12f7b2.fc 268/285 | |
#6 424.3 Installing : nss-sysinit-3.96.1-1.fc38.x86_64 269/285 | |
#6 424.4 Installing : nss-3.96.1-1.fc38.x86_64 270/285 | |
#6 424.4 Running scriptlet: nss-3.96.1-1.fc38.x86_64 270/285 | |
#6 424.5 Installing : poppler-23.02.0-3.fc38.x86_64 271/285 | |
#6 424.5 Installing : poppler-glib-23.02.0-3.fc38.x86_64 272/285 | |
#6 424.6 Installing : catimg-2.7.0-8.fc38.x86_64 273/285 | |
#6 424.7 Installing : adobe-mappings-pdf-20190401-3.fc38.noarch 274/285 | |
#6 425.0 Installing : libgs-10.02.1-2.fc38.x86_64 275/285 | |
#6 425.2 Installing : graphviz-7.1.0-3.fc38.x86_64 276/285 | |
#6 425.3 Running scriptlet: graphviz-7.1.0-3.fc38.x86_64 276/285 | |
#6 425.5 Installing : ImageMagick-libs-1:7.1.1.26-2.fc38.x86_64 277/285 | |
#6 425.5 Installing : ImageMagick-1:7.1.1.26-2.fc38.x86_64 278/285 | |
#6 425.6 Installing : w3m-img-0.5.3-60.git20230121.fc38.x86_64 279/285 | |
#6 425.6 Installing : neofetch-7.1.0-9.fc38.noarch 280/285 | |
#6 425.7 Installing : cowsay-3.7.0-10.fc38.noarch 281/285 | |
#6 425.9 Installing : glibc-locale-source-2.37-18.fc38.x86_64 282/285 | |
#6 426.0 Installing : glibc-langpack-ja-2.37-18.fc38.x86_64 283/285 | |
#6 426.0 Installing : lolcat-1.4-1.fc38.x86_64 284/285 | |
#6 426.1 Installing : figlet-2.2.5-25.20151018gita565ae1.fc38.x86_64 285/285 | |
#6 426.1 Running scriptlet: grub2-common-1:2.06-114.fc38.noarch 285/285 | |
#6 426.1 Running scriptlet: urw-base35-bookman-fonts-20200910-16.fc38.noarch 285/285 | |
#6 426.1 Running scriptlet: urw-base35-c059-fonts-20200910-16.fc38.noarch 285/285 | |
#6 426.1 Running scriptlet: urw-base35-d050000l-fonts-20200910-16.fc38.noarc 285/285 | |
#6 426.2 Running scriptlet: urw-base35-gothic-fonts-20200910-16.fc38.noarch 285/285 | |
#6 426.2 Running scriptlet: urw-base35-nimbus-mono-ps-fonts-20200910-16.fc38 285/285 | |
#6 426.2 Running scriptlet: urw-base35-nimbus-roman-fonts-20200910-16.fc38.n 285/285 | |
#6 426.2 Running scriptlet: urw-base35-nimbus-sans-fonts-20200910-16.fc38.no 285/285 | |
#6 426.2 Running scriptlet: urw-base35-p052-fonts-20200910-16.fc38.noarch 285/285 | |
#6 426.2 Running scriptlet: urw-base35-standard-symbols-ps-fonts-20200910-16 285/285 | |
#6 426.2 Running scriptlet: urw-base35-z003-fonts-20200910-16.fc38.noarch 285/285 | |
#6 426.3 Running scriptlet: systemd-resolved-253.15-2.fc38.x86_64 285/285 | |
#6 426.3 Running scriptlet: fontconfig-2.14.2-1.fc38.x86_64 285/285 | |
#6 426.3 Running scriptlet: crypto-policies-scripts-20230301-1.gita12f7b2.fc 285/285 | |
#6 426.7 Running scriptlet: nss-3.96.1-1.fc38.x86_64 285/285 | |
#6 427.1 Running scriptlet: figlet-2.2.5-25.20151018gita565ae1.fc38.x86_64 285/285 | |
#6 458.5 Creating group 'systemd-coredump' with GID 998. | |
#6 458.5 Creating user 'systemd-coredump' (systemd Core Dumper) with UID 998 and GID 998. | |
#6 458.5 Creating group 'systemd-timesync' with GID 997. | |
#6 458.5 Creating user 'systemd-timesync' (systemd Time Synchronization) with UID 997 and GID 997. | |
#6 458.5 | |
#6 462.1 Verifying : adobe-mappings-pdf-20190401-3.fc38.noarch 1/285 | |
#6 462.1 Verifying : catimg-2.7.0-8.fc38.x86_64 2/285 | |
#6 462.1 Verifying : cpio-2.13-14.fc38.x86_64 3/285 | |
#6 462.1 Verifying : crypto-policies-scripts-20230301-1.gita12f7b2.fc 4/285 | |
#6 462.1 Verifying : cryptsetup-libs-2.6.1-1.fc38.x86_64 5/285 | |
#6 462.1 Verifying : dbus-broker-33-1.fc38.x86_64 6/285 | |
#6 462.1 Verifying : device-mapper-1.02.189-2.fc38.x86_64 7/285 | |
#6 462.1 Verifying : device-mapper-libs-1.02.189-2.fc38.x86_64 8/285 | |
#6 462.1 Verifying : figlet-2.2.5-25.20151018gita565ae1.fc38.x86_64 9/285 | |
#6 462.1 Verifying : file-5.44-3.fc38.x86_64 10/285 | |
#6 462.1 Verifying : fontconfig-2.14.2-1.fc38.x86_64 11/285 | |
#6 462.1 Verifying : fonts-filesystem-1:2.0.5-11.fc38.noarch 12/285 | |
#6 462.1 Verifying : freeglut-3.4.0-2.fc38.x86_64 13/285 | |
#6 462.1 Verifying : freetype-2.13.0-2.fc38.x86_64 14/285 | |
#6 462.1 Verifying : fribidi-1.0.12-3.fc38.x86_64 15/285 | |
#6 462.1 Verifying : fstrm-0.6.1-6.fc38.x86_64 16/285 | |
#6 462.1 Verifying : fuse-libs-2.9.9-16.fc38.x86_64 17/285 | |
#6 462.1 Verifying : gc-8.2.2-3.fc38.x86_64 18/285 | |
#6 462.1 Verifying : gd-2.3.3-10.fc38.x86_64 19/285 | |
#6 462.1 Verifying : gdk-pixbuf2-2.42.10-2.fc38.x86_64 20/285 | |
#6 462.1 Verifying : gdk-pixbuf2-xlib-2.40.2-6.fc38.x86_64 21/285 | |
#6 462.1 Verifying : gettext-envsubst-0.21.1-2.fc38.x86_64 22/285 | |
#6 462.1 Verifying : gettext-libs-0.21.1-2.fc38.x86_64 23/285 | |
#6 462.1 Verifying : gettext-runtime-0.21.1-2.fc38.x86_64 24/285 | |
#6 462.1 Verifying : gpm-libs-1.20.7-42.fc38.x86_64 25/285 | |
#6 462.1 Verifying : graphite2-1.3.14-11.fc38.x86_64 26/285 | |
#6 462.1 Verifying : groff-base-1.22.4-11.fc38.x86_64 27/285 | |
#6 462.1 Verifying : gts-0.7.6-44.20121130.fc38.x86_64 28/285 | |
#6 462.1 Verifying : harfbuzz-7.1.0-1.fc38.x86_64 29/285 | |
#6 462.1 Verifying : imlib2-1.7.4-4.fc38.x86_64 30/285 | |
#6 462.1 Verifying : jasper-libs-3.0.6-2.fc38.x86_64 31/285 | |
#6 462.1 Verifying : jbig2dec-libs-0.19-8.fc38.x86_64 32/285 | |
#6 462.1 Verifying : jbigkit-libs-2.1-25.fc38.x86_64 33/285 | |
#6 462.1 Verifying : jemalloc-5.3.0-3.fc38.x86_64 34/285 | |
#6 462.1 Verifying : jxl-pixbuf-loader-1:0.7.0-6.fc38.x86_64 35/285 | |
#6 462.1 Verifying : kbd-2.5.1-5.fc38.x86_64 36/285 | |
#6 462.1 Verifying : kbd-legacy-2.5.1-5.fc38.noarch 37/285 | |
#6 462.1 Verifying : kbd-misc-2.5.1-5.fc38.noarch 38/285 | |
#6 462.1 Verifying : kmod-30-4.fc38.x86_64 39/285 | |
#6 462.1 Verifying : kmod-libs-30-4.fc38.x86_64 40/285 | |
#6 462.1 Verifying : kpartx-0.9.4-2.fc38.x86_64 41/285 | |
#6 462.1 Verifying : lasi-1.1.3-10.fc38.x86_64 42/285 | |
#6 462.1 Verifying : lcms2-2.15-1.fc38.x86_64 43/285 | |
#6 462.1 Verifying : libICE-1.0.10-10.fc38.x86_64 44/285 | |
#6 462.1 Verifying : libSM-1.2.3-12.fc38.x86_64 45/285 | |
#6 462.1 Verifying : libXau-1.0.11-2.fc38.x86_64 46/285 | |
#6 462.1 Verifying : libXcomposite-0.4.5-9.fc38.x86_64 47/285 | |
#6 462.1 Verifying : libXext-1.3.5-2.fc38.x86_64 48/285 | |
#6 462.1 Verifying : libXfixes-6.0.0-5.fc38.x86_64 49/285 | |
#6 462.1 Verifying : libXinerama-1.1.5-2.fc38.x86_64 50/285 | |
#6 462.1 Verifying : libXmu-1.1.4-2.fc38.x86_64 51/285 | |
#6 462.1 Verifying : libXrandr-1.5.2-10.fc38.x86_64 52/285 | |
#6 462.1 Verifying : libXrender-0.9.11-2.fc38.x86_64 53/285 | |
#6 462.1 Verifying : libXt-1.2.1-4.fc38.x86_64 54/285 | |
#6 462.1 Verifying : libXtst-1.2.4-2.fc38.x86_64 55/285 | |
#6 462.1 Verifying : libXxf86dga-1.1.5-10.fc38.x86_64 56/285 | |
#6 462.1 Verifying : libXxf86vm-1.1.5-2.fc38.x86_64 57/285 | |
#6 462.1 Verifying : libargon2-20190702-2.fc38.x86_64 58/285 | |
#6 462.1 Verifying : libavif-0.11.1-7.fc38.x86_64 59/285 | |
#6 462.1 Verifying : libcbor-0.7.0-9.fc38.x86_64 60/285 | |
#6 462.1 Verifying : libdatrie-0.2.13-5.fc38.x86_64 61/285 | |
#6 462.1 Verifying : libedit-3.1-45.20221030cvs.fc38.x86_64 62/285 | |
#6 462.1 Verifying : libfdisk-2.38.1-4.fc38.x86_64 63/285 | |
#6 462.1 Verifying : libfido2-1.12.0-3.fc38.x86_64 64/285 | |
#6 462.1 Verifying : libfontenc-1.1.6-2.fc38.x86_64 65/285 | |
#6 462.1 Verifying : libglvnd-1:1.6.0-2.fc38.x86_64 66/285 | |
#6 462.1 Verifying : libglvnd-glx-1:1.6.0-2.fc38.x86_64 67/285 | |
#6 462.1 Verifying : libglvnd-opengl-1:1.6.0-2.fc38.x86_64 68/285 | |
#6 462.1 Verifying : libijs-0.35-17.fc38.x86_64 69/285 | |
#6 462.1 Verifying : libimagequant-2.17.0-4.fc38.x86_64 70/285 | |
#6 462.1 Verifying : libjpeg-turbo-2.1.4-2.fc38.x86_64 71/285 | |
#6 462.1 Verifying : libjxl-1:0.7.0-6.fc38.x86_64 72/285 | |
#6 462.1 Verifying : libkcapi-1.4.0-5.fc38.x86_64 73/285 | |
#6 462.1 Verifying : libkcapi-hmaccalc-1.4.0-5.fc38.x86_64 74/285 | |
#6 462.1 Verifying : liblerc-4.0.0-3.fc38.x86_64 75/285 | |
#6 462.1 Verifying : liblqr-1-0.4.2-21.fc38.x86_64 76/285 | |
#6 462.1 Verifying : libmpc-1.3.1-2.fc38.x86_64 77/285 | |
#6 462.1 Verifying : libpaper-1:2.0.8-1.fc38.x86_64 78/285 | |
#6 462.1 Verifying : libpciaccess-0.16-8.fc38.x86_64 79/285 | |
#6 462.1 Verifying : libpng-2:1.6.37-14.fc38.x86_64 80/285 | |
#6 462.1 Verifying : libraqm-0.8.0-4.fc38.x86_64 81/285 | |
#6 462.1 Verifying : libseccomp-2.5.3-4.fc38.x86_64 82/285 | |
#6 462.1 Verifying : libthai-0.1.29-4.fc38.x86_64 83/285 | |
#6 462.1 Verifying : libtool-ltdl-2.4.7-6.fc38.x86_64 84/285 | |
#6 462.1 Verifying : libutempter-1.2.1-8.fc38.x86_64 85/285 | |
#6 462.1 Verifying : libvmaf-2.3.0-5.fc38.x86_64 86/285 | |
#6 462.1 Verifying : libwmf-lite-0.2.12-10.fc38.x86_64 87/285 | |
#6 462.1 Verifying : libxcb-1.13.1-11.fc38.x86_64 88/285 | |
#6 462.1 Verifying : libxkbcommon-1.5.0-2.fc38.x86_64 89/285 | |
#6 462.1 Verifying : libxshmfence-1.3-12.fc38.x86_64 90/285 | |
#6 462.1 Verifying : libzip-1.9.2-3.fc38.x86_64 91/285 | |
#6 462.1 Verifying : lm_sensors-libs-3.6.0-13.fc38.x86_64 92/285 | |
#6 462.1 Verifying : lolcat-1.4-1.fc38.x86_64 93/285 | |
#6 462.1 Verifying : memstrack-0.2.5-1.fc38.x86_64 94/285 | |
#6 462.1 Verifying : mkfontscale-1.2.2-3.fc38.x86_64 95/285 | |
#6 462.1 Verifying : neofetch-7.1.0-9.fc38.noarch 96/285 | |
#6 462.1 Verifying : netpbm-11.02.00-1.fc38.x86_64 97/285 | |
#6 462.1 Verifying : open-sans-fonts-1.10-18.fc38.noarch 98/285 | |
#6 462.1 Verifying : os-prober-1.81-3.fc38.x86_64 99/285 | |
#6 462.1 Verifying : pango-1.50.14-1.fc38.x86_64 100/285 | |
#6 462.1 Verifying : pciutils-3.9.0-3.fc38.x86_64 101/285 | |
#6 462.1 Verifying : pciutils-libs-3.9.0-3.fc38.x86_64 102/285 | |
#6 462.1 Verifying : perl-Carp-1.52-490.fc38.noarch 103/285 | |
#6 462.1 Verifying : perl-Data-Dumper-2.184-491.fc38.x86_64 104/285 | |
#6 462.1 Verifying : perl-Digest-1.20-490.fc38.noarch 105/285 | |
#6 462.1 Verifying : perl-Digest-MD5-2.58-490.fc38.x86_64 106/285 | |
#6 462.1 Verifying : perl-Encode-4:3.19-493.fc38.x86_64 107/285 | |
#6 462.1 Verifying : perl-Error-1:0.17029-11.fc38.noarch 108/285 | |
#6 462.1 Verifying : perl-Exporter-5.77-490.fc38.noarch 109/285 | |
#6 462.1 Verifying : perl-File-Path-2.18-490.fc38.noarch 110/285 | |
#6 462.1 Verifying : perl-File-Temp-1:0.231.100-490.fc38.noarch 111/285 | |
#6 462.1 Verifying : perl-Getopt-Long-1:2.54-2.fc38.noarch 112/285 | |
#6 462.1 Verifying : perl-IO-Socket-IP-0.41-492.fc38.noarch 113/285 | |
#6 462.1 Verifying : perl-IO-Socket-SSL-2.081-1.fc38.noarch 114/285 | |
#6 462.1 Verifying : perl-MIME-Base64-3.16-490.fc38.x86_64 115/285 | |
#6 462.1 Verifying : perl-Mozilla-CA-20221114-2.fc38.noarch 116/285 | |
#6 462.1 Verifying : perl-NKF-1:2.1.4-28.fc38.x86_64 117/285 | |
#6 462.1 Verifying : perl-Net-SSLeay-1.92-5.fc38.x86_64 118/285 | |
#6 462.1 Verifying : perl-PathTools-3.84-490.fc38.x86_64 119/285 | |
#6 462.1 Verifying : perl-Pod-Escapes-1:1.07-490.fc38.noarch 120/285 | |
#6 462.1 Verifying : perl-Pod-Perldoc-3.28.01-491.fc38.noarch 121/285 | |
#6 462.1 Verifying : perl-Pod-Simple-1:3.43-491.fc38.noarch 122/285 | |
#6 462.1 Verifying : perl-Pod-Usage-4:2.03-4.fc38.noarch 123/285 | |
#6 462.1 Verifying : perl-Scalar-List-Utils-5:1.63-490.fc38.x86_64 124/285 | |
#6 462.1 Verifying : perl-Socket-4:2.036-2.fc38.x86_64 125/285 | |
#6 462.1 Verifying : perl-Storable-1:3.26-490.fc38.x86_64 126/285 | |
#6 462.1 Verifying : perl-Term-ANSIColor-5.01-491.fc38.noarch 127/285 | |
#6 462.1 Verifying : perl-Term-Cap-1.18-1.fc38.noarch 128/285 | |
#6 462.1 Verifying : perl-TermReadKey-2.38-16.fc38.x86_64 129/285 | |
#6 462.1 Verifying : perl-Text-ParseWords-3.31-490.fc38.noarch 130/285 | |
#6 462.1 Verifying : perl-Time-Local-2:1.300-490.fc38.noarch 131/285 | |
#6 462.1 Verifying : perl-URI-5.17-2.fc38.noarch 132/285 | |
#6 462.1 Verifying : perl-constant-1.33-491.fc38.noarch 133/285 | |
#6 462.1 Verifying : perl-libnet-3.15-1.fc38.noarch 134/285 | |
#6 462.1 Verifying : perl-parent-1:0.241-1.fc38.noarch 135/285 | |
#6 462.1 Verifying : perl-podlators-1:5.01-2.fc38.noarch 136/285 | |
#6 462.1 Verifying : pigz-2.7-3.fc38.x86_64 137/285 | |
#6 462.1 Verifying : pixman-0.42.2-1.fc38.x86_64 138/285 | |
#6 462.1 Verifying : poppler-data-0.4.11-4.fc38.noarch 139/285 | |
#6 462.1 Verifying : protobuf-c-1.4.1-4.fc38.x86_64 140/285 | |
#6 462.1 Verifying : qrencode-libs-4.1.1-4.fc38.x86_64 141/285 | |
#6 462.1 Verifying : shared-mime-info-2.2-3.fc38.x86_64 142/285 | |
#6 462.1 Verifying : slang-2.3.3-3.fc38.x86_64 143/285 | |
#6 462.1 Verifying : svt-av1-libs-1.4.1-2.fc38.x86_64 144/285 | |
#6 462.1 Verifying : toilet-0.3-14.fc38.x86_64 145/285 | |
#6 462.1 Verifying : urw-base35-bookman-fonts-20200910-16.fc38.noarch 146/285 | |
#6 462.1 Verifying : urw-base35-c059-fonts-20200910-16.fc38.noarch 147/285 | |
#6 462.1 Verifying : urw-base35-d050000l-fonts-20200910-16.fc38.noarc 148/285 | |
#6 462.1 Verifying : urw-base35-fonts-20200910-16.fc38.noarch 149/285 | |
#6 462.1 Verifying : urw-base35-fonts-common-20200910-16.fc38.noarch 150/285 | |
#6 462.1 Verifying : urw-base35-gothic-fonts-20200910-16.fc38.noarch 151/285 | |
#6 462.1 Verifying : urw-base35-nimbus-mono-ps-fonts-20200910-16.fc38 152/285 | |
#6 462.1 Verifying : urw-base35-nimbus-roman-fonts-20200910-16.fc38.n 153/285 | |
#6 462.1 Verifying : urw-base35-nimbus-sans-fonts-20200910-16.fc38.no 154/285 | |
#6 462.1 Verifying : urw-base35-p052-fonts-20200910-16.fc38.noarch 155/285 | |
#6 462.1 Verifying : urw-base35-standard-symbols-ps-fonts-20200910-16 156/285 | |
#6 462.1 Verifying : urw-base35-z003-fonts-20200910-16.fc38.noarch 157/285 | |
#6 462.1 Verifying : util-linux-2.38.1-4.fc38.x86_64 158/285 | |
#6 462.1 Verifying : w3m-0.5.3-60.git20230121.fc38.x86_64 159/285 | |
#6 462.1 Verifying : w3m-img-0.5.3-60.git20230121.fc38.x86_64 160/285 | |
#6 462.1 Verifying : xdpyinfo-1.3.3-3.fc38.x86_64 161/285 | |
#6 462.1 Verifying : xkeyboard-config-2.38-1.fc38.noarch 162/285 | |
#6 462.1 Verifying : xml-common-0.6.3-60.fc38.noarch 163/285 | |
#6 462.1 Verifying : xorg-x11-fonts-ISO8859-1-100dpi-7.5-35.fc38.noar 164/285 | |
#6 462.1 Verifying : xprop-1.2.5-3.fc38.x86_64 165/285 | |
#6 462.1 Verifying : xrandr-1.5.2-2.fc38.x86_64 166/285 | |
#6 462.1 Verifying : xrdb-1.2.1-5.fc38.x86_64 167/285 | |
#6 462.1 Verifying : xwininfo-1.1.5-6.fc38.x86_64 168/285 | |
#6 462.1 Verifying : xz-5.4.1-1.fc38.x86_64 169/285 | |
#6 462.1 Verifying : ImageMagick-1:7.1.1.26-2.fc38.x86_64 170/285 | |
#6 462.1 Verifying : ImageMagick-libs-1:7.1.1.26-2.fc38.x86_64 171/285 | |
#6 462.1 Verifying : LibRaw-0.21.2-2.fc38.x86_64 172/285 | |
#6 462.1 Verifying : adobe-mappings-cmap-20230622-1.fc38.noarch 173/285 | |
#6 462.1 Verifying : adobe-mappings-cmap-deprecated-20230622-1.fc38.n 174/285 | |
#6 462.1 Verifying : avahi-libs-0.8-22.fc38.x86_64 175/285 | |
#6 462.1 Verifying : bind-libs-32:9.18.20-1.fc38.x86_64 176/285 | |
#6 462.1 Verifying : bind-license-32:9.18.20-1.fc38.noarch 177/285 | |
#6 462.1 Verifying : bind-utils-32:9.18.20-1.fc38.x86_64 178/285 | |
#6 462.1 Verifying : caca-utils-0.99-0.69.beta20.fc38.x86_64 179/285 | |
#6 462.1 Verifying : cairo-1.17.8-4.fc38.x86_64 180/285 | |
#6 462.1 Verifying : cairo-gobject-1.17.8-4.fc38.x86_64 181/285 | |
#6 462.1 Verifying : cowsay-3.7.0-10.fc38.noarch 182/285 | |
#6 462.1 Verifying : cpp-13.2.1-4.fc38.x86_64 183/285 | |
#6 462.1 Verifying : cups-libs-1:2.4.7-5.fc38.x86_64 184/285 | |
#6 462.1 Verifying : dbus-1:1.14.10-1.fc38.x86_64 185/285 | |
#6 462.1 Verifying : dbus-common-1:1.14.10-1.fc38.noarch 186/285 | |
#6 462.1 Verifying : dbus-libs-1:1.14.10-1.fc38.x86_64 187/285 | |
#6 462.1 Verifying : diffutils-3.10-1.fc38.x86_64 188/285 | |
#6 462.1 Verifying : dracut-059-5.fc38.x86_64 189/285 | |
#6 462.1 Verifying : fftw-libs-double-3.3.10-10.fc38.x86_64 190/285 | |
#6 462.1 Verifying : giflib-5.2.1-17.fc38.x86_64 191/285 | |
#6 462.1 Verifying : git-2.43.0-1.fc38.x86_64 192/285 | |
#6 462.1 Verifying : git-core-2.43.0-1.fc38.x86_64 193/285 | |
#6 462.1 Verifying : git-core-doc-2.43.0-1.fc38.noarch 194/285 | |
#6 462.1 Verifying : glibc-langpack-ja-2.37-18.fc38.x86_64 195/285 | |
#6 462.1 Verifying : glibc-locale-source-2.37-18.fc38.x86_64 196/285 | |
#6 462.1 Verifying : google-droid-sans-fonts-20200215-15.fc38.noarch 197/285 | |
#6 462.1 Verifying : google-noto-fonts-common-20230201-2.fc38.noarch 198/285 | |
#6 462.1 Verifying : google-noto-sans-vf-fonts-20230201-2.fc38.noarch 199/285 | |
#6 462.1 Verifying : graphviz-7.1.0-3.fc38.x86_64 200/285 | |
#6 462.1 Verifying : grub2-common-1:2.06-114.fc38.noarch 201/285 | |
#6 462.1 Verifying : grub2-tools-1:2.06-114.fc38.x86_64 202/285 | |
#6 462.1 Verifying : grub2-tools-minimal-1:2.06-114.fc38.x86_64 203/285 | |
#6 462.1 Verifying : grubby-8.40-70.fc38.x86_64 204/285 | |
#6 462.1 Verifying : highway-1.0.7-1.fc38.x86_64 205/285 | |
#6 462.1 Verifying : hwdata-0.378-1.fc38.noarch 206/285 | |
#6 462.1 Verifying : imath-3.1.9-1.fc38.x86_64 207/285 | |
#6 462.1 Verifying : langpacks-core-font-en-3.0-32.fc38.noarch 208/285 | |
#6 462.1 Verifying : less-633-1.fc38.x86_64 209/285 | |
#6 462.1 Verifying : libX11-1.8.7-1.fc38.x86_64 210/285 | |
#6 462.1 Verifying : libX11-common-1.8.7-1.fc38.noarch 211/285 | |
#6 462.1 Verifying : libX11-xcb-1.8.7-1.fc38.x86_64 212/285 | |
#6 462.1 Verifying : libXft-2.3.8-2.fc38.x86_64 213/285 | |
#6 462.1 Verifying : libXi-1.8.1-1.fc38.x86_64 214/285 | |
#6 462.1 Verifying : libXpm-3.5.17-1.fc38.x86_64 215/285 | |
#6 462.1 Verifying : libaom-3.8.0-1.fc38.x86_64 216/285 | |
#6 462.1 Verifying : libcaca-0.99-0.69.beta20.fc38.x86_64 217/285 | |
#6 462.1 Verifying : libdav1d-1.2.1-1.fc38.x86_64 218/285 | |
#6 462.1 Verifying : libdrm-2.4.120-1.fc38.x86_64 219/285 | |
#6 462.1 Verifying : libgs-10.02.1-2.fc38.x86_64 220/285 | |
#6 462.1 Verifying : libheif-1.17.5-1.fc38.x86_64 221/285 | |
#6 462.1 Verifying : libmaxminddb-1.9.1-1.fc38.x86_64 222/285 | |
#6 462.1 Verifying : librsvg2-2.56.4-1.fc38.x86_64 223/285 | |
#6 462.1 Verifying : libtiff-4.4.0-8.fc38.x86_64 224/285 | |
#6 462.1 Verifying : libuv-1:1.47.0-3.fc38.x86_64 225/285 | |
#6 462.1 Verifying : libwebp-1.3.2-2.fc38.x86_64 226/285 | |
#6 462.1 Verifying : llvm-libs-16.0.6-3.fc38.x86_64 227/285 | |
#6 462.1 Verifying : lmdb-libs-0.9.31-1.fc38.x86_64 228/285 | |
#6 462.1 Verifying : mesa-dri-drivers-23.1.9-1.fc38.x86_64 229/285 | |
#6 462.1 Verifying : mesa-filesystem-23.1.9-1.fc38.x86_64 230/285 | |
#6 462.1 Verifying : mesa-libGL-23.1.9-1.fc38.x86_64 231/285 | |
#6 462.1 Verifying : mesa-libGLU-9.0.3-1.fc38.x86_64 232/285 | |
#6 462.1 Verifying : mesa-libglapi-23.1.9-1.fc38.x86_64 233/285 | |
#6 462.1 Verifying : mesa-va-drivers-23.1.9-1.fc38.x86_64 234/285 | |
#6 462.1 Verifying : ncurses-6.4-7.20230520.fc38.x86_64 235/285 | |
#6 462.1 Verifying : nspr-4.35.0-14.fc38.x86_64 236/285 | |
#6 462.1 Verifying : nss-3.96.1-1.fc38.x86_64 237/285 | |
#6 462.1 Verifying : nss-softokn-3.96.1-1.fc38.x86_64 238/285 | |
#6 462.1 Verifying : nss-softokn-freebl-3.96.1-1.fc38.x86_64 239/285 | |
#6 462.1 Verifying : nss-sysinit-3.96.1-1.fc38.x86_64 240/285 | |
#6 462.1 Verifying : nss-util-3.96.1-1.fc38.x86_64 241/285 | |
#6 462.1 Verifying : openexr-libs-3.1.10-1.fc38.x86_64 242/285 | |
#6 462.1 Verifying : openjpeg2-2.5.0-5.fc38.x86_64 243/285 | |
#6 462.1 Verifying : openssh-9.0p1-18.fc38.x86_64 244/285 | |
#6 462.1 Verifying : openssh-clients-9.0p1-18.fc38.x86_64 245/285 | |
#6 462.1 Verifying : perl-AutoLoader-5.74-498.fc38.noarch 246/285 | |
#6 462.1 Verifying : perl-B-1.83-498.fc38.x86_64 247/285 | |
#6 462.1 Verifying : perl-Class-Struct-0.66-498.fc38.noarch 248/285 | |
#6 462.1 Verifying : perl-DynaLoader-1.52-498.fc38.x86_64 249/285 | |
#6 462.1 Verifying : perl-Errno-1.36-498.fc38.x86_64 250/285 | |
#6 462.1 Verifying : perl-Fcntl-1.15-498.fc38.x86_64 251/285 | |
#6 462.1 Verifying : perl-File-Basename-2.85-498.fc38.noarch 252/285 | |
#6 462.1 Verifying : perl-File-Find-1.40-498.fc38.noarch 253/285 | |
#6 462.1 Verifying : perl-File-stat-1.12-498.fc38.noarch 254/285 | |
#6 462.1 Verifying : perl-FileHandle-2.03-498.fc38.noarch 255/285 | |
#6 462.1 Verifying : perl-Getopt-Std-1.13-498.fc38.noarch 256/285 | |
#6 462.1 Verifying : perl-Git-2.43.0-1.fc38.noarch 257/285 | |
#6 462.1 Verifying : perl-HTTP-Tiny-0.086-2.fc38.noarch 258/285 | |
#6 462.1 Verifying : perl-IO-1.50-498.fc38.x86_64 259/285 | |
#6 462.1 Verifying : perl-IPC-Open3-1.22-498.fc38.noarch 260/285 | |
#6 462.1 Verifying : perl-NDBM_File-1.15-498.fc38.x86_64 261/285 | |
#6 462.1 Verifying : perl-POSIX-2.03-498.fc38.x86_64 262/285 | |
#6 462.1 Verifying : perl-SelectSaver-1.02-498.fc38.noarch 263/285 | |
#6 462.1 Verifying : perl-Symbol-1.09-498.fc38.noarch 264/285 | |
#6 462.1 Verifying : perl-Text-Tabs+Wrap-2023.0511-1.fc38.noarch 265/285 | |
#6 462.1 Verifying : perl-base-2.27-498.fc38.noarch 266/285 | |
#6 462.1 Verifying : perl-if-0.61.000-498.fc38.noarch 267/285 | |
#6 462.1 Verifying : perl-interpreter-4:5.36.3-498.fc38.x86_64 268/285 | |
#6 462.1 Verifying : perl-lib-0.65-498.fc38.x86_64 269/285 | |
#6 462.1 Verifying : perl-libs-4:5.36.3-498.fc38.x86_64 270/285 | |
#6 462.1 Verifying : perl-locale-1.10-498.fc38.noarch 271/285 | |
#6 462.1 Verifying : perl-mro-1.26-498.fc38.x86_64 272/285 | |
#6 462.1 Verifying : perl-overload-1.35-498.fc38.noarch 273/285 | |
#6 462.1 Verifying : perl-overloading-0.02-498.fc38.noarch 274/285 | |
#6 462.1 Verifying : perl-vars-1.05-498.fc38.noarch 275/285 | |
#6 462.1 Verifying : poppler-23.02.0-3.fc38.x86_64 276/285 | |
#6 462.1 Verifying : poppler-glib-23.02.0-3.fc38.x86_64 277/285 | |
#6 462.1 Verifying : procps-ng-3.3.17-11.fc38.x86_64 278/285 | |
#6 462.1 Verifying : rav1e-libs-0.6.6-4.fc38.x86_64 279/285 | |
#6 462.1 Verifying : systemd-253.15-2.fc38.x86_64 280/285 | |
#6 462.1 Verifying : systemd-networkd-253.15-2.fc38.x86_64 281/285 | |
#6 462.1 Verifying : systemd-pam-253.15-2.fc38.x86_64 282/285 | |
#6 462.1 Verifying : systemd-resolved-253.15-2.fc38.x86_64 283/285 | |
#6 462.1 Verifying : systemd-udev-253.15-2.fc38.x86_64 284/285 | |
#6 462.1 Verifying : tpm2-tools-5.5-3.fc38.x86_64 285/285 | |
#6 473.4 | |
#6 473.4 Installed: | |
#6 473.4 ImageMagick-1:7.1.1.26-2.fc38.x86_64 | |
#6 473.4 ImageMagick-libs-1:7.1.1.26-2.fc38.x86_64 | |
#6 473.4 LibRaw-0.21.2-2.fc38.x86_64 | |
#6 473.4 adobe-mappings-cmap-20230622-1.fc38.noarch | |
#6 473.4 adobe-mappings-cmap-deprecated-20230622-1.fc38.noarch | |
#6 473.4 adobe-mappings-pdf-20190401-3.fc38.noarch | |
#6 473.4 avahi-libs-0.8-22.fc38.x86_64 | |
#6 473.4 bind-libs-32:9.18.20-1.fc38.x86_64 | |
#6 473.4 bind-license-32:9.18.20-1.fc38.noarch | |
#6 473.4 bind-utils-32:9.18.20-1.fc38.x86_64 | |
#6 473.4 caca-utils-0.99-0.69.beta20.fc38.x86_64 | |
#6 473.4 cairo-1.17.8-4.fc38.x86_64 | |
#6 473.4 cairo-gobject-1.17.8-4.fc38.x86_64 | |
#6 473.4 catimg-2.7.0-8.fc38.x86_64 | |
#6 473.4 cowsay-3.7.0-10.fc38.noarch | |
#6 473.4 cpio-2.13-14.fc38.x86_64 | |
#6 473.4 cpp-13.2.1-4.fc38.x86_64 | |
#6 473.4 crypto-policies-scripts-20230301-1.gita12f7b2.fc38.noarch | |
#6 473.4 cryptsetup-libs-2.6.1-1.fc38.x86_64 | |
#6 473.4 cups-libs-1:2.4.7-5.fc38.x86_64 | |
#6 473.4 dbus-1:1.14.10-1.fc38.x86_64 | |
#6 473.4 dbus-broker-33-1.fc38.x86_64 | |
#6 473.4 dbus-common-1:1.14.10-1.fc38.noarch | |
#6 473.4 dbus-libs-1:1.14.10-1.fc38.x86_64 | |
#6 473.4 device-mapper-1.02.189-2.fc38.x86_64 | |
#6 473.4 device-mapper-libs-1.02.189-2.fc38.x86_64 | |
#6 473.4 diffutils-3.10-1.fc38.x86_64 | |
#6 473.4 dracut-059-5.fc38.x86_64 | |
#6 473.4 fftw-libs-double-3.3.10-10.fc38.x86_64 | |
#6 473.4 figlet-2.2.5-25.20151018gita565ae1.fc38.x86_64 | |
#6 473.4 file-5.44-3.fc38.x86_64 | |
#6 473.4 fontconfig-2.14.2-1.fc38.x86_64 | |
#6 473.4 fonts-filesystem-1:2.0.5-11.fc38.noarch | |
#6 473.4 freeglut-3.4.0-2.fc38.x86_64 | |
#6 473.4 freetype-2.13.0-2.fc38.x86_64 | |
#6 473.4 fribidi-1.0.12-3.fc38.x86_64 | |
#6 473.4 fstrm-0.6.1-6.fc38.x86_64 | |
#6 473.4 fuse-libs-2.9.9-16.fc38.x86_64 | |
#6 473.4 gc-8.2.2-3.fc38.x86_64 | |
#6 473.4 gd-2.3.3-10.fc38.x86_64 | |
#6 473.4 gdk-pixbuf2-2.42.10-2.fc38.x86_64 | |
#6 473.4 gdk-pixbuf2-xlib-2.40.2-6.fc38.x86_64 | |
#6 473.4 gettext-envsubst-0.21.1-2.fc38.x86_64 | |
#6 473.4 gettext-libs-0.21.1-2.fc38.x86_64 | |
#6 473.4 gettext-runtime-0.21.1-2.fc38.x86_64 | |
#6 473.4 giflib-5.2.1-17.fc38.x86_64 | |
#6 473.4 git-2.43.0-1.fc38.x86_64 | |
#6 473.4 git-core-2.43.0-1.fc38.x86_64 | |
#6 473.4 git-core-doc-2.43.0-1.fc38.noarch | |
#6 473.4 glibc-langpack-ja-2.37-18.fc38.x86_64 | |
#6 473.4 glibc-locale-source-2.37-18.fc38.x86_64 | |
#6 473.4 google-droid-sans-fonts-20200215-15.fc38.noarch | |
#6 473.4 google-noto-fonts-common-20230201-2.fc38.noarch | |
#6 473.4 google-noto-sans-vf-fonts-20230201-2.fc38.noarch | |
#6 473.4 gpm-libs-1.20.7-42.fc38.x86_64 | |
#6 473.4 graphite2-1.3.14-11.fc38.x86_64 | |
#6 473.4 graphviz-7.1.0-3.fc38.x86_64 | |
#6 473.4 groff-base-1.22.4-11.fc38.x86_64 | |
#6 473.4 grub2-common-1:2.06-114.fc38.noarch | |
#6 473.4 grub2-tools-1:2.06-114.fc38.x86_64 | |
#6 473.4 grub2-tools-minimal-1:2.06-114.fc38.x86_64 | |
#6 473.4 grubby-8.40-70.fc38.x86_64 | |
#6 473.4 gts-0.7.6-44.20121130.fc38.x86_64 | |
#6 473.4 harfbuzz-7.1.0-1.fc38.x86_64 | |
#6 473.4 highway-1.0.7-1.fc38.x86_64 | |
#6 473.4 hwdata-0.378-1.fc38.noarch | |
#6 473.4 imath-3.1.9-1.fc38.x86_64 | |
#6 473.4 imlib2-1.7.4-4.fc38.x86_64 | |
#6 473.4 jasper-libs-3.0.6-2.fc38.x86_64 | |
#6 473.4 jbig2dec-libs-0.19-8.fc38.x86_64 | |
#6 473.4 jbigkit-libs-2.1-25.fc38.x86_64 | |
#6 473.4 jemalloc-5.3.0-3.fc38.x86_64 | |
#6 473.4 jxl-pixbuf-loader-1:0.7.0-6.fc38.x86_64 | |
#6 473.4 kbd-2.5.1-5.fc38.x86_64 | |
#6 473.4 kbd-legacy-2.5.1-5.fc38.noarch | |
#6 473.4 kbd-misc-2.5.1-5.fc38.noarch | |
#6 473.4 kmod-30-4.fc38.x86_64 | |
#6 473.4 kmod-libs-30-4.fc38.x86_64 | |
#6 473.4 kpartx-0.9.4-2.fc38.x86_64 | |
#6 473.4 langpacks-core-font-en-3.0-32.fc38.noarch | |
#6 473.4 lasi-1.1.3-10.fc38.x86_64 | |
#6 473.4 lcms2-2.15-1.fc38.x86_64 | |
#6 473.4 less-633-1.fc38.x86_64 | |
#6 473.4 libICE-1.0.10-10.fc38.x86_64 | |
#6 473.4 libSM-1.2.3-12.fc38.x86_64 | |
#6 473.4 libX11-1.8.7-1.fc38.x86_64 | |
#6 473.4 libX11-common-1.8.7-1.fc38.noarch | |
#6 473.4 libX11-xcb-1.8.7-1.fc38.x86_64 | |
#6 473.4 libXau-1.0.11-2.fc38.x86_64 | |
#6 473.4 libXcomposite-0.4.5-9.fc38.x86_64 | |
#6 473.4 libXext-1.3.5-2.fc38.x86_64 | |
#6 473.4 libXfixes-6.0.0-5.fc38.x86_64 | |
#6 473.4 libXft-2.3.8-2.fc38.x86_64 | |
#6 473.4 libXi-1.8.1-1.fc38.x86_64 | |
#6 473.4 libXinerama-1.1.5-2.fc38.x86_64 | |
#6 473.4 libXmu-1.1.4-2.fc38.x86_64 | |
#6 473.4 libXpm-3.5.17-1.fc38.x86_64 | |
#6 473.4 libXrandr-1.5.2-10.fc38.x86_64 | |
#6 473.4 libXrender-0.9.11-2.fc38.x86_64 | |
#6 473.4 libXt-1.2.1-4.fc38.x86_64 | |
#6 473.4 libXtst-1.2.4-2.fc38.x86_64 | |
#6 473.4 libXxf86dga-1.1.5-10.fc38.x86_64 | |
#6 473.4 libXxf86vm-1.1.5-2.fc38.x86_64 | |
#6 473.4 libaom-3.8.0-1.fc38.x86_64 | |
#6 473.4 libargon2-20190702-2.fc38.x86_64 | |
#6 473.4 libavif-0.11.1-7.fc38.x86_64 | |
#6 473.4 libcaca-0.99-0.69.beta20.fc38.x86_64 | |
#6 473.4 libcbor-0.7.0-9.fc38.x86_64 | |
#6 473.4 libdatrie-0.2.13-5.fc38.x86_64 | |
#6 473.4 libdav1d-1.2.1-1.fc38.x86_64 | |
#6 473.4 libdrm-2.4.120-1.fc38.x86_64 | |
#6 473.4 libedit-3.1-45.20221030cvs.fc38.x86_64 | |
#6 473.4 libfdisk-2.38.1-4.fc38.x86_64 | |
#6 473.4 libfido2-1.12.0-3.fc38.x86_64 | |
#6 473.4 libfontenc-1.1.6-2.fc38.x86_64 | |
#6 473.4 libglvnd-1:1.6.0-2.fc38.x86_64 | |
#6 473.4 libglvnd-glx-1:1.6.0-2.fc38.x86_64 | |
#6 473.4 libglvnd-opengl-1:1.6.0-2.fc38.x86_64 | |
#6 473.4 libgs-10.02.1-2.fc38.x86_64 | |
#6 473.4 libheif-1.17.5-1.fc38.x86_64 | |
#6 473.4 libijs-0.35-17.fc38.x86_64 | |
#6 473.4 libimagequant-2.17.0-4.fc38.x86_64 | |
#6 473.4 libjpeg-turbo-2.1.4-2.fc38.x86_64 | |
#6 473.4 libjxl-1:0.7.0-6.fc38.x86_64 | |
#6 473.4 libkcapi-1.4.0-5.fc38.x86_64 | |
#6 473.4 libkcapi-hmaccalc-1.4.0-5.fc38.x86_64 | |
#6 473.4 liblerc-4.0.0-3.fc38.x86_64 | |
#6 473.4 liblqr-1-0.4.2-21.fc38.x86_64 | |
#6 473.4 libmaxminddb-1.9.1-1.fc38.x86_64 | |
#6 473.4 libmpc-1.3.1-2.fc38.x86_64 | |
#6 473.4 libpaper-1:2.0.8-1.fc38.x86_64 | |
#6 473.4 libpciaccess-0.16-8.fc38.x86_64 | |
#6 473.4 libpng-2:1.6.37-14.fc38.x86_64 | |
#6 473.4 libraqm-0.8.0-4.fc38.x86_64 | |
#6 473.4 librsvg2-2.56.4-1.fc38.x86_64 | |
#6 473.4 libseccomp-2.5.3-4.fc38.x86_64 | |
#6 473.4 libthai-0.1.29-4.fc38.x86_64 | |
#6 473.4 libtiff-4.4.0-8.fc38.x86_64 | |
#6 473.4 libtool-ltdl-2.4.7-6.fc38.x86_64 | |
#6 473.4 libutempter-1.2.1-8.fc38.x86_64 | |
#6 473.4 libuv-1:1.47.0-3.fc38.x86_64 | |
#6 473.4 libvmaf-2.3.0-5.fc38.x86_64 | |
#6 473.4 libwebp-1.3.2-2.fc38.x86_64 | |
#6 473.4 libwmf-lite-0.2.12-10.fc38.x86_64 | |
#6 473.4 libxcb-1.13.1-11.fc38.x86_64 | |
#6 473.4 libxkbcommon-1.5.0-2.fc38.x86_64 | |
#6 473.4 libxshmfence-1.3-12.fc38.x86_64 | |
#6 473.4 libzip-1.9.2-3.fc38.x86_64 | |
#6 473.4 llvm-libs-16.0.6-3.fc38.x86_64 | |
#6 473.4 lm_sensors-libs-3.6.0-13.fc38.x86_64 | |
#6 473.4 lmdb-libs-0.9.31-1.fc38.x86_64 | |
#6 473.4 lolcat-1.4-1.fc38.x86_64 | |
#6 473.4 memstrack-0.2.5-1.fc38.x86_64 | |
#6 473.4 mesa-dri-drivers-23.1.9-1.fc38.x86_64 | |
#6 473.4 mesa-filesystem-23.1.9-1.fc38.x86_64 | |
#6 473.4 mesa-libGL-23.1.9-1.fc38.x86_64 | |
#6 473.4 mesa-libGLU-9.0.3-1.fc38.x86_64 | |
#6 473.4 mesa-libglapi-23.1.9-1.fc38.x86_64 | |
#6 473.4 mesa-va-drivers-23.1.9-1.fc38.x86_64 | |
#6 473.4 mkfontscale-1.2.2-3.fc38.x86_64 | |
#6 473.4 ncurses-6.4-7.20230520.fc38.x86_64 | |
#6 473.4 neofetch-7.1.0-9.fc38.noarch | |
#6 473.4 netpbm-11.02.00-1.fc38.x86_64 | |
#6 473.4 nspr-4.35.0-14.fc38.x86_64 | |
#6 473.4 nss-3.96.1-1.fc38.x86_64 | |
#6 473.4 nss-softokn-3.96.1-1.fc38.x86_64 | |
#6 473.4 nss-softokn-freebl-3.96.1-1.fc38.x86_64 | |
#6 473.4 nss-sysinit-3.96.1-1.fc38.x86_64 | |
#6 473.4 nss-util-3.96.1-1.fc38.x86_64 | |
#6 473.4 open-sans-fonts-1.10-18.fc38.noarch | |
#6 473.4 openexr-libs-3.1.10-1.fc38.x86_64 | |
#6 473.4 openjpeg2-2.5.0-5.fc38.x86_64 | |
#6 473.4 openssh-9.0p1-18.fc38.x86_64 | |
#6 473.4 openssh-clients-9.0p1-18.fc38.x86_64 | |
#6 473.4 os-prober-1.81-3.fc38.x86_64 | |
#6 473.4 pango-1.50.14-1.fc38.x86_64 | |
#6 473.4 pciutils-3.9.0-3.fc38.x86_64 | |
#6 473.4 pciutils-libs-3.9.0-3.fc38.x86_64 | |
#6 473.4 perl-AutoLoader-5.74-498.fc38.noarch | |
#6 473.4 perl-B-1.83-498.fc38.x86_64 | |
#6 473.4 perl-Carp-1.52-490.fc38.noarch | |
#6 473.4 perl-Class-Struct-0.66-498.fc38.noarch | |
#6 473.4 perl-Data-Dumper-2.184-491.fc38.x86_64 | |
#6 473.4 perl-Digest-1.20-490.fc38.noarch | |
#6 473.4 perl-Digest-MD5-2.58-490.fc38.x86_64 | |
#6 473.4 perl-DynaLoader-1.52-498.fc38.x86_64 | |
#6 473.4 perl-Encode-4:3.19-493.fc38.x86_64 | |
#6 473.4 perl-Errno-1.36-498.fc38.x86_64 | |
#6 473.4 perl-Error-1:0.17029-11.fc38.noarch | |
#6 473.4 perl-Exporter-5.77-490.fc38.noarch | |
#6 473.4 perl-Fcntl-1.15-498.fc38.x86_64 | |
#6 473.4 perl-File-Basename-2.85-498.fc38.noarch | |
#6 473.4 perl-File-Find-1.40-498.fc38.noarch | |
#6 473.4 perl-File-Path-2.18-490.fc38.noarch | |
#6 473.4 perl-File-Temp-1:0.231.100-490.fc38.noarch | |
#6 473.4 perl-File-stat-1.12-498.fc38.noarch | |
#6 473.4 perl-FileHandle-2.03-498.fc38.noarch | |
#6 473.4 perl-Getopt-Long-1:2.54-2.fc38.noarch | |
#6 473.4 perl-Getopt-Std-1.13-498.fc38.noarch | |
#6 473.4 perl-Git-2.43.0-1.fc38.noarch | |
#6 473.4 perl-HTTP-Tiny-0.086-2.fc38.noarch | |
#6 473.4 perl-IO-1.50-498.fc38.x86_64 | |
#6 473.4 perl-IO-Socket-IP-0.41-492.fc38.noarch | |
#6 473.4 perl-IO-Socket-SSL-2.081-1.fc38.noarch | |
#6 473.4 perl-IPC-Open3-1.22-498.fc38.noarch | |
#6 473.4 perl-MIME-Base64-3.16-490.fc38.x86_64 | |
#6 473.4 perl-Mozilla-CA-20221114-2.fc38.noarch | |
#6 473.4 perl-NDBM_File-1.15-498.fc38.x86_64 | |
#6 473.4 perl-NKF-1:2.1.4-28.fc38.x86_64 | |
#6 473.4 perl-Net-SSLeay-1.92-5.fc38.x86_64 | |
#6 473.4 perl-POSIX-2.03-498.fc38.x86_64 | |
#6 473.4 perl-PathTools-3.84-490.fc38.x86_64 | |
#6 473.4 perl-Pod-Escapes-1:1.07-490.fc38.noarch | |
#6 473.4 perl-Pod-Perldoc-3.28.01-491.fc38.noarch | |
#6 473.4 perl-Pod-Simple-1:3.43-491.fc38.noarch | |
#6 473.4 perl-Pod-Usage-4:2.03-4.fc38.noarch | |
#6 473.4 perl-Scalar-List-Utils-5:1.63-490.fc38.x86_64 | |
#6 473.4 perl-SelectSaver-1.02-498.fc38.noarch | |
#6 473.4 perl-Socket-4:2.036-2.fc38.x86_64 | |
#6 473.4 perl-Storable-1:3.26-490.fc38.x86_64 | |
#6 473.4 perl-Symbol-1.09-498.fc38.noarch | |
#6 473.4 perl-Term-ANSIColor-5.01-491.fc38.noarch | |
#6 473.4 perl-Term-Cap-1.18-1.fc38.noarch | |
#6 473.4 perl-TermReadKey-2.38-16.fc38.x86_64 | |
#6 473.4 perl-Text-ParseWords-3.31-490.fc38.noarch | |
#6 473.4 perl-Text-Tabs+Wrap-2023.0511-1.fc38.noarch | |
#6 473.4 perl-Time-Local-2:1.300-490.fc38.noarch | |
#6 473.4 perl-URI-5.17-2.fc38.noarch | |
#6 473.4 perl-base-2.27-498.fc38.noarch | |
#6 473.4 perl-constant-1.33-491.fc38.noarch | |
#6 473.4 perl-if-0.61.000-498.fc38.noarch | |
#6 473.4 perl-interpreter-4:5.36.3-498.fc38.x86_64 | |
#6 473.4 perl-lib-0.65-498.fc38.x86_64 | |
#6 473.4 perl-libnet-3.15-1.fc38.noarch | |
#6 473.4 perl-libs-4:5.36.3-498.fc38.x86_64 | |
#6 473.4 perl-locale-1.10-498.fc38.noarch | |
#6 473.4 perl-mro-1.26-498.fc38.x86_64 | |
#6 473.4 perl-overload-1.35-498.fc38.noarch | |
#6 473.4 perl-overloading-0.02-498.fc38.noarch | |
#6 473.4 perl-parent-1:0.241-1.fc38.noarch | |
#6 473.4 perl-podlators-1:5.01-2.fc38.noarch | |
#6 473.4 perl-vars-1.05-498.fc38.noarch | |
#6 473.4 pigz-2.7-3.fc38.x86_64 | |
#6 473.4 pixman-0.42.2-1.fc38.x86_64 | |
#6 473.4 poppler-23.02.0-3.fc38.x86_64 | |
#6 473.4 poppler-data-0.4.11-4.fc38.noarch | |
#6 473.4 poppler-glib-23.02.0-3.fc38.x86_64 | |
#6 473.4 procps-ng-3.3.17-11.fc38.x86_64 | |
#6 473.4 protobuf-c-1.4.1-4.fc38.x86_64 | |
#6 473.4 qrencode-libs-4.1.1-4.fc38.x86_64 | |
#6 473.4 rav1e-libs-0.6.6-4.fc38.x86_64 | |
#6 473.4 shared-mime-info-2.2-3.fc38.x86_64 | |
#6 473.4 slang-2.3.3-3.fc38.x86_64 | |
#6 473.4 svt-av1-libs-1.4.1-2.fc38.x86_64 | |
#6 473.4 systemd-253.15-2.fc38.x86_64 | |
#6 473.4 systemd-networkd-253.15-2.fc38.x86_64 | |
#6 473.4 systemd-pam-253.15-2.fc38.x86_64 | |
#6 473.4 systemd-resolved-253.15-2.fc38.x86_64 | |
#6 473.4 systemd-udev-253.15-2.fc38.x86_64 | |
#6 473.4 toilet-0.3-14.fc38.x86_64 | |
#6 473.4 tpm2-tools-5.5-3.fc38.x86_64 | |
#6 473.4 urw-base35-bookman-fonts-20200910-16.fc38.noarch | |
#6 473.4 urw-base35-c059-fonts-20200910-16.fc38.noarch | |
#6 473.4 urw-base35-d050000l-fonts-20200910-16.fc38.noarch | |
#6 473.4 urw-base35-fonts-20200910-16.fc38.noarch | |
#6 473.4 urw-base35-fonts-common-20200910-16.fc38.noarch | |
#6 473.4 urw-base35-gothic-fonts-20200910-16.fc38.noarch | |
#6 473.4 urw-base35-nimbus-mono-ps-fonts-20200910-16.fc38.noarch | |
#6 473.4 urw-base35-nimbus-roman-fonts-20200910-16.fc38.noarch | |
#6 473.4 urw-base35-nimbus-sans-fonts-20200910-16.fc38.noarch | |
#6 473.4 urw-base35-p052-fonts-20200910-16.fc38.noarch | |
#6 473.4 urw-base35-standard-symbols-ps-fonts-20200910-16.fc38.noarch | |
#6 473.4 urw-base35-z003-fonts-20200910-16.fc38.noarch | |
#6 473.4 util-linux-2.38.1-4.fc38.x86_64 | |
#6 473.4 w3m-0.5.3-60.git20230121.fc38.x86_64 | |
#6 473.4 w3m-img-0.5.3-60.git20230121.fc38.x86_64 | |
#6 473.4 xdpyinfo-1.3.3-3.fc38.x86_64 | |
#6 473.4 xkeyboard-config-2.38-1.fc38.noarch | |
#6 473.4 xml-common-0.6.3-60.fc38.noarch | |
#6 473.4 xorg-x11-fonts-ISO8859-1-100dpi-7.5-35.fc38.noarch | |
#6 473.4 xprop-1.2.5-3.fc38.x86_64 | |
#6 473.4 xrandr-1.5.2-2.fc38.x86_64 | |
#6 473.4 xrdb-1.2.1-5.fc38.x86_64 | |
#6 473.4 xwininfo-1.1.5-6.fc38.x86_64 | |
#6 473.4 xz-5.4.1-1.fc38.x86_64 | |
#6 473.4 | |
#6 473.4 Complete! | |
#6 DONE 475.8s | |
| |
#7 [3/6] RUN localedef --force -i ja_JP -f UTF-8 ja_JP.UTF-8 | #6 [2/5] RUN dnf update -y && dnf install -y git glibc-locale-source glibc-langpack-ja figlet lolcat neofetch && dnf clean all |
#7 DONE 3.9s | #6 56.97 Fedora 39 - x86_64 1.6 MB/s | 89 MB 00:55 |
| #6 98.77 Fedora 39 openh264 (From Cisco) - x86_64 402 B/s | 2.5 kB 00:06 |
| #6 149.9 Fedora 39 - x86_64 - Updates 672 kB/s | 33 MB 00:50 |
| #6 162.5 Last metadata expiration check: 0:00:02 ago on Tue Feb 20 13:41:10 2024. |
| #6 167.1 Dependencies resolved. |
| #6 167.1 ====================================================================================== |
| #6 167.1 Package Arch Version Repo Size |
| #6 167.1 ====================================================================================== |
| #6 167.1 Upgrading: |
| #6 167.1 alternatives x86_64 1.26-1.fc39 updates 39 k |
| #6 167.1 audit-libs x86_64 3.1.2-8.fc39 updates 117 k |
| #6 167.1 bash x86_64 5.2.26-1.fc39 updates 1.8 M |
| #6 167.1 coreutils x86_64 9.3-5.fc39 updates 1.1 M |
| #6 167.1 coreutils-common x86_64 9.3-5.fc39 updates 2.1 M |
| #6 167.1 crypto-policies noarch 20231204-1.git1e3a2e4.fc39 updates 100 k |
| #6 167.1 curl x86_64 8.2.1-4.fc39 updates 345 k |
| #6 167.1 dnf noarch 4.18.2-1.fc39 updates 508 k |
| #6 167.1 dnf-data noarch 4.18.2-1.fc39 updates 40 k |
| #6 167.1 elfutils-default-yama-scope noarch 0.190-4.fc39 updates 13 k |
| #6 167.1 elfutils-libelf x86_64 0.190-4.fc39 updates 194 k |
| #6 167.1 elfutils-libs x86_64 0.190-4.fc39 updates 260 k |
| #6 167.1 expat x86_64 2.6.0-1.fc39 updates 113 k |
| #6 167.1 fedora-release-common noarch 39-34 updates 19 k |
| #6 167.1 fedora-release-container noarch 39-34 updates 8.5 k |
| #6 167.1 fedora-release-identity-container noarch 39-34 updates 9.8 k |
| #6 167.1 glib2 x86_64 2.78.3-1.fc39 updates 2.8 M |
| #6 167.1 glibc x86_64 2.38-16.fc39 updates 2.2 M |
| #6 167.1 glibc-common x86_64 2.38-16.fc39 updates 353 k |
| #6 167.1 glibc-minimal-langpack x86_64 2.38-16.fc39 updates 71 k |
| #6 167.1 gnutls x86_64 3.8.3-1.fc39 updates 1.1 M |
| #6 167.1 krb5-libs x86_64 1.21.2-3.fc39 updates 765 k |
| #6 167.1 libacl x86_64 2.3.1-9.fc39 updates 23 k |
| #6 167.1 libblkid x86_64 2.39.3-5.fc39 updates 116 k |
| #6 167.1 libcap x86_64 2.48-9.fc39 updates 68 k |
| #6 167.1 libcurl x86_64 8.2.1-4.fc39 updates 323 k |
| #6 167.1 libgcc x86_64 13.2.1-6.fc39 updates 112 k |
| #6 167.1 libgomp x86_64 13.2.1-6.fc39 updates 322 k |
| #6 167.1 libidn2 x86_64 2.3.7-1.fc39 updates 119 k |
| #6 167.1 libmount x86_64 2.39.3-5.fc39 updates 154 k |
| #6 167.1 libsmartcols x86_64 2.39.3-5.fc39 updates 67 k |
| #6 167.1 libsolv x86_64 0.7.28-1.fc39 updates 426 k |
| #6 167.1 libssh x86_64 0.10.6-2.fc39 updates 212 k |
| #6 167.1 libssh-config noarch 0.10.6-2.fc39 updates 9.0 k |
| #6 167.1 libstdc++ x86_64 13.2.1-6.fc39 updates 865 k |
| #6 167.1 libtirpc x86_64 1.3.4-0.rc2.fc39 updates 94 k |
| #6 167.1 libuuid x86_64 2.39.3-5.fc39 updates 28 k |
| #6 167.1 publicsuffix-list-dafsa noarch 20240107-1.fc39 updates 58 k |
| #6 167.1 python3 x86_64 3.12.1-2.fc39 updates 26 k |
| #6 167.1 python3-dnf noarch 4.18.2-1.fc39 updates 590 k |
| #6 167.1 python3-libs x86_64 3.12.1-2.fc39 updates 9.2 M |
| #6 167.1 python3-rpm x86_64 4.19.1.1-1.fc39 updates 68 k |
| #6 167.1 readline x86_64 8.2-6.fc39 updates 212 k |
| #6 167.1 rpm x86_64 4.19.1.1-1.fc39 updates 538 k |
| #6 167.1 rpm-build-libs x86_64 4.19.1.1-1.fc39 updates 95 k |
| #6 167.1 rpm-libs x86_64 4.19.1.1-1.fc39 updates 312 k |
| #6 167.1 rpm-sequoia x86_64 1.6.0-1.fc39 updates 848 k |
| #6 167.1 rpm-sign-libs x86_64 4.19.1.1-1.fc39 updates 26 k |
| #6 167.1 sudo x86_64 1.9.15-1.p5.fc39 updates 1.3 M |
| #6 167.1 systemd-libs x86_64 254.9-1.fc39 updates 688 k |
| #6 167.1 tpm2-tss x86_64 4.0.1-6.fc39 updates 395 k |
| #6 167.1 tzdata noarch 2024a-2.fc39 updates 715 k |
| #6 167.1 util-linux-core x86_64 2.39.3-5.fc39 updates 508 k |
| #6 167.1 vim-data noarch 2:9.1.113-1.fc39 updates 23 k |
| #6 167.1 vim-minimal x86_64 2:9.1.113-1.fc39 updates 806 k |
| #6 167.1 yum noarch 4.18.2-1.fc39 updates 37 k |
| #6 167.1 zchunk-libs x86_64 1.4.0-1.fc39 updates 52 k |
| #6 167.1 |
| #6 167.1 Transaction Summary |
| #6 167.1 ====================================================================================== |
| #6 167.1 Upgrade 57 Packages |
| #6 167.1 |
| #6 167.1 Total download size: 33 M |
| #6 167.1 Downloading Packages: |
| #6 168.2 (1/57): alternatives-1.26-1.fc39.x86_64.rpm 151 kB/s | 39 kB 00:00 |
| #6 168.5 (2/57): audit-libs-3.1.2-8.fc39.x86_64.rpm 236 kB/s | 117 kB 00:00 |
| #6 169.2 (3/57): bash-5.2.26-1.fc39.x86_64.rpm 1.5 MB/s | 1.8 MB 00:01 |
| #6 169.4 (4/57): coreutils-9.3-5.fc39.x86_64.rpm 1.0 MB/s | 1.1 MB 00:01 |
| #6 170.1 (5/57): crypto-policies-20231204-1.git1e3a2e4.f 118 kB/s | 100 kB 00:00 |
| #6 170.7 (6/57): coreutils-common-9.3-5.fc39.x86_64.rpm 1.0 MB/s | 2.1 MB 00:02 |
| #6 170.8 (7/57): curl-8.2.1-4.fc39.x86_64.rpm 245 kB/s | 345 kB 00:01 |
| #6 170.8 (8/57): dnf-data-4.18.2-1.fc39.noarch.rpm 269 kB/s | 40 kB 00:00 |
| #6 171.1 (9/57): elfutils-default-yama-scope-0.190-4.fc3 41 kB/s | 13 kB 00:00 |
| #6 171.1 (10/57): elfutils-libelf-0.190-4.fc39.x86_64.rp 621 kB/s | 194 kB 00:00 |
| #6 171.4 (11/57): elfutils-libs-0.190-4.fc39.x86_64.rpm 930 kB/s | 260 kB 00:00 |
| #6 171.5 (12/57): fedora-release-common-39-34.noarch.rpm 190 kB/s | 19 kB 00:00 |
| #6 171.5 (13/57): dnf-4.18.2-1.fc39.noarch.rpm 348 kB/s | 508 kB 00:01 |
| #6 171.6 (14/57): fedora-release-container-39-34.noarch. 81 kB/s | 8.5 kB 00:00 |
| #6 171.7 (15/57): fedora-release-identity-container-39-3 59 kB/s | 9.8 kB 00:00 |
| #6 172.1 (16/57): expat-2.6.0-1.fc39.x86_64.rpm 122 kB/s | 113 kB 00:00 |
| #6 173.4 (17/57): glib2-2.78.3-1.fc39.x86_64.rpm 1.5 MB/s | 2.8 MB 00:01 |
| #6 173.5 (18/57): glibc-common-2.38-16.fc39.x86_64.rpm 239 kB/s | 353 kB 00:01 |
| #6 173.6 (19/57): glibc-minimal-langpack-2.38-16.fc39.x8 464 kB/s | 71 kB 00:00 |
| #6 173.7 (20/57): glibc-2.38-16.fc39.x86_64.rpm 1.1 MB/s | 2.2 MB 00:02 |
| #6 174.0 (21/57): libacl-2.3.1-9.fc39.x86_64.rpm 96 kB/s | 23 kB 00:00 |
| #6 174.0 (22/57): gnutls-3.8.3-1.fc39.x86_64.rpm 2.3 MB/s | 1.1 MB 00:00 |
| #6 174.1 (23/57): libcap-2.48-9.fc39.x86_64.rpm 510 kB/s | 68 kB 00:00 |
| #6 174.2 (24/57): libblkid-2.39.3-5.fc39.x86_64.rpm 556 kB/s | 116 kB 00:00 |
| #6 174.4 (25/57): libcurl-8.2.1-4.fc39.x86_64.rpm 1.2 MB/s | 323 kB 00:00 |
| #6 174.4 (26/57): libgcc-13.2.1-6.fc39.x86_64.rpm 415 kB/s | 112 kB 00:00 |
| #6 174.6 (27/57): krb5-libs-1.21.2-3.fc39.x86_64.rpm 737 kB/s | 765 kB 00:01 |
| #6 174.7 (28/57): libidn2-2.3.7-1.fc39.x86_64.rpm 495 kB/s | 119 kB 00:00 |
| #6 174.7 (29/57): libgomp-13.2.1-6.fc39.x86_64.rpm 1.1 MB/s | 322 kB 00:00 |
| #6 174.8 (30/57): libsmartcols-2.39.3-5.fc39.x86_64.rpm 583 kB/s | 67 kB 00:00 |
| #6 174.8 (31/57): libmount-2.39.3-5.fc39.x86_64.rpm 671 kB/s | 154 kB 00:00 |
| #6 175.0 (32/57): libssh-config-0.10.6-2.fc39.noarch.rpm 43 kB/s | 9.0 kB 00:00 |
| #6 175.1 (33/57): libssh-0.10.6-2.fc39.x86_64.rpm 789 kB/s | 212 kB 00:00 |
| #6 175.1 (34/57): libsolv-0.7.28-1.fc39.x86_64.rpm 1.0 MB/s | 426 kB 00:00 |
| #6 175.2 (35/57): libtirpc-1.3.4-0.rc2.fc39.x86_64.rpm 636 kB/s | 94 kB 00:00 |
| #6 175.3 (36/57): libuuid-2.39.3-5.fc39.x86_64.rpm 177 kB/s | 28 kB 00:00 |
| #6 175.4 (37/57): publicsuffix-list-dafsa-20240107-1.fc3 426 kB/s | 58 kB 00:00 |
| #6 175.4 (38/57): python3-3.12.1-2.fc39.x86_64.rpm 215 kB/s | 26 kB 00:00 |
| #6 175.6 (39/57): libstdc++-13.2.1-6.fc39.x86_64.rpm 1.5 MB/s | 865 kB 00:00 |
| #6 175.7 (40/57): python3-dnf-4.18.2-1.fc39.noarch.rpm 1.6 MB/s | 590 kB 00:00 |
| #6 175.8 (41/57): python3-rpm-4.19.1.1-1.fc39.x86_64.rpm 496 kB/s | 68 kB 00:00 |
| #6 176.0 (42/57): readline-8.2-6.fc39.x86_64.rpm 733 kB/s | 212 kB 00:00 |
| #6 176.1 (43/57): rpm-4.19.1.1-1.fc39.x86_64.rpm 1.4 MB/s | 538 kB 00:00 |
| #6 176.2 (44/57): rpm-build-libs-4.19.1.1-1.fc39.x86_64. 595 kB/s | 95 kB 00:00 |
| #6 176.5 (45/57): rpm-libs-4.19.1.1-1.fc39.x86_64.rpm 870 kB/s | 312 kB 00:00 |
| #6 176.7 (46/57): rpm-sign-libs-4.19.1.1-1.fc39.x86_64.r 111 kB/s | 26 kB 00:00 |
| #6 176.8 (47/57): rpm-sequoia-1.6.0-1.fc39.x86_64.rpm 1.4 MB/s | 848 kB 00:00 |
| #6 177.8 (48/57): systemd-libs-254.9-1.fc39.x86_64.rpm 670 kB/s | 688 kB 00:01 |
| #6 178.2 (49/57): tpm2-tss-4.0.1-6.fc39.x86_64.rpm 1.0 MB/s | 395 kB 00:00 |
| #6 178.6 (50/57): tzdata-2024a-2.fc39.noarch.rpm 1.6 MB/s | 715 kB 00:00 |
| #6 179.0 (51/57): util-linux-core-2.39.3-5.fc39.x86_64.r 1.3 MB/s | 508 kB 00:00 |
| #6 179.2 (52/57): vim-data-9.1.113-1.fc39.noarch.rpm 161 kB/s | 23 kB 00:00 |
| #6 179.2 (53/57): sudo-1.9.15-1.p5.fc39.x86_64.rpm 523 kB/s | 1.3 MB 00:02 |
| #6 179.4 (54/57): yum-4.18.2-1.fc39.noarch.rpm 280 kB/s | 37 kB 00:00 |
| #6 179.5 (55/57): zchunk-libs-1.4.0-1.fc39.x86_64.rpm 472 kB/s | 52 kB 00:00 |
| #6 179.7 (56/57): vim-minimal-9.1.113-1.fc39.x86_64.rpm 1.4 MB/s | 806 kB 00:00 |
| #6 182.5 (57/57): python3-libs-3.12.1-2.fc39.x86_64.rpm 1.3 MB/s | 9.2 MB 00:07 |
| #6 182.5 -------------------------------------------------------------------------------- |
| #6 182.5 Total 2.2 MB/s | 33 MB 00:15 |
| #6 184.8 Running transaction check |
| #6 185.1 Transaction check succeeded. |
| #6 185.1 Running transaction test |
| #6 185.9 Transaction test succeeded. |
| #6 185.9 Running transaction |
| #6 196.5 Preparing : 1/1 |
| #6 196.6 Upgrading : libgcc-13.2.1-6.fc39.x86_64 1/114 |
| #6 196.7 Running scriptlet: libgcc-13.2.1-6.fc39.x86_64 1/114 |
| #6 197.2 Upgrading : tzdata-2024a-2.fc39.noarch 2/114 |
| #6 197.3 Upgrading : crypto-policies-20231204-1.git1e3a2e4.fc39.noarc 3/114 |
| #6 197.4 Running scriptlet: crypto-policies-20231204-1.git1e3a2e4.fc39.noarc 3/114 |
| #6 197.4 Running scriptlet: glibc-2.38-16.fc39.x86_64 4/114 |
| #6 197.4 Upgrading : glibc-2.38-16.fc39.x86_64 4/114 |
| #6 197.5 Running scriptlet: glibc-2.38-16.fc39.x86_64 4/114 |
| #6 197.6 Upgrading : bash-5.2.26-1.fc39.x86_64 5/114 |
| #6 197.6 Running scriptlet: bash-5.2.26-1.fc39.x86_64 5/114 |
| #6 197.6 Upgrading : glibc-common-2.38-16.fc39.x86_64 6/114 |
| #6 197.7 Upgrading : glibc-minimal-langpack-2.38-16.fc39.x86_64 7/114 |
| #6 197.7 Upgrading : libuuid-2.39.3-5.fc39.x86_64 8/114 |
| #6 197.8 Upgrading : libcap-2.48-9.fc39.x86_64 9/114 |
| #6 197.8 Upgrading : libacl-2.3.1-9.fc39.x86_64 10/114 |
| #6 197.8 Upgrading : libblkid-2.39.3-5.fc39.x86_64 11/114 |
| #6 197.9 Upgrading : libmount-2.39.3-5.fc39.x86_64 12/114 |
| #6 197.9 Upgrading : elfutils-libelf-0.190-4.fc39.x86_64 13/114 |
| #6 198.0 Upgrading : libidn2-2.3.7-1.fc39.x86_64 14/114 |
| #6 198.0 Upgrading : fedora-release-identity-container-39-34.noarch 15/114 |
| #6 198.0 Upgrading : fedora-release-container-39-34.noarch 16/114 |
| #6 198.1 Upgrading : fedora-release-common-39-34.noarch 17/114 |
| #6 198.1 Upgrading : gnutls-3.8.3-1.fc39.x86_64 18/114 |
| #6 198.2 Upgrading : systemd-libs-254.9-1.fc39.x86_64 19/114 |
| #6 198.2 Upgrading : elfutils-default-yama-scope-0.190-4.fc39.noarch 20/114 |
| #6 198.3 Running scriptlet: elfutils-default-yama-scope-0.190-4.fc39.noarch 20/114 |
| #6 198.3 Upgrading : elfutils-libs-0.190-4.fc39.x86_64 21/114 |
| #6 198.4 Upgrading : audit-libs-3.1.2-8.fc39.x86_64 22/114 |
| #6 198.4 Upgrading : expat-2.6.0-1.fc39.x86_64 23/114 |
| #6 198.4 Upgrading : libgomp-13.2.1-6.fc39.x86_64 24/114 |
| #6 198.5 Upgrading : libsmartcols-2.39.3-5.fc39.x86_64 25/114 |
| #6 198.5 Upgrading : readline-8.2-6.fc39.x86_64 26/114 |
| #6 198.6 Upgrading : rpm-sequoia-1.6.0-1.fc39.x86_64 27/114 |
| #6 198.7 Upgrading : rpm-libs-4.19.1.1-1.fc39.x86_64 28/114 |
| #6 198.7 Upgrading : rpm-build-libs-4.19.1.1-1.fc39.x86_64 29/114 |
| #6 198.7 Upgrading : rpm-sign-libs-4.19.1.1-1.fc39.x86_64 30/114 |
| #6 198.8 Upgrading : zchunk-libs-1.4.0-1.fc39.x86_64 31/114 |
| #6 198.8 Upgrading : vim-data-2:9.1.113-1.fc39.noarch 32/114 |
| #6 198.8 Upgrading : libssh-config-0.10.6-2.fc39.noarch 33/114 |
| #6 198.9 Upgrading : dnf-data-4.18.2-1.fc39.noarch 34/114 |
| #6 199.0 Upgrading : coreutils-common-9.3-5.fc39.x86_64 35/114 |
| #6 199.1 Upgrading : coreutils-9.3-5.fc39.x86_64 36/114 |
| #6 199.2 Upgrading : krb5-libs-1.21.2-3.fc39.x86_64 37/114 |
| #6 199.3 Upgrading : libssh-0.10.6-2.fc39.x86_64 38/114 |
| #6 199.3 Upgrading : libcurl-8.2.1-4.fc39.x86_64 39/114 |
| #6 199.3 Upgrading : curl-8.2.1-4.fc39.x86_64 40/114 |
| #6 199.4 Upgrading : libtirpc-1.3.4-0.rc2.fc39.x86_64 41/114 |
| #6 199.4 Upgrading : python3-3.12.1-2.fc39.x86_64 42/114 |
| #6 200.2 Upgrading : python3-libs-3.12.1-2.fc39.x86_64 43/114 |
| #6 200.3 Upgrading : python3-rpm-4.19.1.1-1.fc39.x86_64 44/114 |
| #6 200.4 Upgrading : python3-dnf-4.18.2-1.fc39.noarch 45/114 |
| #6 200.5 Upgrading : dnf-4.18.2-1.fc39.noarch 46/114 |
| #6 200.5 Running scriptlet: dnf-4.18.2-1.fc39.noarch 46/114 |
| #6 200.5 Upgrading : yum-4.18.2-1.fc39.noarch 47/114 |
| #6 200.7 Running scriptlet: rpm-4.19.1.1-1.fc39.x86_64 48/114 |
| #6 200.8 Upgrading : rpm-4.19.1.1-1.fc39.x86_64 48/114 |
| #6 200.8 Upgrading : vim-minimal-2:9.1.113-1.fc39.x86_64 49/114 |
| #6 200.9 Upgrading : libsolv-0.7.28-1.fc39.x86_64 50/114 |
| #6 201.0 Upgrading : util-linux-core-2.39.3-5.fc39.x86_64 51/114 |
| #6 201.0 Upgrading : sudo-1.9.15-1.p5.fc39.x86_64 52/114 |
| #6 201.2 Upgrading : glib2-2.78.3-1.fc39.x86_64 53/114 |
| #6 201.2 Running scriptlet: tpm2-tss-4.0.1-6.fc39.x86_64 54/114 |
| #6 201.2 Upgrading : tpm2-tss-4.0.1-6.fc39.x86_64 54/114 |
| #6 201.3 Upgrading : alternatives-1.26-1.fc39.x86_64 55/114 |
| #6 201.3 Upgrading : libstdc++-13.2.1-6.fc39.x86_64 56/114 |
| #6 201.4 Upgrading : publicsuffix-list-dafsa-20240107-1.fc39.noarch 57/114 |
| #6 201.4 Cleanup : util-linux-core-2.39.2-1.fc39.x86_64 58/114 |
| #6 201.5 Cleanup : systemd-libs-254.5-2.fc39.x86_64 59/114 |
| #6 201.5 Cleanup : libstdc++-13.2.1-4.fc39.x86_64 60/114 |
| #6 201.5 Cleanup : glib2-2.78.1-1.fc39.x86_64 61/114 |
| #6 201.6 Cleanup : libmount-2.39.2-1.fc39.x86_64 62/114 |
| #6 201.6 Cleanup : sudo-1.9.14-1.p3.fc39.x86_64 63/114 |
| #6 201.7 Cleanup : tpm2-tss-4.0.1-4.fc39.x86_64 64/114 |
| #6 201.7 Cleanup : gnutls-3.8.1-1.fc39.x86_64 65/114 |
| #6 201.8 Cleanup : vim-minimal-2:9.0.2120-1.fc39.x86_64 66/114 |
| #6 201.8 Cleanup : rpm-4.19.0-1.fc39.x86_64 67/114 |
| #6 201.8 Cleanup : libsolv-0.7.25-1.fc39.x86_64 68/114 |
| #6 201.9 Cleanup : curl-8.2.1-3.fc39.x86_64 69/114 |
| #6 201.9 Cleanup : libcurl-8.2.1-3.fc39.x86_64 70/114 |
| #6 201.9 Cleanup : libssh-0.10.5-2.fc39.x86_64 71/114 |
| #6 202.0 Cleanup : libblkid-2.39.2-1.fc39.x86_64 72/114 |
| #6 202.0 Cleanup : alternatives-1.25-1.fc39.x86_64 73/114 |
| #6 202.0 Cleanup : fedora-release-common-39-30.noarch 74/114 |
| #6 202.1 Cleanup : fedora-release-container-39-30.noarch 75/114 |
| #6 202.1 Cleanup : yum-4.18.1-2.fc39.noarch 76/114 |
| #6 202.1 Running scriptlet: dnf-4.18.1-2.fc39.noarch 77/114 |
| #6 202.2 Cleanup : dnf-4.18.1-2.fc39.noarch 77/114 |
| #6 202.2 Running scriptlet: dnf-4.18.1-2.fc39.noarch 77/114 |
| #6 202.2 Cleanup : python3-dnf-4.18.1-2.fc39.noarch 78/114 |
| #6 202.3 Cleanup : dnf-data-4.18.1-2.fc39.noarch 79/114 |
| #6 202.3 Cleanup : fedora-release-identity-container-39-30.noarch 80/114 |
| #6 202.3 Cleanup : libssh-config-0.10.5-2.fc39.noarch 81/114 |
| #6 202.4 Cleanup : vim-data-2:9.0.2120-1.fc39.noarch 82/114 |
| #6 202.4 Cleanup : publicsuffix-list-dafsa-20230812-1.fc39.noarch 83/114 |
| #6 202.4 Cleanup : python3-rpm-4.19.0-1.fc39.x86_64 84/114 |
| #6 202.5 Cleanup : rpm-build-libs-4.19.0-1.fc39.x86_64 85/114 |
| #6 202.5 Cleanup : elfutils-libs-0.190-1.fc39.x86_64 86/114 |
| #6 202.5 Cleanup : elfutils-libelf-0.190-1.fc39.x86_64 87/114 |
| #6 202.6 Cleanup : libgomp-13.2.1-4.fc39.x86_64 88/114 |
| #6 202.6 Cleanup : rpm-sign-libs-4.19.0-1.fc39.x86_64 89/114 |
| #6 202.6 Cleanup : rpm-libs-4.19.0-1.fc39.x86_64 90/114 |
| #6 202.7 Cleanup : rpm-sequoia-1.5.0-1.fc39.x86_64 91/114 |
| #6 202.7 Cleanup : audit-libs-3.1.2-5.fc39.x86_64 92/114 |
| #6 202.7 Cleanup : libsmartcols-2.39.2-1.fc39.x86_64 93/114 |
| #6 202.8 Cleanup : zchunk-libs-1.3.2-1.fc39.x86_64 94/114 |
| #6 202.8 Cleanup : python3-3.12.0-1.fc39.x86_64 95/114 |
| #6 202.9 Cleanup : python3-libs-3.12.0-1.fc39.x86_64 96/114 |
| #6 203.0 Cleanup : libtirpc-1.3.4-0.fc39.x86_64 97/114 |
| #6 203.0 Cleanup : krb5-libs-1.21.2-2.fc39.x86_64 98/114 |
| #6 203.1 Cleanup : coreutils-9.3-4.fc39.x86_64 99/114 |
| #6 203.1 Cleanup : libcap-2.48-7.fc39.x86_64 100/114 |
| #6 203.2 Cleanup : expat-2.5.0-3.fc39.x86_64 101/114 |
| #6 203.2 Cleanup : readline-8.2-4.fc39.x86_64 102/114 |
| #6 203.2 Cleanup : libuuid-2.39.2-1.fc39.x86_64 103/114 |
| #6 203.3 Cleanup : libacl-2.3.1-8.fc39.x86_64 104/114 |
| #6 203.3 Cleanup : libidn2-2.3.4-3.fc39.x86_64 105/114 |
| #6 203.3 Cleanup : elfutils-default-yama-scope-0.190-1.fc39.noarch 106/114 |
| #6 203.4 Cleanup : coreutils-common-9.3-4.fc39.x86_64 107/114 |
| #6 203.4 Cleanup : crypto-policies-20231113-1.gitb402e82.fc39.noarc 108/114 |
| #6 203.5 Cleanup : bash-5.2.21-1.fc39.x86_64 109/114 |
| #6 203.5 Running scriptlet: bash-5.2.21-1.fc39.x86_64 109/114 |
| #6 203.6 Cleanup : glibc-2.38-11.fc39.x86_64 110/114 |
| #6 203.7 Cleanup : glibc-minimal-langpack-2.38-11.fc39.x86_64 111/114 |
| #6 203.7 Cleanup : glibc-common-2.38-11.fc39.x86_64 112/114 |
| #6 203.8 Cleanup : tzdata-2023c-2.fc39.noarch 113/114 |
| #6 203.8 Cleanup : libgcc-13.2.1-4.fc39.x86_64 114/114 |
| #6 203.8 Running scriptlet: libgcc-13.2.1-4.fc39.x86_64 114/114 |
| #6 203.9 Running scriptlet: rpm-4.19.1.1-1.fc39.x86_64 114/114 |
| #6 204.0 Running scriptlet: libgcc-13.2.1-4.fc39.x86_64 114/114 |
| #6 209.3 Verifying : alternatives-1.26-1.fc39.x86_64 1/114 |
| #6 209.3 Verifying : alternatives-1.25-1.fc39.x86_64 2/114 |
| #6 209.3 Verifying : audit-libs-3.1.2-8.fc39.x86_64 3/114 |
| #6 209.3 Verifying : audit-libs-3.1.2-5.fc39.x86_64 4/114 |
| #6 209.3 Verifying : bash-5.2.26-1.fc39.x86_64 5/114 |
| #6 209.3 Verifying : bash-5.2.21-1.fc39.x86_64 6/114 |
| #6 209.3 Verifying : coreutils-9.3-5.fc39.x86_64 7/114 |
| #6 209.3 Verifying : coreutils-9.3-4.fc39.x86_64 8/114 |
| #6 209.3 Verifying : coreutils-common-9.3-5.fc39.x86_64 9/114 |
| #6 209.3 Verifying : coreutils-common-9.3-4.fc39.x86_64 10/114 |
| #6 209.3 Verifying : crypto-policies-20231204-1.git1e3a2e4.fc39.noarc 11/114 |
| #6 209.3 Verifying : crypto-policies-20231113-1.gitb402e82.fc39.noarc 12/114 |
| #6 209.3 Verifying : curl-8.2.1-4.fc39.x86_64 13/114 |
| #6 209.3 Verifying : curl-8.2.1-3.fc39.x86_64 14/114 |
| #6 209.3 Verifying : dnf-4.18.2-1.fc39.noarch 15/114 |
| #6 209.3 Verifying : dnf-4.18.1-2.fc39.noarch 16/114 |
| #6 209.3 Verifying : dnf-data-4.18.2-1.fc39.noarch 17/114 |
| #6 209.3 Verifying : dnf-data-4.18.1-2.fc39.noarch 18/114 |
| #6 209.3 Verifying : elfutils-default-yama-scope-0.190-4.fc39.noarch 19/114 |
| #6 209.3 Verifying : elfutils-default-yama-scope-0.190-1.fc39.noarch 20/114 |
| #6 209.3 Verifying : elfutils-libelf-0.190-4.fc39.x86_64 21/114 |
| #6 209.3 Verifying : elfutils-libelf-0.190-1.fc39.x86_64 22/114 |
| #6 209.3 Verifying : elfutils-libs-0.190-4.fc39.x86_64 23/114 |
| #6 209.3 Verifying : elfutils-libs-0.190-1.fc39.x86_64 24/114 |
| #6 209.3 Verifying : expat-2.6.0-1.fc39.x86_64 25/114 |
| #6 209.3 Verifying : expat-2.5.0-3.fc39.x86_64 26/114 |
| #6 209.3 Verifying : fedora-release-common-39-34.noarch 27/114 |
| #6 209.3 Verifying : fedora-release-common-39-30.noarch 28/114 |
| #6 209.3 Verifying : fedora-release-container-39-34.noarch 29/114 |
| #6 209.3 Verifying : fedora-release-container-39-30.noarch 30/114 |
| #6 209.3 Verifying : fedora-release-identity-container-39-34.noarch 31/114 |
| #6 209.3 Verifying : fedora-release-identity-container-39-30.noarch 32/114 |
| #6 209.3 Verifying : glib2-2.78.3-1.fc39.x86_64 33/114 |
| #6 209.3 Verifying : glib2-2.78.1-1.fc39.x86_64 34/114 |
| #6 209.3 Verifying : glibc-2.38-16.fc39.x86_64 35/114 |
| #6 209.3 Verifying : glibc-2.38-11.fc39.x86_64 36/114 |
| #6 209.3 Verifying : glibc-common-2.38-16.fc39.x86_64 37/114 |
| #6 209.3 Verifying : glibc-common-2.38-11.fc39.x86_64 38/114 |
| #6 209.3 Verifying : glibc-minimal-langpack-2.38-16.fc39.x86_64 39/114 |
| #6 209.3 Verifying : glibc-minimal-langpack-2.38-11.fc39.x86_64 40/114 |
| #6 209.3 Verifying : gnutls-3.8.3-1.fc39.x86_64 41/114 |
| #6 209.3 Verifying : gnutls-3.8.1-1.fc39.x86_64 42/114 |
| #6 209.3 Verifying : krb5-libs-1.21.2-3.fc39.x86_64 43/114 |
| #6 209.3 Verifying : krb5-libs-1.21.2-2.fc39.x86_64 44/114 |
| #6 209.3 Verifying : libacl-2.3.1-9.fc39.x86_64 45/114 |
| #6 209.3 Verifying : libacl-2.3.1-8.fc39.x86_64 46/114 |
| #6 209.3 Verifying : libblkid-2.39.3-5.fc39.x86_64 47/114 |
| #6 209.3 Verifying : libblkid-2.39.2-1.fc39.x86_64 48/114 |
| #6 209.3 Verifying : libcap-2.48-9.fc39.x86_64 49/114 |
| #6 209.3 Verifying : libcap-2.48-7.fc39.x86_64 50/114 |
| #6 209.3 Verifying : libcurl-8.2.1-4.fc39.x86_64 51/114 |
| #6 209.3 Verifying : libcurl-8.2.1-3.fc39.x86_64 52/114 |
| #6 209.3 Verifying : libgcc-13.2.1-6.fc39.x86_64 53/114 |
| #6 209.3 Verifying : libgcc-13.2.1-4.fc39.x86_64 54/114 |
| #6 209.3 Verifying : libgomp-13.2.1-6.fc39.x86_64 55/114 |
| #6 209.3 Verifying : libgomp-13.2.1-4.fc39.x86_64 56/114 |
| #6 209.3 Verifying : libidn2-2.3.7-1.fc39.x86_64 57/114 |
| #6 209.3 Verifying : libidn2-2.3.4-3.fc39.x86_64 58/114 |
| #6 209.3 Verifying : libmount-2.39.3-5.fc39.x86_64 59/114 |
| #6 209.3 Verifying : libmount-2.39.2-1.fc39.x86_64 60/114 |
| #6 209.3 Verifying : libsmartcols-2.39.3-5.fc39.x86_64 61/114 |
| #6 209.3 Verifying : libsmartcols-2.39.2-1.fc39.x86_64 62/114 |
| #6 209.3 Verifying : libsolv-0.7.28-1.fc39.x86_64 63/114 |
| #6 209.3 Verifying : libsolv-0.7.25-1.fc39.x86_64 64/114 |
| #6 209.3 Verifying : libssh-0.10.6-2.fc39.x86_64 65/114 |
| #6 209.3 Verifying : libssh-0.10.5-2.fc39.x86_64 66/114 |
| #6 209.3 Verifying : libssh-config-0.10.6-2.fc39.noarch 67/114 |
| #6 209.3 Verifying : libssh-config-0.10.5-2.fc39.noarch 68/114 |
| #6 209.3 Verifying : libstdc++-13.2.1-6.fc39.x86_64 69/114 |
| #6 209.3 Verifying : libstdc++-13.2.1-4.fc39.x86_64 70/114 |
| #6 209.3 Verifying : libtirpc-1.3.4-0.rc2.fc39.x86_64 71/114 |
| #6 209.3 Verifying : libtirpc-1.3.4-0.fc39.x86_64 72/114 |
| #6 209.3 Verifying : libuuid-2.39.3-5.fc39.x86_64 73/114 |
| #6 209.3 Verifying : libuuid-2.39.2-1.fc39.x86_64 74/114 |
| #6 209.3 Verifying : publicsuffix-list-dafsa-20240107-1.fc39.noarch 75/114 |
| #6 209.3 Verifying : publicsuffix-list-dafsa-20230812-1.fc39.noarch 76/114 |
| #6 209.3 Verifying : python3-3.12.1-2.fc39.x86_64 77/114 |
| #6 209.3 Verifying : python3-3.12.0-1.fc39.x86_64 78/114 |
| #6 209.3 Verifying : python3-dnf-4.18.2-1.fc39.noarch 79/114 |
| #6 209.3 Verifying : python3-dnf-4.18.1-2.fc39.noarch 80/114 |
| #6 209.3 Verifying : python3-libs-3.12.1-2.fc39.x86_64 81/114 |
| #6 209.3 Verifying : python3-libs-3.12.0-1.fc39.x86_64 82/114 |
| #6 209.3 Verifying : python3-rpm-4.19.1.1-1.fc39.x86_64 83/114 |
| #6 209.3 Verifying : python3-rpm-4.19.0-1.fc39.x86_64 84/114 |
| #6 209.3 Verifying : readline-8.2-6.fc39.x86_64 85/114 |
| #6 209.3 Verifying : readline-8.2-4.fc39.x86_64 86/114 |
| #6 209.3 Verifying : rpm-4.19.1.1-1.fc39.x86_64 87/114 |
| #6 209.3 Verifying : rpm-4.19.0-1.fc39.x86_64 88/114 |
| #6 209.3 Verifying : rpm-build-libs-4.19.1.1-1.fc39.x86_64 89/114 |
| #6 209.3 Verifying : rpm-build-libs-4.19.0-1.fc39.x86_64 90/114 |
| #6 209.3 Verifying : rpm-libs-4.19.1.1-1.fc39.x86_64 91/114 |
| #6 209.3 Verifying : rpm-libs-4.19.0-1.fc39.x86_64 92/114 |
| #6 209.3 Verifying : rpm-sequoia-1.6.0-1.fc39.x86_64 93/114 |
| #6 209.3 Verifying : rpm-sequoia-1.5.0-1.fc39.x86_64 94/114 |
| #6 209.3 Verifying : rpm-sign-libs-4.19.1.1-1.fc39.x86_64 95/114 |
| #6 209.3 Verifying : rpm-sign-libs-4.19.0-1.fc39.x86_64 96/114 |
| #6 209.3 Verifying : sudo-1.9.15-1.p5.fc39.x86_64 97/114 |
| #6 209.3 Verifying : sudo-1.9.14-1.p3.fc39.x86_64 98/114 |
| #6 209.3 Verifying : systemd-libs-254.9-1.fc39.x86_64 99/114 |
| #6 209.3 Verifying : systemd-libs-254.5-2.fc39.x86_64 100/114 |
| #6 209.3 Verifying : tpm2-tss-4.0.1-6.fc39.x86_64 101/114 |
| #6 209.3 Verifying : tpm2-tss-4.0.1-4.fc39.x86_64 102/114 |
| #6 209.3 Verifying : tzdata-2024a-2.fc39.noarch 103/114 |
| #6 209.3 Verifying : tzdata-2023c-2.fc39.noarch 104/114 |
| #6 209.3 Verifying : util-linux-core-2.39.3-5.fc39.x86_64 105/114 |
| #6 209.3 Verifying : util-linux-core-2.39.2-1.fc39.x86_64 106/114 |
| #6 209.3 Verifying : vim-data-2:9.1.113-1.fc39.noarch 107/114 |
| #6 209.3 Verifying : vim-data-2:9.0.2120-1.fc39.noarch 108/114 |
| #6 209.3 Verifying : vim-minimal-2:9.1.113-1.fc39.x86_64 109/114 |
| #6 209.3 Verifying : vim-minimal-2:9.0.2120-1.fc39.x86_64 110/114 |
| #6 209.3 Verifying : yum-4.18.2-1.fc39.noarch 111/114 |
| #6 209.3 Verifying : yum-4.18.1-2.fc39.noarch 112/114 |
| #6 209.3 Verifying : zchunk-libs-1.4.0-1.fc39.x86_64 113/114 |
| #6 209.3 Verifying : zchunk-libs-1.3.2-1.fc39.x86_64 114/114 |
| #6 212.8 |
| #6 212.8 Upgraded: |
| #6 212.8 alternatives-1.26-1.fc39.x86_64 |
| #6 212.8 audit-libs-3.1.2-8.fc39.x86_64 |
| #6 212.8 bash-5.2.26-1.fc39.x86_64 |
| #6 212.8 coreutils-9.3-5.fc39.x86_64 |
| #6 212.8 coreutils-common-9.3-5.fc39.x86_64 |
| #6 212.8 crypto-policies-20231204-1.git1e3a2e4.fc39.noarch |
| #6 212.8 curl-8.2.1-4.fc39.x86_64 |
| #6 212.8 dnf-4.18.2-1.fc39.noarch |
| #6 212.8 dnf-data-4.18.2-1.fc39.noarch |
| #6 212.8 elfutils-default-yama-scope-0.190-4.fc39.noarch |
| #6 212.8 elfutils-libelf-0.190-4.fc39.x86_64 |
| #6 212.8 elfutils-libs-0.190-4.fc39.x86_64 |
| #6 212.8 expat-2.6.0-1.fc39.x86_64 |
| #6 212.8 fedora-release-common-39-34.noarch |
| #6 212.8 fedora-release-container-39-34.noarch |
| #6 212.8 fedora-release-identity-container-39-34.noarch |
| #6 212.8 glib2-2.78.3-1.fc39.x86_64 |
| #6 212.8 glibc-2.38-16.fc39.x86_64 |
| #6 212.8 glibc-common-2.38-16.fc39.x86_64 |
| #6 212.8 glibc-minimal-langpack-2.38-16.fc39.x86_64 |
| #6 212.8 gnutls-3.8.3-1.fc39.x86_64 |
| #6 212.8 krb5-libs-1.21.2-3.fc39.x86_64 |
| #6 212.8 libacl-2.3.1-9.fc39.x86_64 |
| #6 212.8 libblkid-2.39.3-5.fc39.x86_64 |
| #6 212.8 libcap-2.48-9.fc39.x86_64 |
| #6 212.8 libcurl-8.2.1-4.fc39.x86_64 |
| #6 212.8 libgcc-13.2.1-6.fc39.x86_64 |
| #6 212.8 libgomp-13.2.1-6.fc39.x86_64 |
| #6 212.8 libidn2-2.3.7-1.fc39.x86_64 |
| #6 212.8 libmount-2.39.3-5.fc39.x86_64 |
| #6 212.8 libsmartcols-2.39.3-5.fc39.x86_64 |
| #6 212.8 libsolv-0.7.28-1.fc39.x86_64 |
| #6 212.8 libssh-0.10.6-2.fc39.x86_64 |
| #6 212.8 libssh-config-0.10.6-2.fc39.noarch |
| #6 212.8 libstdc++-13.2.1-6.fc39.x86_64 |
| #6 212.8 libtirpc-1.3.4-0.rc2.fc39.x86_64 |
| #6 212.8 libuuid-2.39.3-5.fc39.x86_64 |
| #6 212.8 publicsuffix-list-dafsa-20240107-1.fc39.noarch |
| #6 212.8 python3-3.12.1-2.fc39.x86_64 |
| #6 212.8 python3-dnf-4.18.2-1.fc39.noarch |
| #6 212.8 python3-libs-3.12.1-2.fc39.x86_64 |
| #6 212.8 python3-rpm-4.19.1.1-1.fc39.x86_64 |
| #6 212.8 readline-8.2-6.fc39.x86_64 |
| #6 212.8 rpm-4.19.1.1-1.fc39.x86_64 |
| #6 212.8 rpm-build-libs-4.19.1.1-1.fc39.x86_64 |
| #6 212.8 rpm-libs-4.19.1.1-1.fc39.x86_64 |
| #6 212.8 rpm-sequoia-1.6.0-1.fc39.x86_64 |
| #6 212.8 rpm-sign-libs-4.19.1.1-1.fc39.x86_64 |
| #6 212.8 sudo-1.9.15-1.p5.fc39.x86_64 |
| #6 212.8 systemd-libs-254.9-1.fc39.x86_64 |
| #6 212.8 tpm2-tss-4.0.1-6.fc39.x86_64 |
| #6 212.8 tzdata-2024a-2.fc39.noarch |
| #6 212.8 util-linux-core-2.39.3-5.fc39.x86_64 |
| #6 212.8 vim-data-2:9.1.113-1.fc39.noarch |
| #6 212.8 vim-minimal-2:9.1.113-1.fc39.x86_64 |
| #6 212.8 yum-4.18.2-1.fc39.noarch |
| #6 212.8 zchunk-libs-1.4.0-1.fc39.x86_64 |
| #6 212.8 |
| #6 212.8 Complete! |
| #6 215.1 Last metadata expiration check: 0:01:48 ago on Tue Feb 20 13:41:10 2024. |
| #6 215.4 Dependencies resolved. |
| #6 215.5 =============================================================================================== |
| #6 215.5 Package Arch Version Repo Size |
| #6 215.5 =============================================================================================== |
| #6 215.5 Installing: |
| #6 215.5 figlet x86_64 2.2.5-26.20151018gita565ae1.fc39 fedora 137 k |
| #6 215.5 git x86_64 2.43.2-1.fc39 updates 53 k |
| #6 215.5 glibc-langpack-ja x86_64 2.38-16.fc39 updates 384 k |
| #6 215.5 glibc-locale-source x86_64 2.38-16.fc39 updates 4.2 M |
| #6 215.5 lolcat x86_64 1.4-2.fc39 fedora 21 k |
| #6 215.5 neofetch noarch 7.1.0-10.fc39 fedora 89 k |
| #6 215.5 Installing dependencies: |
| #6 215.5 ImageMagick-libs x86_64 1:7.1.1.26-2.fc39 updates 2.6 M |
| #6 215.5 LibRaw x86_64 0.21.2-2.fc39 updates 418 k |
| #6 215.5 abattis-cantarell-vf-fonts noarch 0.301-10.fc39 fedora 121 k |
| #6 215.5 adobe-mappings-cmap noarch 20230622-1.fc39 fedora 2.1 M |
| #6 215.5 adobe-mappings-cmap-deprecated noarch 20230622-1.fc39 fedora 113 k |
| #6 215.5 adobe-mappings-pdf noarch 20190401-5.fc39 fedora 698 k |
| #6 215.5 avahi-libs x86_64 0.8-24.fc39 fedora 67 k |
| #6 215.5 bind-libs x86_64 32:9.18.24-1.fc39 updates 1.3 M |
| #6 215.5 bind-license noarch 32:9.18.24-1.fc39 updates 14 k |
| #6 215.5 bind-utils x86_64 32:9.18.24-1.fc39 updates 224 k |
| #6 215.5 cairo x86_64 1.18.0-1.fc39 fedora 710 k |
| #6 215.5 cairo-gobject x86_64 1.18.0-1.fc39 fedora 19 k |
| #6 215.5 catimg x86_64 2.7.0-9.fc39 fedora 55 k |
| #6 215.5 crypto-policies-scripts noarch 20231204-1.git1e3a2e4.fc39 updates 117 k |
| #6 215.5 cups-libs x86_64 1:2.4.7-5.fc39 updates 268 k |
| #6 215.5 dbus-libs x86_64 1:1.14.10-1.fc39 fedora 156 k |
| #6 215.5 default-fonts-core-sans noarch 4.0-9.fc39 fedora 32 k |
| #6 215.5 fftw-libs-double x86_64 3.3.10-10.fc39 updates 1.2 M |
| #6 215.5 fontconfig x86_64 2.14.2-6.fc39 updates 296 k |
| #6 215.5 fonts-filesystem noarch 1:2.0.5-12.fc39 fedora 8.2 k |
| #6 215.5 freeglut x86_64 3.4.0-7.fc39 updates 154 k |
| #6 215.5 freetype x86_64 2.13.1-2.fc39 fedora 414 k |
| #6 215.5 fribidi x86_64 1.0.13-2.fc39 fedora 91 k |
| #6 215.5 fstrm x86_64 0.6.1-8.fc39 fedora 28 k |
| #6 215.5 gc x86_64 8.2.2-4.fc39 fedora 110 k |
| #6 215.5 gd x86_64 2.3.3-12.fc39 fedora 139 k |
| #6 215.5 gdk-pixbuf2 x86_64 2.42.10-5.fc39 fedora 484 k |
| #6 215.5 gdk-pixbuf2-xlib x86_64 2.40.2-7.fc39 fedora 56 k |
| #6 215.5 giflib x86_64 5.2.1-17.fc39 fedora 51 k |
| #6 215.5 git-core x86_64 2.43.2-1.fc39 updates 4.5 M |
| #6 215.5 git-core-doc noarch 2.43.2-1.fc39 updates 2.9 M |
| #6 215.5 google-droid-sans-fonts noarch 20200215-17.fc39 fedora 2.7 M |
| #6 215.5 google-noto-fonts-common noarch 20240101-1.fc39 updates 17 k |
| #6 215.5 google-noto-sans-vf-fonts noarch 20240101-1.fc39 updates 593 k |
| #6 215.5 gpm-libs x86_64 1.20.7-44.fc39 fedora 20 k |
| #6 215.5 graphite2 x86_64 1.3.14-12.fc39 fedora 95 k |
| #6 215.5 graphviz x86_64 8.1.0-6.fc39 updates 5.0 M |
| #6 215.5 groff-base x86_64 1.23.0-3.fc39 updates 1.1 M |
| #6 215.5 gts x86_64 0.7.6-46.20121130.fc39 fedora 240 k |
| #6 215.5 harfbuzz x86_64 8.2.1-2.fc39 fedora 975 k |
| #6 215.5 highway x86_64 1.0.7-1.fc39 fedora 478 k |
| #6 215.5 hwdata noarch 0.379-1.fc39 updates 1.6 M |
| #6 215.5 imath x86_64 3.1.9-3.fc39 fedora 96 k |
| #6 215.5 imlib2 x86_64 1.11.1-3.fc39 fedora 259 k |
| #6 215.5 jasper-libs x86_64 3.0.6-4.fc39 fedora 162 k |
| #6 215.5 jbig2dec-libs x86_64 0.19-10.fc39 fedora 73 k |
| #6 215.5 jbigkit-libs x86_64 2.1-26.fc39 fedora 53 k |
| #6 215.5 jemalloc x86_64 5.3.0-4.fc39 fedora 232 k |
| #6 215.5 kmod-libs x86_64 30-6.fc39 fedora 67 k |
| #6 215.5 lasi x86_64 1.1.3-11.fc39 fedora 54 k |
| #6 215.5 lcms2 x86_64 2.15-2.fc39 fedora 177 k |
| #6 215.5 less x86_64 633-2.fc39 fedora 175 k |
| #6 215.5 libICE x86_64 1.0.10-11.fc39 fedora 70 k |
| #6 215.5 libSM x86_64 1.2.3-13.fc39 fedora 41 k |
| #6 215.5 libX11 x86_64 1.8.7-1.fc39 fedora 650 k |
| #6 215.5 libX11-common noarch 1.8.7-1.fc39 fedora 176 k |
| #6 215.5 libX11-xcb x86_64 1.8.7-1.fc39 fedora 12 k |
| #6 215.5 libXau x86_64 1.0.11-3.fc39 fedora 31 k |
| #6 215.5 libXcomposite x86_64 0.4.5-10.fc39 fedora 23 k |
| #6 215.5 libXext x86_64 1.3.5-3.fc39 fedora 39 k |
| #6 215.5 libXfixes x86_64 6.0.0-6.fc39 fedora 19 k |
| #6 215.5 libXft x86_64 2.3.8-3.fc39 fedora 72 k |
| #6 215.5 libXi x86_64 1.8.1-2.fc39 fedora 40 k |
| #6 215.5 libXinerama x86_64 1.1.5-3.fc39 fedora 14 k |
| #6 215.5 libXmu x86_64 1.1.4-3.fc39 fedora 76 k |
| #6 215.5 libXpm x86_64 3.5.17-1.fc39 updates 65 k |
| #6 215.5 libXrandr x86_64 1.5.4-1.fc39 updates 27 k |
| #6 215.5 libXrender x86_64 0.9.11-3.fc39 fedora 27 k |
| #6 215.5 libXt x86_64 1.2.1-5.fc39 fedora 178 k |
| #6 215.5 libXtst x86_64 1.2.4-3.fc39 fedora 20 k |
| #6 215.5 libXxf86dga x86_64 1.1.5-11.fc39 fedora 20 k |
| #6 215.5 libXxf86vm x86_64 1.1.5-3.fc39 fedora 18 k |
| #6 215.5 libaom x86_64 3.8.0-1.fc39 updates 1.8 M |
| #6 215.5 libavif x86_64 0.11.1-11.fc39 fedora 84 k |
| #6 215.5 libcaca x86_64 0.99-0.69.beta20.fc39 updates 225 k |
| #6 215.5 libcbor x86_64 0.10.2-2.fc39 fedora 58 k |
| #6 215.5 libdatrie x86_64 0.2.13-7.fc39 fedora 32 k |
| #6 215.5 libdav1d x86_64 1.2.1-2.fc39 fedora 618 k |
| #6 215.5 libdrm x86_64 2.4.120-1.fc39 updates 157 k |
| #6 215.5 libedit x86_64 3.1-48.20230828cvs.fc39 fedora 107 k |
| #6 215.5 libfdisk x86_64 2.39.3-5.fc39 updates 162 k |
| #6 215.5 libfido2 x86_64 1.13.0-3.fc39 fedora 98 k |
| #6 215.5 libglvnd x86_64 1:1.7.0-1.fc39 fedora 133 k |
| #6 215.5 libglvnd-glx x86_64 1:1.7.0-1.fc39 fedora 142 k |
| #6 215.5 libglvnd-opengl x86_64 1:1.7.0-1.fc39 fedora 42 k |
| #6 215.5 libgs x86_64 10.02.1-2.fc39 updates 3.4 M |
| #6 215.5 libheif x86_64 1.17.5-1.fc39 updates 352 k |
| #6 215.5 libijs x86_64 0.35-19.fc39 fedora 29 k |
| #6 215.5 libimagequant x86_64 4.0.3-2.fc39 updates 318 k |
| #6 215.5 libjpeg-turbo x86_64 2.1.4-3.fc39 fedora 183 k |
| #6 215.5 libjxl x86_64 1:0.8.2-3.fc39 fedora 1.2 M |
| #6 215.5 liblerc x86_64 4.0.0-4.fc39 fedora 201 k |
| #6 215.5 liblqr-1 x86_64 0.4.2-22.fc39 fedora 49 k |
| #6 215.5 libmaxminddb x86_64 1.9.1-1.fc39 updates 42 k |
| #6 215.5 libmpc x86_64 1.3.1-3.fc39 fedora 70 k |
| #6 215.5 libpaper x86_64 1:2.1.1-1.fc39 fedora 27 k |
| #6 215.5 libpciaccess x86_64 0.16-9.fc39 fedora 26 k |
| #6 215.5 libpng x86_64 2:1.6.37-15.fc39 fedora 119 k |
| #6 215.5 libraqm x86_64 0.8.0-5.fc39 fedora 20 k |
| #6 215.5 librsvg2 x86_64 2.57.1-1.fc39 updates 1.6 M |
| #6 215.5 libspectre x86_64 0.2.12-4.fc39 fedora 45 k |
| #6 215.5 libthai x86_64 0.1.29-6.fc39 fedora 213 k |
| #6 215.5 libtiff x86_64 4.4.0-8.fc39 fedora 202 k |
| #6 215.5 libtool-ltdl x86_64 2.4.7-7.fc39 fedora 36 k |
| #6 215.5 libutempter x86_64 1.2.1-10.fc39 fedora 26 k |
| #6 215.5 libuv x86_64 1:1.48.0-1.fc39 updates 252 k |
| #6 215.5 libvmaf x86_64 2.3.0-6.fc39 fedora 180 k |
| #6 215.5 libwebp x86_64 1.3.2-2.fc39 fedora 284 k |
| #6 215.5 libwmf-lite x86_64 0.2.13-2.fc39 fedora 73 k |
| #6 215.5 libxcb x86_64 1.13.1-12.fc39 fedora 233 k |
| #6 215.5 libxshmfence x86_64 1.3-13.fc39 fedora 12 k |
| #6 215.5 libzip x86_64 1.10.1-1.fc39 fedora 68 k |
| #6 215.5 llvm-libs x86_64 17.0.6-3.fc39 updates 27 M |
| #6 215.5 lm_sensors-libs x86_64 3.6.0-14.fc39 fedora 41 k |
| #6 215.5 lmdb-libs x86_64 0.9.32-1.fc39 updates 61 k |
| #6 215.5 mesa-filesystem x86_64 23.3.5-1.fc39 updates 19 k |
| #6 215.5 mesa-libGL x86_64 23.3.5-1.fc39 updates 176 k |
| #6 215.5 mesa-libGLU x86_64 9.0.3-1.fc39 fedora 160 k |
| #6 215.5 mesa-libglapi x86_64 23.3.5-1.fc39 updates 53 k |
| #6 215.5 ncurses x86_64 6.4-7.20230520.fc39 fedora 416 k |
| #6 215.5 netpbm x86_64 11.02.00-2.fc39 fedora 185 k |
| #6 215.5 nspr x86_64 4.35.0-18.fc39 updates 137 k |
| #6 215.5 nss x86_64 3.98.0-1.fc39 updates 701 k |
| #6 215.5 nss-softokn x86_64 3.98.0-1.fc39 updates 417 k |
| #6 215.5 nss-softokn-freebl x86_64 3.98.0-1.fc39 updates 359 k |
| #6 215.5 nss-sysinit x86_64 3.98.0-1.fc39 updates 18 k |
| #6 215.5 nss-util x86_64 3.98.0-1.fc39 updates 87 k |
| #6 215.5 openexr-libs x86_64 3.1.10-2.fc39 fedora 1.1 M |
| #6 215.5 openjpeg2 x86_64 2.5.0-5.fc39 fedora 178 k |
| #6 215.5 openssh x86_64 9.3p1-10.fc39 updates 439 k |
| #6 215.5 openssh-clients x86_64 9.3p1-10.fc39 updates 736 k |
| #6 215.5 pango x86_64 1.51.0-1.fc39 fedora 343 k |
| #6 215.5 pciutils x86_64 3.10.0-3.fc39 updates 98 k |
| #6 215.5 pciutils-libs x86_64 3.10.0-3.fc39 updates 50 k |
| #6 215.5 perl-AutoLoader noarch 5.74-502.fc39 updates 21 k |
| #6 215.5 perl-B x86_64 1.88-502.fc39 updates 177 k |
| #6 215.5 perl-Carp noarch 1.54-500.fc39 fedora 29 k |
| #6 215.5 perl-Class-Struct noarch 0.68-502.fc39 updates 22 k |
| #6 215.5 perl-Data-Dumper x86_64 2.188-501.fc39 fedora 56 k |
| #6 215.5 perl-Digest noarch 1.20-500.fc39 fedora 25 k |
| #6 215.5 perl-Digest-MD5 x86_64 2.58-500.fc39 fedora 35 k |
| #6 215.5 perl-DynaLoader x86_64 1.54-502.fc39 updates 26 k |
| #6 215.5 perl-Encode x86_64 4:3.19-500.fc39 fedora 1.7 M |
| #6 215.5 perl-Errno x86_64 1.37-502.fc39 updates 15 k |
| #6 215.5 perl-Error noarch 1:0.17029-13.fc39 fedora 40 k |
| #6 215.5 perl-Exporter noarch 5.77-500.fc39 fedora 31 k |
| #6 215.5 perl-Fcntl x86_64 1.15-502.fc39 updates 21 k |
| #6 215.5 perl-File-Basename noarch 2.86-502.fc39 updates 17 k |
| #6 215.5 perl-File-Find noarch 1.43-502.fc39 updates 25 k |
| #6 215.5 perl-File-Path noarch 2.18-500.fc39 fedora 35 k |
| #6 215.5 perl-File-Temp noarch 1:0.231.100-500.fc39 fedora 58 k |
| #6 215.5 perl-File-stat noarch 1.13-502.fc39 updates 17 k |
| #6 215.5 perl-FileHandle noarch 2.05-502.fc39 updates 16 k |
| #6 215.5 perl-Getopt-Long noarch 1:2.54-500.fc39 fedora 60 k |
| #6 215.5 perl-Getopt-Std noarch 1.13-502.fc39 updates 16 k |
| #6 215.5 perl-Git noarch 2.43.2-1.fc39 updates 40 k |
| #6 215.5 perl-HTTP-Tiny noarch 0.088-3.fc39 fedora 56 k |
| #6 215.5 perl-IO x86_64 1.52-502.fc39 updates 82 k |
| #6 215.5 perl-IO-Socket-IP noarch 0.42-1.fc39 fedora 42 k |
| #6 215.5 perl-IO-Socket-SSL noarch 2.083-3.fc39 fedora 225 k |
| #6 215.5 perl-IPC-Open3 noarch 1.22-502.fc39 updates 22 k |
| #6 215.5 perl-MIME-Base64 x86_64 3.16-500.fc39 fedora 29 k |
| #6 215.5 perl-Mozilla-CA noarch 20230801-1.fc39 fedora 13 k |
| #6 215.5 perl-NKF x86_64 1:2.1.4-30.fc39 fedora 143 k |
| #6 215.5 perl-Net-SSLeay x86_64 1.92-10.fc39 fedora 360 k |
| #6 215.5 perl-POSIX x86_64 2.13-502.fc39 updates 97 k |
| #6 215.5 perl-PathTools x86_64 3.89-500.fc39 fedora 87 k |
| #6 215.5 perl-Pod-Escapes noarch 1:1.07-500.fc39 fedora 20 k |
| #6 215.5 perl-Pod-Perldoc noarch 3.28.01-501.fc39 fedora 86 k |
| #6 215.5 perl-Pod-Simple noarch 1:3.45-4.fc39 fedora 218 k |
| #6 215.5 perl-Pod-Usage noarch 4:2.03-500.fc39 fedora 39 k |
| #6 215.5 perl-Scalar-List-Utils x86_64 5:1.63-500.fc39 fedora 72 k |
| #6 215.5 perl-SelectSaver noarch 1.02-502.fc39 updates 12 k |
| #6 215.5 perl-Socket x86_64 4:2.037-3.fc39 fedora 55 k |
| #6 215.5 perl-Storable x86_64 1:3.32-500.fc39 fedora 99 k |
| #6 215.5 perl-Symbol noarch 1.09-502.fc39 updates 14 k |
| #6 215.5 perl-Term-ANSIColor noarch 5.01-501.fc39 fedora 47 k |
| #6 215.5 perl-Term-Cap noarch 1.18-500.fc39 fedora 22 k |
| #6 215.5 perl-TermReadKey x86_64 2.38-18.fc39 fedora 35 k |
| #6 215.5 perl-Text-ParseWords noarch 3.31-500.fc39 fedora 16 k |
| #6 215.5 perl-Text-Tabs+Wrap noarch 2023.0511-3.fc39 fedora 22 k |
| #6 215.5 perl-Time-Local noarch 2:1.350-3.fc39 fedora 34 k |
| #6 215.5 perl-URI noarch 5.21-1.fc39 fedora 125 k |
| #6 215.5 perl-base noarch 2.27-502.fc39 updates 16 k |
| #6 215.5 perl-constant noarch 1.33-501.fc39 fedora 22 k |
| #6 215.5 perl-if noarch 0.61.000-502.fc39 updates 14 k |
| #6 215.5 perl-interpreter x86_64 4:5.38.2-502.fc39 updates 72 k |
| #6 215.5 perl-lib x86_64 0.65-502.fc39 updates 15 k |
| #6 215.5 perl-libnet noarch 3.15-501.fc39 fedora 129 k |
| #6 215.5 perl-libs x86_64 4:5.38.2-502.fc39 updates 2.4 M |
| #6 215.5 perl-locale noarch 1.10-502.fc39 updates 14 k |
| #6 215.5 perl-mro x86_64 1.28-502.fc39 updates 29 k |
| #6 215.5 perl-overload noarch 1.37-502.fc39 updates 46 k |
| #6 215.5 perl-overloading noarch 0.02-502.fc39 updates 13 k |
| #6 215.5 perl-parent noarch 1:0.241-500.fc39 fedora 14 k |
| #6 215.5 perl-podlators noarch 1:5.01-500.fc39 fedora 125 k |
| #6 215.5 perl-vars noarch 1.05-502.fc39 updates 13 k |
| #6 215.5 pixman x86_64 0.42.2-2.fc39 fedora 288 k |
| #6 215.5 poppler x86_64 23.08.0-1.fc39 fedora 1.2 M |
| #6 215.5 poppler-data noarch 0.4.11-5.fc39 fedora 2.0 M |
| #6 215.5 poppler-glib x86_64 23.08.0-1.fc39 fedora 185 k |
| #6 215.5 protobuf-c x86_64 1.4.1-5.fc39 fedora 39 k |
| #6 215.5 rav1e-libs x86_64 0.7.1-1.fc39 updates 1.0 M |
| #6 215.5 rsvg-pixbuf-loader x86_64 2.57.1-1.fc39 updates 16 k |
| #6 215.5 shared-mime-info x86_64 2.2-4.fc39 fedora 380 k |
| #6 215.5 slang x86_64 2.3.3-4.fc39 updates 433 k |
| #6 215.5 svt-av1-libs x86_64 1.4.1-3.fc39 fedora 2.0 M |
| #6 215.5 systemd-boot-unsigned x86_64 254.9-1.fc39 updates 98 k |
| #6 215.5 toilet x86_64 0.3-15.fc39 fedora 730 k |
| #6 215.5 urw-base35-bookman-fonts noarch 20200910-18.fc39 fedora 847 k |
| #6 215.5 urw-base35-c059-fonts noarch 20200910-18.fc39 fedora 874 k |
| #6 215.5 urw-base35-d050000l-fonts noarch 20200910-18.fc39 fedora 76 k |
| #6 215.5 urw-base35-fonts noarch 20200910-18.fc39 fedora 10 k |
| #6 215.5 urw-base35-fonts-common noarch 20200910-18.fc39 fedora 21 k |
| #6 215.5 urw-base35-gothic-fonts noarch 20200910-18.fc39 fedora 643 k |
| #6 215.5 urw-base35-nimbus-mono-ps-fonts noarch 20200910-18.fc39 fedora 795 k |
| #6 215.5 urw-base35-nimbus-roman-fonts noarch 20200910-18.fc39 fedora 856 k |
| #6 215.5 urw-base35-nimbus-sans-fonts noarch 20200910-18.fc39 fedora 1.3 M |
| #6 215.5 urw-base35-p052-fonts noarch 20200910-18.fc39 fedora 974 k |
| #6 215.5 urw-base35-standard-symbols-ps-fonts noarch 20200910-18.fc39 fedora 42 k |
| #6 215.5 urw-base35-z003-fonts noarch 20200910-18.fc39 fedora 276 k |
| #6 215.5 util-linux x86_64 2.39.3-5.fc39 updates 1.2 M |
| #6 215.5 w3m x86_64 0.5.3-61.git20230121.fc39 fedora 1.1 M |
| #6 215.5 xml-common noarch 0.6.3-61.fc39 fedora 31 k |
| #6 215.5 Installing weak dependencies: |
| #6 215.5 ImageMagick x86_64 1:7.1.1.26-2.fc39 updates 81 k |
| #6 215.5 caca-utils x86_64 0.99-0.69.beta20.fc39 updates 98 k |
| #6 215.5 cpp x86_64 13.2.1-6.fc39 updates 11 M |
| #6 215.5 jxl-pixbuf-loader x86_64 1:0.8.2-3.fc39 fedora 61 k |
| #6 215.5 mesa-dri-drivers x86_64 23.3.5-1.fc39 updates 25 M |
| #6 215.5 mesa-va-drivers x86_64 23.3.5-1.fc39 updates 3.9 M |
| #6 215.5 open-sans-fonts noarch 1.10-19.fc39 fedora 472 k |
| #6 215.5 perl-NDBM_File x86_64 1.16-502.fc39 updates 23 k |
| #6 215.5 sdubby noarch 1.0-5.fc39 updates 18 k |
| #6 215.5 w3m-img x86_64 0.5.3-61.git20230121.fc39 fedora 23 k |
| #6 215.5 xdpyinfo x86_64 1.3.3-4.fc39 fedora 26 k |
| #6 215.5 xprop x86_64 1.2.5-4.fc39 fedora 35 k |
| #6 215.5 xrandr x86_64 1.5.2-3.fc39 fedora 46 k |
| #6 215.5 xrdb x86_64 1.2.2-1.fc39 fedora 29 k |
| #6 215.5 xwininfo x86_64 1.1.5-7.fc39 fedora 32 k |
| #6 215.5 |
| #6 215.5 Transaction Summary |
| #6 215.5 =============================================================================================== |
| #6 215.5 Install 245 Packages |
| #6 215.5 |
| #6 215.5 Total download size: 150 M |
| #6 215.5 Installed size: 598 M |
| #6 215.5 Downloading Packages: |
| #6 216.7 (1/245): adobe-mappings-cmap-deprecated-2023062 258 kB/s | 113 kB 00:00 |
| #6 216.8 (2/245): abattis-cantarell-vf-fonts-0.301-10.fc 247 kB/s | 121 kB 00:00 |
| #6 217.8 (3/245): avahi-libs-0.8-24.fc39.x86_64.rpm 68 kB/s | 67 kB 00:00 |
| #6 218.4 (4/245): adobe-mappings-pdf-20190401-5.fc39.noa 435 kB/s | 698 kB 00:01 |
| #6 218.5 (5/245): adobe-mappings-cmap-20230622-1.fc39.no 1.0 MB/s | 2.1 MB 00:02 |
| #6 218.6 (6/245): cairo-gobject-1.18.0-1.fc39.x86_64.rpm 82 kB/s | 19 kB 00:00 |
| #6 218.8 (7/245): catimg-2.7.0-9.fc39.x86_64.rpm 188 kB/s | 55 kB 00:00 |
| #6 219.1 (8/245): default-fonts-core-sans-4.0-9.fc39.noa 96 kB/s | 32 kB 00:00 |
| #6 219.3 (9/245): cairo-1.18.0-1.fc39.x86_64.rpm 465 kB/s | 710 kB 00:01 |
| #6 219.4 (10/245): fonts-filesystem-2.0.5-12.fc39.noarch 82 kB/s | 8.2 kB 00:00 |
| #6 219.5 (11/245): dbus-libs-1.14.10-1.fc39.x86_64.rpm 165 kB/s | 156 kB 00:00 |
| #6 219.6 (12/245): figlet-2.2.5-26.20151018gita565ae1.fc 295 kB/s | 137 kB 00:00 |
| #6 219.8 (13/245): fstrm-0.6.1-8.fc39.x86_64.rpm 119 kB/s | 28 kB 00:00 |
| #6 219.8 (14/245): fribidi-1.0.13-2.fc39.x86_64.rpm 324 kB/s | 91 kB 00:00 |
| #6 220.0 (15/245): freetype-2.13.1-2.fc39.x86_64.rpm 643 kB/s | 414 kB 00:00 |
| #6 220.3 (16/245): gc-8.2.2-4.fc39.x86_64.rpm 224 kB/s | 110 kB 00:00 |
| #6 220.3 (17/245): gd-2.3.3-12.fc39.x86_64.rpm 281 kB/s | 139 kB 00:00 |
| #6 220.6 (18/245): giflib-5.2.1-17.fc39.x86_64.rpm 176 kB/s | 51 kB 00:00 |
| #6 220.6 (19/245): gdk-pixbuf2-xlib-2.40.2-7.fc39.x86_64 167 kB/s | 56 kB 00:00 |
| #6 220.9 (20/245): gpm-libs-1.20.7-44.fc39.x86_64.rpm 83 kB/s | 20 kB 00:00 |
| #6 220.9 (21/245): gdk-pixbuf2-2.42.10-5.fc39.x86_64.rpm 552 kB/s | 484 kB 00:00 |
| #6 221.2 (22/245): graphite2-1.3.14-12.fc39.x86_64.rpm 325 kB/s | 95 kB 00:00 |
| #6 221.2 (23/245): gts-0.7.6-46.20121130.fc39.x86_64.rpm 821 kB/s | 240 kB 00:00 |
| #6 223.0 (24/245): harfbuzz-8.2.1-2.fc39.x86_64.rpm 535 kB/s | 975 kB 00:01 |
| #6 223.3 (25/245): imath-3.1.9-3.fc39.x86_64.rpm 346 kB/s | 96 kB 00:00 |
| #6 223.5 (26/245): google-droid-sans-fonts-20200215-17.f 954 kB/s | 2.7 MB 00:02 |
| #6 223.6 (27/245): imlib2-1.11.1-3.fc39.x86_64.rpm 760 kB/s | 259 kB 00:00 |
| #6 223.7 (28/245): jasper-libs-3.0.6-4.fc39.x86_64.rpm 893 kB/s | 162 kB 00:00 |
| #6 223.7 (29/245): jbig2dec-libs-0.19-10.fc39.x86_64.rpm 585 kB/s | 73 kB 00:00 |
| #6 223.8 (30/245): jbigkit-libs-2.1-26.fc39.x86_64.rpm 431 kB/s | 53 kB 00:00 |
| #6 224.0 (31/245): jxl-pixbuf-loader-0.8.2-3.fc39.x86_64 457 kB/s | 61 kB 00:00 |
| #6 224.0 (32/245): jemalloc-5.3.0-4.fc39.x86_64.rpm 934 kB/s | 232 kB 00:00 |
| #6 224.1 (33/245): kmod-libs-30-6.fc39.x86_64.rpm 459 kB/s | 67 kB 00:00 |
| #6 224.1 (34/245): lasi-1.1.3-11.fc39.x86_64.rpm 397 kB/s | 54 kB 00:00 |
| #6 224.4 (35/245): lcms2-2.15-2.fc39.x86_64.rpm 717 kB/s | 177 kB 00:00 |
| #6 224.4 (36/245): less-633-2.fc39.x86_64.rpm 702 kB/s | 175 kB 00:00 |
| #6 224.5 (37/245): libICE-1.0.10-11.fc39.x86_64.rpm 695 kB/s | 70 kB 00:00 |
| #6 224.5 (38/245): libSM-1.2.3-13.fc39.x86_64.rpm 307 kB/s | 41 kB 00:00 |
| #6 225.1 (39/245): libX11-1.8.7-1.fc39.x86_64.rpm 1.0 MB/s | 650 kB 00:00 |
| #6 225.1 (40/245): libX11-common-1.8.7-1.fc39.noarch.rpm 301 kB/s | 176 kB 00:00 |
| #6 225.2 (41/245): libX11-xcb-1.8.7-1.fc39.x86_64.rpm 90 kB/s | 12 kB 00:00 |
| #6 225.3 (42/245): libXau-1.0.11-3.fc39.x86_64.rpm 202 kB/s | 31 kB 00:00 |
| #6 225.3 (43/245): libXcomposite-0.4.5-10.fc39.x86_64.rp 231 kB/s | 23 kB 00:00 |
| #6 225.4 (44/245): libXext-1.3.5-3.fc39.x86_64.rpm 344 kB/s | 39 kB 00:00 |
| #6 225.4 (45/245): libXfixes-6.0.0-6.fc39.x86_64.rpm 186 kB/s | 19 kB 00:00 |
| #6 225.5 (46/245): libXft-2.3.8-3.fc39.x86_64.rpm 587 kB/s | 72 kB 00:00 |
| #6 225.6 (47/245): libXi-1.8.1-2.fc39.x86_64.rpm 298 kB/s | 40 kB 00:00 |
| #6 225.6 (48/245): libXinerama-1.1.5-3.fc39.x86_64.rpm 138 kB/s | 14 kB 00:00 |
| #6 225.7 (49/245): libXmu-1.1.4-3.fc39.x86_64.rpm 676 kB/s | 76 kB 00:00 |
| #6 225.7 (50/245): libXrender-0.9.11-3.fc39.x86_64.rpm 241 kB/s | 27 kB 00:00 |
| #6 225.8 (51/245): libXtst-1.2.4-3.fc39.x86_64.rpm 229 kB/s | 20 kB 00:00 |
| #6 225.8 (52/245): libXt-1.2.1-5.fc39.x86_64.rpm 1.1 MB/s | 178 kB 00:00 |
| #6 225.9 (53/245): libXxf86dga-1.1.5-11.fc39.x86_64.rpm 198 kB/s | 20 kB 00:00 |
| #6 225.9 (54/245): libXxf86vm-1.1.5-3.fc39.x86_64.rpm 196 kB/s | 18 kB 00:00 |
| #6 226.1 (55/245): libavif-0.11.1-11.fc39.x86_64.rpm 577 kB/s | 84 kB 00:00 |
| #6 226.1 (56/245): libcbor-0.10.2-2.fc39.x86_64.rpm 429 kB/s | 58 kB 00:00 |
| #6 226.2 (57/245): libdatrie-0.2.13-7.fc39.x86_64.rpm 280 kB/s | 32 kB 00:00 |
| #6 226.4 (58/245): libedit-3.1-48.20230828cvs.fc39.x86_6 420 kB/s | 107 kB 00:00 |
| #6 226.7 (59/245): libfido2-1.13.0-3.fc39.x86_64.rpm 400 kB/s | 98 kB 00:00 |
| #6 226.7 (60/245): libdav1d-1.2.1-2.fc39.x86_64.rpm 978 kB/s | 618 kB 00:00 |
| #6 226.8 (61/245): libglvnd-1.7.0-1.fc39.x86_64.rpm 777 kB/s | 133 kB 00:00 |
| #6 226.9 (62/245): libglvnd-glx-1.7.0-1.fc39.x86_64.rpm 628 kB/s | 142 kB 00:00 |
| #6 227.2 (63/245): highway-1.0.7-1.fc39.x86_64.rpm 80 kB/s | 478 kB 00:05 |
| #6 227.2 (64/245): libglvnd-opengl-1.7.0-1.fc39.x86_64.r 112 kB/s | 42 kB 00:00 |
| #6 227.2 (65/245): libijs-0.35-19.fc39.x86_64.rpm 96 kB/s | 29 kB 00:00 |
| #6 227.4 (66/245): libjpeg-turbo-2.1.4-3.fc39.x86_64.rpm 958 kB/s | 183 kB 00:00 |
| #6 227.5 (67/245): liblqr-1-0.4.2-22.fc39.x86_64.rpm 483 kB/s | 49 kB 00:00 |
| #6 227.6 (68/245): libmpc-1.3.1-3.fc39.x86_64.rpm 487 kB/s | 70 kB 00:00 |
| #6 227.7 (69/245): liblerc-4.0.0-4.fc39.x86_64.rpm 458 kB/s | 201 kB 00:00 |
| #6 227.8 (70/245): libpaper-2.1.1-1.fc39.x86_64.rpm 186 kB/s | 27 kB 00:00 |
| #6 227.9 (71/245): libpciaccess-0.16-9.fc39.x86_64.rpm 125 kB/s | 26 kB 00:00 |
| #6 227.9 (72/245): libpng-1.6.37-15.fc39.x86_64.rpm 822 kB/s | 119 kB 00:00 |
| #6 228.0 (73/245): libraqm-0.8.0-5.fc39.x86_64.rpm 180 kB/s | 20 kB 00:00 |
| #6 228.0 (74/245): libspectre-0.2.12-4.fc39.x86_64.rpm 401 kB/s | 45 kB 00:00 |
| #6 228.1 (75/245): libjxl-0.8.2-3.fc39.x86_64.rpm 1.4 MB/s | 1.2 MB 00:00 |
| #6 228.2 (76/245): libtiff-4.4.0-8.fc39.x86_64.rpm 1.2 MB/s | 202 kB 00:00 |
| #6 228.2 (77/245): libtool-ltdl-2.4.7-7.fc39.x86_64.rpm 290 kB/s | 36 kB 00:00 |
| #6 228.3 (78/245): libthai-0.1.29-6.fc39.x86_64.rpm 674 kB/s | 213 kB 00:00 |
| #6 228.4 (79/245): libutempter-1.2.1-10.fc39.x86_64.rpm 190 kB/s | 26 kB 00:00 |
| #6 228.5 (80/245): libvmaf-2.3.0-6.fc39.x86_64.rpm 882 kB/s | 180 kB 00:00 |
| #6 228.5 (81/245): libwmf-lite-0.2.13-2.fc39.x86_64.rpm 498 kB/s | 73 kB 00:00 |
| #6 228.5 (82/245): libwebp-1.3.2-2.fc39.x86_64.rpm 1.3 MB/s | 284 kB 00:00 |
| #6 228.6 (83/245): libxshmfence-1.3-13.fc39.x86_64.rpm 104 kB/s | 12 kB 00:00 |
| #6 228.7 (84/245): libxcb-1.13.1-12.fc39.x86_64.rpm 1.0 MB/s | 233 kB 00:00 |
| #6 228.7 (85/245): libzip-1.10.1-1.fc39.x86_64.rpm 454 kB/s | 68 kB 00:00 |
| #6 228.7 (86/245): lm_sensors-libs-3.6.0-14.fc39.x86_64. 351 kB/s | 41 kB 00:00 |
| #6 228.8 (87/245): lolcat-1.4-2.fc39.x86_64.rpm 142 kB/s | 21 kB 00:00 |
| #6 229.0 (88/245): mesa-libGLU-9.0.3-1.fc39.x86_64.rpm 596 kB/s | 160 kB 00:00 |
| #6 229.0 (89/245): neofetch-7.1.0-10.fc39.noarch.rpm 441 kB/s | 89 kB 00:00 |
| #6 229.1 (90/245): ncurses-6.4-7.20230520.fc39.x86_64.rp 1.2 MB/s | 416 kB 00:00 |
| #6 229.3 (91/245): netpbm-11.02.00-2.fc39.x86_64.rpm 544 kB/s | 185 kB 00:00 |
| #6 229.4 (92/245): open-sans-fonts-1.10-19.fc39.noarch.r 1.1 MB/s | 472 kB 00:00 |
| #6 229.5 (93/245): openjpeg2-2.5.0-5.fc39.x86_64.rpm 876 kB/s | 178 kB 00:00 |
| #6 229.8 (94/245): perl-Carp-1.54-500.fc39.noarch.rpm 113 kB/s | 29 kB 00:00 |
| #6 229.8 (95/245): pango-1.51.0-1.fc39.x86_64.rpm 920 kB/s | 343 kB 00:00 |
| #6 230.1 (96/245): perl-Digest-1.20-500.fc39.noarch.rpm 102 kB/s | 25 kB 00:00 |
| #6 230.1 (97/245): openexr-libs-3.1.10-2.fc39.x86_64.rpm 1.1 MB/s | 1.1 MB 00:01 |
| #6 230.1 (98/245): perl-Data-Dumper-2.188-501.fc39.x86_6 156 kB/s | 56 kB 00:00 |
| #6 230.2 (99/245): perl-Digest-MD5-2.58-500.fc39.x86_64. 285 kB/s | 35 kB 00:00 |
| #6 230.3 (100/245): perl-Error-0.17029-13.fc39.noarch.rp 363 kB/s | 40 kB 00:00 |
| #6 230.3 (101/245): perl-Exporter-5.77-500.fc39.noarch.r 280 kB/s | 31 kB 00:00 |
| #6 230.5 (102/245): perl-File-Path-2.18-500.fc39.noarch. 174 kB/s | 35 kB 00:00 |
| #6 230.5 (103/245): perl-File-Temp-0.231.100-500.fc39.no 328 kB/s | 58 kB 00:00 |
| #6 230.6 (104/245): perl-Getopt-Long-2.54-500.fc39.noarc 443 kB/s | 60 kB 00:00 |
| #6 230.7 (105/245): perl-IO-Socket-IP-0.42-1.fc39.noarch 420 kB/s | 42 kB 00:00 |
| #6 230.7 (106/245): perl-HTTP-Tiny-0.088-3.fc39.noarch.r 224 kB/s | 56 kB 00:00 |
| #6 231.2 (107/245): perl-MIME-Base64-3.16-500.fc39.x86_6 70 kB/s | 29 kB 00:00 |
| #6 231.2 (108/245): perl-IO-Socket-SSL-2.083-3.fc39.noar 412 kB/s | 225 kB 00:00 |
| #6 231.6 (109/245): perl-Mozilla-CA-20230801-1.fc39.noar 30 kB/s | 13 kB 00:00 |
| #6 231.7 (110/245): perl-NKF-2.1.4-30.fc39.x86_64.rpm 299 kB/s | 143 kB 00:00 |
| #6 232.0 (111/245): perl-PathTools-3.89-500.fc39.x86_64. 341 kB/s | 87 kB 00:00 |
| #6 232.1 (112/245): perl-Pod-Escapes-1.07-500.fc39.noarc 171 kB/s | 20 kB 00:00 |
| #6 232.1 (113/245): perl-Net-SSLeay-1.92-10.fc39.x86_64. 640 kB/s | 360 kB 00:00 |
| #6 232.4 (114/245): perl-Pod-Perldoc-3.28.01-501.fc39.no 299 kB/s | 86 kB 00:00 |
| #6 232.5 (115/245): perl-Pod-Usage-2.03-500.fc39.noarch. 323 kB/s | 39 kB 00:00 |
| #6 232.8 (116/245): perl-Pod-Simple-3.45-4.fc39.noarch.r 356 kB/s | 218 kB 00:00 |
| #6 232.8 (117/245): perl-Scalar-List-Utils-1.63-500.fc39 270 kB/s | 72 kB 00:00 |
| #6 232.9 (118/245): perl-Encode-3.19-500.fc39.x86_64.rpm 630 kB/s | 1.7 MB 00:02 |
| #6 233.0 (119/245): perl-Storable-3.32-500.fc39.x86_64.r 545 kB/s | 99 kB 00:00 |
| #6 233.0 (120/245): perl-Socket-2.037-3.fc39.x86_64.rpm 241 kB/s | 55 kB 00:00 |
| #6 233.0 (121/245): perl-Term-ANSIColor-5.01-501.fc39.no 344 kB/s | 47 kB 00:00 |
| #6 233.1 (122/245): perl-Term-Cap-1.18-500.fc39.noarch.r 240 kB/s | 22 kB 00:00 |
| #6 233.1 (123/245): perl-TermReadKey-2.38-18.fc39.x86_64 285 kB/s | 35 kB 00:00 |
| #6 233.1 (124/245): perl-Text-ParseWords-3.31-500.fc39.n 128 kB/s | 16 kB 00:00 |
| #6 233.2 (125/245): perl-Text-Tabs+Wrap-2023.0511-3.fc39 219 kB/s | 22 kB 00:00 |
| #6 233.2 (126/245): perl-Time-Local-1.350-3.fc39.noarch. 340 kB/s | 34 kB 00:00 |
| #6 233.3 (127/245): perl-URI-5.21-1.fc39.noarch.rpm 784 kB/s | 125 kB 00:00 |
| #6 233.3 (128/245): perl-constant-1.33-501.fc39.noarch.r 140 kB/s | 22 kB 00:00 |
| #6 233.4 (129/245): perl-parent-0.241-500.fc39.noarch.rp 117 kB/s | 14 kB 00:00 |
| #6 233.5 (130/245): perl-podlators-5.01-500.fc39.noarch. 801 kB/s | 125 kB 00:00 |
| #6 233.6 (131/245): perl-libnet-3.15-501.fc39.noarch.rpm 390 kB/s | 129 kB 00:00 |
| #6 234.2 (132/245): poppler-23.08.0-1.fc39.x86_64.rpm 1.7 MB/s | 1.2 MB 00:00 |
| #6 234.4 (133/245): poppler-glib-23.08.0-1.fc39.x86_64.r 833 kB/s | 185 kB 00:00 |
| #6 234.5 (134/245): pixman-0.42.2-2.fc39.x86_64.rpm 280 kB/s | 288 kB 00:01 |
| #6 234.7 (135/245): protobuf-c-1.4.1-5.fc39.x86_64.rpm 158 kB/s | 39 kB 00:00 |
| #6 234.8 (136/245): shared-mime-info-2.2-4.fc39.x86_64.r 1.1 MB/s | 380 kB 00:00 |
| #6 235.2 (137/245): toilet-0.3-15.fc39.x86_64.rpm 1.8 MB/s | 730 kB 00:00 |
| #6 235.8 (138/245): urw-base35-bookman-fonts-20200910-18 1.3 MB/s | 847 kB 00:00 |
| #6 236.9 (139/245): urw-base35-c059-fonts-20200910-18.fc 810 kB/s | 874 kB 00:01 |
| #6 237.1 (140/245): urw-base35-d050000l-fonts-20200910-1 311 kB/s | 76 kB 00:00 |
| #6 237.3 (141/245): urw-base35-fonts-20200910-18.fc39.no 95 kB/s | 10 kB 00:00 |
| #6 237.4 (142/245): urw-base35-fonts-common-20200910-18. 128 kB/s | 21 kB 00:00 |
| #6 238.2 (143/245): urw-base35-gothic-fonts-20200910-18. 823 kB/s | 643 kB 00:00 |
| #6 238.7 (144/245): poppler-data-0.4.11-5.fc39.noarch.rp 401 kB/s | 2.0 MB 00:05 |
| #6 239.1 (145/245): urw-base35-nimbus-mono-ps-fonts-2020 920 kB/s | 795 kB 00:00 |
| #6 239.4 (146/245): svt-av1-libs-1.4.1-3.fc39.x86_64.rpm 437 kB/s | 2.0 MB 00:04 |
| #6 240.1 (147/245): urw-base35-nimbus-roman-fonts-202009 619 kB/s | 856 kB 00:01 |
| #6 240.2 (148/245): urw-base35-nimbus-sans-fonts-2020091 1.2 MB/s | 1.3 MB 00:01 |
| #6 240.3 (149/245): urw-base35-standard-symbols-ps-fonts 224 kB/s | 42 kB 00:00 |
| #6 240.4 (150/245): urw-base35-z003-fonts-20200910-18.fc 1.1 MB/s | 276 kB 00:00 |
| #6 240.5 (151/245): w3m-img-0.5.3-61.git20230121.fc39.x8 189 kB/s | 23 kB 00:00 |
| #6 240.7 (152/245): xdpyinfo-1.3.3-4.fc39.x86_64.rpm 181 kB/s | 26 kB 00:00 |
| #6 240.7 (153/245): urw-base35-p052-fonts-20200910-18.fc 752 kB/s | 974 kB 00:01 |
| #6 240.9 (154/245): xml-common-0.6.3-61.fc39.noarch.rpm 158 kB/s | 31 kB 00:00 |
| #6 240.9 (155/245): xprop-1.2.5-4.fc39.x86_64.rpm 196 kB/s | 35 kB 00:00 |
| #6 242.1 (156/245): xrandr-1.5.2-3.fc39.x86_64.rpm 39 kB/s | 46 kB 00:01 |
| #6 242.2 (157/245): xrdb-1.2.2-1.fc39.x86_64.rpm 23 kB/s | 29 kB 00:01 |
| #6 242.3 (158/245): xwininfo-1.1.5-7.fc39.x86_64.rpm 147 kB/s | 32 kB 00:00 |
| #6 242.4 (159/245): w3m-0.5.3-61.git20230121.fc39.x86_64 542 kB/s | 1.1 MB 00:02 |
| #6 242.9 (160/245): ImageMagick-7.1.1.26-2.fc39.x86_64.r 116 kB/s | 81 kB 00:00 |
| #6 243.4 (161/245): LibRaw-0.21.2-2.fc39.x86_64.rpm 444 kB/s | 418 kB 00:00 |
| #6 244.1 (162/245): bind-libs-9.18.24-1.fc39.x86_64.rpm 1.0 MB/s | 1.3 MB 00:01 |
| #6 244.2 (163/245): bind-license-9.18.24-1.fc39.noarch.r 17 kB/s | 14 kB 00:00 |
| #6 244.6 (164/245): bind-utils-9.18.24-1.fc39.x86_64.rpm 550 kB/s | 224 kB 00:00 |
| #6 244.6 (165/245): caca-utils-0.99-0.69.beta20.fc39.x86 286 kB/s | 98 kB 00:00 |
| #6 245.1 (166/245): ImageMagick-libs-7.1.1.26-2.fc39.x86 935 kB/s | 2.6 MB 00:02 |
| #6 249.1 (167/245): cpp-13.2.1-6.fc39.x86_64.rpm 2.4 MB/s | 11 MB 00:04 |
| #6 249.1 (168/245): crypto-policies-scripts-20231204-1.g 26 kB/s | 117 kB 00:04 |
| #6 249.1 (169/245): cups-libs-2.4.7-5.fc39.x86_64.rpm 67 kB/s | 268 kB 00:04 |
| #6 249.8 (170/245): fftw-libs-double-3.3.10-10.fc39.x86_ 1.7 MB/s | 1.2 MB 00:00 |
| #6 250.1 (171/245): freeglut-3.4.0-7.fc39.x86_64.rpm 162 kB/s | 154 kB 00:00 |
| #6 250.1 (172/245): fontconfig-2.14.2-6.fc39.x86_64.rpm 303 kB/s | 296 kB 00:00 |
| #6 250.2 (173/245): git-2.43.2-1.fc39.x86_64.rpm 115 kB/s | 53 kB 00:00 |
| #6 251.8 (174/245): git-core-2.43.2-1.fc39.x86_64.rpm 2.6 MB/s | 4.5 MB 00:01 |
| #6 253.0 (175/245): git-core-doc-2.43.2-1.fc39.noarch.rp 1.0 MB/s | 2.9 MB 00:02 |
| #6 253.0 (176/245): glibc-langpack-ja-2.38-16.fc39.x86_6 137 kB/s | 384 kB 00:02 |
| #6 254.3 (177/245): glibc-locale-source-2.38-16.fc39.x86 1.7 MB/s | 4.2 MB 00:02 |
| #6 254.3 (178/245): google-noto-fonts-common-20240101-1. 13 kB/s | 17 kB 00:01 |
| #6 254.4 (179/245): google-noto-sans-vf-fonts-20240101-1 423 kB/s | 593 kB 00:01 |
| #6 257.0 (180/245): graphviz-8.1.0-6.fc39.x86_64.rpm 1.8 MB/s | 5.0 MB 00:02 |
| #6 257.4 (181/245): groff-base-1.23.0-3.fc39.x86_64.rpm 385 kB/s | 1.1 MB 00:03 |
| #6 258.2 (182/245): hwdata-0.379-1.fc39.noarch.rpm 439 kB/s | 1.6 MB 00:03 |
| #6 258.2 (183/245): libXpm-3.5.17-1.fc39.x86_64.rpm 56 kB/s | 65 kB 00:01 |
| #6 258.2 (184/245): libXrandr-1.5.4-1.fc39.x86_64.rpm 32 kB/s | 27 kB 00:00 |
| #6 259.1 (185/245): libaom-3.8.0-1.fc39.x86_64.rpm 1.9 MB/s | 1.8 MB 00:00 |
| #6 259.2 (186/245): libcaca-0.99-0.69.beta20.fc39.x86_64 230 kB/s | 225 kB 00:00 |
| #6 259.2 (187/245): libdrm-2.4.120-1.fc39.x86_64.rpm 153 kB/s | 157 kB 00:01 |
| #6 259.3 (188/245): libfdisk-2.39.3-5.fc39.x86_64.rpm 844 kB/s | 162 kB 00:00 |
| #6 260.8 (189/245): libgs-10.02.1-2.fc39.x86_64.rpm 2.1 MB/s | 3.4 MB 00:01 |
| #6 260.9 (190/245): libheif-1.17.5-1.fc39.x86_64.rpm 212 kB/s | 352 kB 00:01 |
| #6 261.4 (191/245): libimagequant-4.0.3-2.fc39.x86_64.rp 154 kB/s | 318 kB 00:02 |
| #6 261.4 (192/245): libmaxminddb-1.9.1-1.fc39.x86_64.rpm 71 kB/s | 42 kB 00:00 |
| #6 262.4 (193/245): librsvg2-2.57.1-1.fc39.x86_64.rpm 1.1 MB/s | 1.6 MB 00:01 |
| #6 262.4 (194/245): libuv-1.48.0-1.fc39.x86_64.rpm 258 kB/s | 252 kB 00:00 |
| #6 270.7 (195/245): lmdb-libs-0.9.32-1.fc39.x86_64.rpm 7.3 kB/s | 61 kB 00:08 |
| #6 282.1 (196/245): llvm-libs-17.0.6-3.fc39.x86_64.rpm 1.3 MB/s | 27 MB 00:20 |
| #6 283.3 (197/245): mesa-filesystem-23.3.5-1.fc39.x86_64 1.5 kB/s | 19 kB 00:12 |
| #6 289.0 (198/245): mesa-dri-drivers-23.3.5-1.fc39.x86_6 956 kB/s | 25 MB 00:26 |
| #6 289.0 (199/245): mesa-libGL-23.3.5-1.fc39.x86_64.rpm 26 kB/s | 176 kB 00:06 |
| #6 289.0 (200/245): mesa-libglapi-23.3.5-1.fc39.x86_64.r 9.2 kB/s | 53 kB 00:05 |
| #6 292.2 (201/245): mesa-va-drivers-23.3.5-1.fc39.x86_64 1.2 MB/s | 3.9 MB 00:03 |
| #6 292.3 (202/245): nspr-4.35.0-18.fc39.x86_64.rpm 42 kB/s | 137 kB 00:03 |
| #6 292.9 (203/245): nss-3.98.0-1.fc39.x86_64.rpm 181 kB/s | 701 kB 00:03 |
| #6 293.2 (204/245): nss-softokn-3.98.0-1.fc39.x86_64.rpm 406 kB/s | 417 kB 00:01 |
| #6 293.5 (205/245): nss-softokn-freebl-3.98.0-1.fc39.x86 296 kB/s | 359 kB 00:01 |
| #6 293.5 (206/245): nss-sysinit-3.98.0-1.fc39.x86_64.rpm 29 kB/s | 18 kB 00:00 |
| #6 293.6 (207/245): nss-util-3.98.0-1.fc39.x86_64.rpm 267 kB/s | 87 kB 00:00 |
| #6 294.0 (208/245): openssh-9.3p1-10.fc39.x86_64.rpm 974 kB/s | 439 kB 00:00 |
| #6 294.6 (209/245): openssh-clients-9.3p1-10.fc39.x86_64 669 kB/s | 736 kB 00:01 |
| #6 294.7 (210/245): pciutils-3.10.0-3.fc39.x86_64.rpm 89 kB/s | 98 kB 00:01 |
| #6 294.7 (211/245): pciutils-libs-3.10.0-3.fc39.x86_64.r 70 kB/s | 50 kB 00:00 |
| #6 294.8 (212/245): perl-AutoLoader-5.74-502.fc39.noarch 215 kB/s | 21 kB 00:00 |
| #6 295.0 (213/245): perl-B-1.88-502.fc39.x86_64.rpm 611 kB/s | 177 kB 00:00 |
| #6 295.0 (214/245): perl-Class-Struct-0.68-502.fc39.noar 71 kB/s | 22 kB 00:00 |
| #6 295.0 (215/245): perl-DynaLoader-1.54-502.fc39.x86_64 93 kB/s | 26 kB 00:00 |
| #6 295.1 (216/245): perl-Errno-1.37-502.fc39.x86_64.rpm 135 kB/s | 15 kB 00:00 |
| #6 295.1 (217/245): perl-Fcntl-1.15-502.fc39.x86_64.rpm 206 kB/s | 21 kB 00:00 |
| #6 295.2 (218/245): perl-File-Basename-2.86-502.fc39.noa 141 kB/s | 17 kB 00:00 |
| #6 295.2 (219/245): perl-File-Find-1.43-502.fc39.noarch. 202 kB/s | 25 kB 00:00 |
| #6 295.3 (220/245): perl-File-stat-1.13-502.fc39.noarch. 152 kB/s | 17 kB 00:00 |
| #6 295.3 (221/245): perl-FileHandle-2.05-502.fc39.noarch 137 kB/s | 16 kB 00:00 |
| #6 295.4 (222/245): perl-Getopt-Std-1.13-502.fc39.noarch 109 kB/s | 16 kB 00:00 |
| #6 295.4 (223/245): perl-Git-2.43.2-1.fc39.noarch.rpm 272 kB/s | 40 kB 00:00 |
| #6 295.4 (224/245): perl-IO-1.52-502.fc39.x86_64.rpm 487 kB/s | 82 kB 00:00 |
| #6 295.5 (225/245): perl-IPC-Open3-1.22-502.fc39.noarch. 196 kB/s | 22 kB 00:00 |
| #6 295.5 (226/245): perl-NDBM_File-1.16-502.fc39.x86_64. 203 kB/s | 23 kB 00:00 |
| #6 295.6 (227/245): perl-POSIX-2.13-502.fc39.x86_64.rpm 576 kB/s | 97 kB 00:00 |
| #6 295.6 (228/245): perl-SelectSaver-1.02-502.fc39.noarc 81 kB/s | 12 kB 00:00 |
| #6 295.7 (229/245): perl-Symbol-1.09-502.fc39.noarch.rpm 97 kB/s | 14 kB 00:00 |
| #6 295.7 (230/245): perl-base-2.27-502.fc39.noarch.rpm 206 kB/s | 16 kB 00:00 |
| #6 295.8 (231/245): perl-if-0.61.000-502.fc39.noarch.rpm 127 kB/s | 14 kB 00:00 |
| #6 295.8 (232/245): perl-interpreter-5.38.2-502.fc39.x86 459 kB/s | 72 kB 00:00 |
| #6 295.8 (233/245): perl-lib-0.65-502.fc39.x86_64.rpm 102 kB/s | 15 kB 00:00 |
| #6 298.2 (234/245): perl-libs-5.38.2-502.fc39.x86_64.rpm 997 kB/s | 2.4 MB 00:02 |
| #6 298.2 (235/245): perl-locale-1.10-502.fc39.noarch.rpm 5.8 kB/s | 14 kB 00:02 |
| #6 298.2 (236/245): perl-mro-1.28-502.fc39.x86_64.rpm 12 kB/s | 29 kB 00:02 |
| #6 298.3 (237/245): perl-overload-1.37-502.fc39.noarch.r 370 kB/s | 46 kB 00:00 |
| #6 298.4 (238/245): perl-overloading-0.02-502.fc39.noarc 89 kB/s | 13 kB 00:00 |
| #6 298.4 (239/245): perl-vars-1.05-502.fc39.noarch.rpm 89 kB/s | 13 kB 00:00 |
| #6 299.2 (240/245): rav1e-libs-0.7.1-1.fc39.x86_64.rpm 1.2 MB/s | 1.0 MB 00:00 |
| #6 299.2 (241/245): rsvg-pixbuf-loader-2.57.1-1.fc39.x86 19 kB/s | 16 kB 00:00 |
| #6 299.3 (242/245): sdubby-1.0-5.fc39.noarch.rpm 21 kB/s | 18 kB 00:00 |
| #6 299.7 (243/245): slang-2.3.3-4.fc39.x86_64.rpm 861 kB/s | 433 kB 00:00 |
| #6 299.7 (244/245): systemd-boot-unsigned-254.9-1.fc39.x 204 kB/s | 98 kB 00:00 |
| #6 300.4 (245/245): util-linux-2.39.3-5.fc39.x86_64.rpm 1.0 MB/s | 1.2 MB 00:01 |
| #6 300.4 -------------------------------------------------------------------------------- |
| #6 300.4 Total 1.8 MB/s | 150 MB 01:24 |
| #6 306.5 Running transaction check |
| #6 306.8 Transaction check succeeded. |
| #6 306.8 Running transaction test |
| #6 309.7 Transaction test succeeded. |
| #6 309.7 Running transaction |
| #6 333.3 Preparing : 1/1 |
| #6 333.4 Installing : libpng-2:1.6.37-15.fc39.x86_64 1/245 |
| #6 333.5 Installing : libjpeg-turbo-2.1.4-3.fc39.x86_64 2/245 |
| #6 333.5 Installing : nspr-4.35.0-18.fc39.x86_64 3/245 |
| #6 333.6 Installing : libwebp-1.3.2-2.fc39.x86_64 4/245 |
| #6 333.6 Installing : fonts-filesystem-1:2.0.5-12.fc39.noarch 5/245 |
| #6 333.6 Installing : urw-base35-fonts-common-20200910-18.fc39.noarch 6/245 |
| #6 333.6 Installing : openjpeg2-2.5.0-5.fc39.x86_64 7/245 |
| #6 333.7 Installing : nss-util-3.98.0-1.fc39.x86_64 8/245 |
| #6 333.7 Installing : libX11-xcb-1.8.7-1.fc39.x86_64 9/245 |
| #6 333.8 Installing : lcms2-2.15-2.fc39.x86_64 10/245 |
| #6 333.8 Installing : libICE-1.0.10-11.fc39.x86_64 11/245 |
| #6 333.8 Installing : libSM-1.2.3-13.fc39.x86_64 12/245 |
| #6 333.9 Installing : rav1e-libs-0.7.1-1.fc39.x86_64 13/245 |
| #6 333.9 Installing : mesa-filesystem-23.3.5-1.fc39.x86_64 14/245 |
| #6 334.0 Installing : lmdb-libs-0.9.32-1.fc39.x86_64 15/245 |
| #6 334.1 Installing : hwdata-0.379-1.fc39.noarch 16/245 |
| #6 334.3 Installing : svt-av1-libs-1.4.1-3.fc39.x86_64 17/245 |
| #6 334.4 Installing : shared-mime-info-2.2-4.fc39.x86_64 18/245 |
| #6 334.4 Running scriptlet: shared-mime-info-2.2-4.fc39.x86_64 18/245 |
| #6 334.4 Installing : gdk-pixbuf2-2.42.10-5.fc39.x86_64 19/245 |
| #6 334.5 Installing : protobuf-c-1.4.1-5.fc39.x86_64 20/245 |
| #6 334.5 Installing : libxshmfence-1.3-13.fc39.x86_64 21/245 |
| #6 334.5 Installing : libtool-ltdl-2.4.7-7.fc39.x86_64 22/245 |
| #6 334.6 Installing : libglvnd-1:1.7.0-1.fc39.x86_64 23/245 |
| #6 334.6 Installing : libedit-3.1-48.20230828cvs.fc39.x86_64 24/245 |
| #6 336.0 Installing : llvm-libs-17.0.6-3.fc39.x86_64 25/245 |
| #6 336.0 Installing : libdav1d-1.2.1-2.fc39.x86_64 26/245 |
| #6 336.1 Installing : jbigkit-libs-2.1-26.fc39.x86_64 27/245 |
| #6 336.2 Installing : imath-3.1.9-3.fc39.x86_64 28/245 |
| #6 337.7 Installing : fribidi-1.0.13-2.fc39.x86_64 29/245 |
| #6 338.0 Installing : adobe-mappings-cmap-20230622-1.fc39.noarch 30/245 |
| #6 338.0 Installing : adobe-mappings-cmap-deprecated-20230622-1.fc39.n 31/245 |
| #6 338.1 Installing : openexr-libs-3.1.10-2.fc39.x86_64 32/245 |
| #6 338.2 Installing : libglvnd-opengl-1:1.7.0-1.fc39.x86_64 33/245 |
| #6 338.2 Installing : mesa-libGLU-9.0.3-1.fc39.x86_64 34/245 |
| #6 338.2 Installing : libpciaccess-0.16-9.fc39.x86_64 35/245 |
| #6 338.3 Installing : libdrm-2.4.120-1.fc39.x86_64 36/245 |
| #6 338.3 Installing : nss-softokn-freebl-3.98.0-1.fc39.x86_64 37/245 |
| #6 338.4 Installing : nss-softokn-3.98.0-1.fc39.x86_64 38/245 |
| #6 338.5 Installing : urw-base35-bookman-fonts-20200910-18.fc39.noarch 39/245 |
| #6 338.5 Running scriptlet: urw-base35-bookman-fonts-20200910-18.fc39.noarch 39/245 |
| #6 338.6 Installing : urw-base35-c059-fonts-20200910-18.fc39.noarch 40/245 |
| #6 338.7 Running scriptlet: urw-base35-c059-fonts-20200910-18.fc39.noarch 40/245 |
| #6 338.7 Installing : urw-base35-d050000l-fonts-20200910-18.fc39.noarc 41/245 |
| #6 338.8 Running scriptlet: urw-base35-d050000l-fonts-20200910-18.fc39.noarc 41/245 |
| #6 339.0 Installing : urw-base35-gothic-fonts-20200910-18.fc39.noarch 42/245 |
| #6 339.1 Running scriptlet: urw-base35-gothic-fonts-20200910-18.fc39.noarch 42/245 |
| #6 339.1 Installing : urw-base35-nimbus-mono-ps-fonts-20200910-18.fc39 43/245 |
| #6 339.4 Running scriptlet: urw-base35-nimbus-mono-ps-fonts-20200910-18.fc39 43/245 |
| #6 339.4 Installing : urw-base35-nimbus-roman-fonts-20200910-18.fc39.n 44/245 |
| #6 339.7 Running scriptlet: urw-base35-nimbus-roman-fonts-20200910-18.fc39.n 44/245 |
| #6 339.7 Installing : urw-base35-nimbus-sans-fonts-20200910-18.fc39.no 45/245 |
| #6 339.9 Running scriptlet: urw-base35-nimbus-sans-fonts-20200910-18.fc39.no 45/245 |
| #6 339.9 Installing : urw-base35-p052-fonts-20200910-18.fc39.noarch 46/245 |
| #6 340.2 Running scriptlet: urw-base35-p052-fonts-20200910-18.fc39.noarch 46/245 |
| #6 340.2 Installing : urw-base35-standard-symbols-ps-fonts-20200910-18 47/245 |
| #6 340.3 Running scriptlet: urw-base35-standard-symbols-ps-fonts-20200910-18 47/245 |
| #6 340.3 Installing : urw-base35-z003-fonts-20200910-18.fc39.noarch 48/245 |
| #6 340.3 Running scriptlet: urw-base35-z003-fonts-20200910-18.fc39.noarch 48/245 |
| #6 340.3 Installing : urw-base35-fonts-20200910-18.fc39.noarch 49/245 |
| #6 340.8 Installing : abattis-cantarell-vf-fonts-0.301-10.fc39.noarch 50/245 |
| #6 341.2 Installing : open-sans-fonts-1.10-19.fc39.noarch 51/245 |
| #6 341.5 Installing : jasper-libs-3.0.6-4.fc39.x86_64 52/245 |
| #6 341.9 Installing : LibRaw-0.21.2-2.fc39.x86_64 53/245 |
| #6 342.2 Installing : systemd-boot-unsigned-254.9-1.fc39.x86_64 54/245 |
| #6 342.6 Installing : slang-2.3.3-4.fc39.x86_64 55/245 |
| #6 342.8 Installing : pciutils-libs-3.10.0-3.fc39.x86_64 56/245 |
| #6 343.2 Installing : libuv-1:1.48.0-1.fc39.x86_64 57/245 |
| #6 343.5 Installing : libmaxminddb-1.9.1-1.fc39.x86_64 58/245 |
| #6 343.9 Installing : libimagequant-4.0.3-2.fc39.x86_64 59/245 |
| #6 344.2 Installing : libfdisk-2.39.3-5.fc39.x86_64 60/245 |
| #6 344.5 Running scriptlet: groff-base-1.23.0-3.fc39.x86_64 61/245 |
| #6 344.7 Installing : groff-base-1.23.0-3.fc39.x86_64 61/245 |
| #6 345.4 Running scriptlet: groff-base-1.23.0-3.fc39.x86_64 61/245 |
| #6 345.4 Installing : google-noto-fonts-common-20240101-1.fc39.noarch 62/245 |
| #6 345.8 Installing : google-noto-sans-vf-fonts-20240101-1.fc39.noarch 63/245 |
| #6 346.2 Installing : default-fonts-core-sans-4.0-9.fc39.noarch 64/245 |
| #6 346.6 Installing : google-droid-sans-fonts-20200215-17.fc39.noarch 65/245 |
| #6 346.9 Installing : fftw-libs-double-3.3.10-10.fc39.x86_64 66/245 |
| #6 347.2 Installing : bind-license-32:9.18.24-1.fc39.noarch 67/245 |
| #6 347.5 Running scriptlet: xml-common-0.6.3-61.fc39.noarch 68/245 |
| #6 347.5 Installing : xml-common-0.6.3-61.fc39.noarch 68/245 |
| #6 348.1 Installing : poppler-data-0.4.11-5.fc39.noarch 69/245 |
| #6 348.4 Installing : pixman-0.42.2-2.fc39.x86_64 70/245 |
| #6 348.7 Installing : netpbm-11.02.00-2.fc39.x86_64 71/245 |
| #6 349.2 Installing : gts-0.7.6-46.20121130.fc39.x86_64 72/245 |
| #6 349.5 Installing : ncurses-6.4-7.20230520.fc39.x86_64 73/245 |
| #6 349.8 Installing : perl-Digest-1.20-500.fc39.noarch 74/245 |
| #6 350.1 Installing : perl-Digest-MD5-2.58-500.fc39.x86_64 75/245 |
| #6 350.5 Installing : perl-B-1.88-502.fc39.x86_64 76/245 |
| #6 350.8 Installing : perl-FileHandle-2.05-502.fc39.noarch 77/245 |
| #6 351.2 Installing : perl-Data-Dumper-2.188-501.fc39.x86_64 78/245 |
| #6 351.5 Installing : perl-libnet-3.15-501.fc39.noarch 79/245 |
| #6 351.9 Installing : perl-AutoLoader-5.74-502.fc39.noarch 80/245 |
| #6 352.2 Installing : perl-base-2.27-502.fc39.noarch 81/245 |
| #6 352.9 Installing : perl-URI-5.21-1.fc39.noarch 82/245 |
| #6 353.5 Installing : perl-Text-Tabs+Wrap-2023.0511-3.fc39.noarch 83/245 |
| #6 354.2 Installing : perl-Time-Local-2:1.350-3.fc39.noarch 84/245 |
| #6 354.8 Installing : perl-Mozilla-CA-20230801-1.fc39.noarch 85/245 |
| #6 355.5 Installing : perl-if-0.61.000-502.fc39.noarch 86/245 |
| #6 356.2 Installing : perl-locale-1.10-502.fc39.noarch 87/245 |
| #6 356.9 Installing : perl-IO-Socket-IP-0.42-1.fc39.noarch 88/245 |
| #6 358.0 Installing : perl-File-Path-2.18-500.fc39.noarch 89/245 |
| #6 358.3 Installing : perl-IO-Socket-SSL-2.083-3.fc39.noarch 90/245 |
| #6 358.7 Installing : perl-Net-SSLeay-1.92-10.fc39.x86_64 91/245 |
| #6 359.0 Installing : perl-Pod-Escapes-1:1.07-500.fc39.noarch 92/245 |
| #6 359.4 Installing : perl-Term-ANSIColor-5.01-501.fc39.noarch 93/245 |
| #6 359.7 Installing : perl-Class-Struct-0.68-502.fc39.noarch 94/245 |
| #6 360.4 Installing : perl-POSIX-2.13-502.fc39.x86_64 95/245 |
| #6 361.1 Installing : perl-IPC-Open3-1.22-502.fc39.noarch 96/245 |
| #6 361.5 Installing : perl-File-Temp-1:0.231.100-500.fc39.noarch 97/245 |
| #6 361.8 Installing : perl-HTTP-Tiny-0.088-3.fc39.noarch 98/245 |
| #6 362.2 Installing : perl-Pod-Simple-1:3.45-4.fc39.noarch 99/245 |
| #6 362.5 Installing : perl-Term-Cap-1.18-500.fc39.noarch 100/245 |
| #6 362.8 Installing : perl-Socket-4:2.037-3.fc39.x86_64 101/245 |
| #6 363.3 Installing : perl-SelectSaver-1.02-502.fc39.noarch 102/245 |
| #6 363.6 Installing : perl-Symbol-1.09-502.fc39.noarch 103/245 |
| #6 364.0 Installing : perl-File-stat-1.13-502.fc39.noarch 104/245 |
| #6 364.3 Installing : perl-Pod-Perldoc-3.28.01-501.fc39.noarch 105/245 |
| #6 364.7 Installing : perl-podlators-1:5.01-500.fc39.noarch 106/245 |
| #6 365.0 Installing : perl-Text-ParseWords-3.31-500.fc39.noarch 107/245 |
| #6 365.3 Installing : perl-Fcntl-1.15-502.fc39.x86_64 108/245 |
| #6 365.7 Installing : perl-mro-1.28-502.fc39.x86_64 109/245 |
| #6 366.1 Installing : perl-IO-1.52-502.fc39.x86_64 110/245 |
| #6 366.4 Installing : perl-overloading-0.02-502.fc39.noarch 111/245 |
| #6 366.8 Installing : perl-Pod-Usage-4:2.03-500.fc39.noarch 112/245 |
| #6 367.1 Installing : perl-MIME-Base64-3.16-500.fc39.x86_64 113/245 |
| #6 367.5 Installing : perl-Scalar-List-Utils-5:1.63-500.fc39.x86_64 114/245 |
| #6 367.9 Installing : perl-constant-1.33-501.fc39.noarch 115/245 |
| #6 368.3 Installing : perl-parent-1:0.241-500.fc39.noarch 116/245 |
| #6 368.9 Installing : perl-Errno-1.37-502.fc39.x86_64 117/245 |
| #6 371.2 Installing : perl-File-Basename-2.86-502.fc39.noarch 118/245 |
| #6 371.2 Installing : perl-Getopt-Std-1.13-502.fc39.noarch 119/245 |
| #6 371.4 Installing : perl-Storable-1:3.32-500.fc39.x86_64 120/245 |
| #6 371.5 Installing : perl-overload-1.37-502.fc39.noarch 121/245 |
| #6 371.6 Installing : perl-vars-1.05-502.fc39.noarch 122/245 |
| #6 371.6 Installing : perl-Getopt-Long-1:2.54-500.fc39.noarch 123/245 |
| #6 371.6 Installing : perl-Carp-1.54-500.fc39.noarch 124/245 |
| #6 371.6 Installing : perl-Exporter-5.77-500.fc39.noarch 125/245 |
| #6 371.7 Installing : perl-PathTools-3.89-500.fc39.x86_64 126/245 |
| #6 371.8 Installing : perl-NDBM_File-1.16-502.fc39.x86_64 127/245 |
| #6 371.8 Installing : perl-DynaLoader-1.54-502.fc39.x86_64 128/245 |
| #6 372.0 Installing : perl-Encode-4:3.19-500.fc39.x86_64 129/245 |
| #6 372.2 Installing : perl-libs-4:5.38.2-502.fc39.x86_64 130/245 |
| #6 372.3 Installing : perl-interpreter-4:5.38.2-502.fc39.x86_64 131/245 |
| #6 372.3 Installing : perl-Error-1:0.17029-13.fc39.noarch 132/245 |
| #6 372.3 Installing : perl-NKF-1:2.1.4-30.fc39.x86_64 133/245 |
| #6 372.4 Installing : perl-TermReadKey-2.38-18.fc39.x86_64 134/245 |
| #6 372.4 Installing : perl-File-Find-1.43-502.fc39.noarch 135/245 |
| #6 372.5 Installing : perl-lib-0.65-502.fc39.x86_64 136/245 |
| #6 372.5 Installing : lm_sensors-libs-3.6.0-14.fc39.x86_64 137/245 |
| #6 372.6 Installing : libzip-1.10.1-1.fc39.x86_64 138/245 |
| #6 372.6 Installing : libwmf-lite-0.2.13-2.fc39.x86_64 139/245 |
| #6 372.6 Installing : libvmaf-2.3.0-6.fc39.x86_64 140/245 |
| #6 372.7 Running scriptlet: libutempter-1.2.1-10.fc39.x86_64 141/245 |
| #6 373.1 Installing : libutempter-1.2.1-10.fc39.x86_64 141/245 |
| #6 373.2 Installing : util-linux-2.39.3-5.fc39.x86_64 142/245 |
| #6 373.2 warning: /etc/adjtime created as /etc/adjtime.rpmnew |
| #6 373.2 |
| #6 373.6 Installing : openssh-9.3p1-10.fc39.x86_64 143/245 |
| #6 373.7 Installing : sdubby-1.0-5.fc39.noarch 144/245 |
| #6 373.7 Running scriptlet: sdubby-1.0-5.fc39.noarch 144/245 |
| #6 373.7 Installing : crypto-policies-scripts-20231204-1.git1e3a2e4.fc 145/245 |
| #6 373.8 Installing : nss-sysinit-3.98.0-1.fc39.x86_64 146/245 |
| #6 373.8 Installing : nss-3.98.0-1.fc39.x86_64 147/245 |
| #6 373.9 Running scriptlet: nss-3.98.0-1.fc39.x86_64 147/245 |
| #6 373.9 Installing : libpaper-1:2.1.1-1.fc39.x86_64 148/245 |
| #6 374.0 Installing : libmpc-1.3.1-3.fc39.x86_64 149/245 |
| #6 374.4 Installing : cpp-13.2.1-6.fc39.x86_64 150/245 |
| #6 374.5 Installing : liblqr-1-0.4.2-22.fc39.x86_64 151/245 |
| #6 374.6 Installing : liblerc-4.0.0-4.fc39.x86_64 152/245 |
| #6 374.6 Installing : libtiff-4.4.0-8.fc39.x86_64 153/245 |
| #6 374.7 Installing : libijs-0.35-19.fc39.x86_64 154/245 |
| #6 374.7 Installing : libdatrie-0.2.13-7.fc39.x86_64 155/245 |
| #6 374.8 Installing : libthai-0.1.29-6.fc39.x86_64 156/245 |
| #6 374.8 Installing : libcbor-0.10.2-2.fc39.x86_64 157/245 |
| #6 374.9 Installing : libfido2-1.13.0-3.fc39.x86_64 158/245 |
| #6 374.9 Installing : openssh-clients-9.3p1-10.fc39.x86_64 159/245 |
| #6 375.0 Running scriptlet: openssh-clients-9.3p1-10.fc39.x86_64 159/245 |
| #6 375.0 Installing : libXau-1.0.11-3.fc39.x86_64 160/245 |
| #6 375.1 Installing : libxcb-1.13.1-12.fc39.x86_64 161/245 |
| #6 375.1 Installing : xwininfo-1.1.5-7.fc39.x86_64 162/245 |
| #6 375.3 Installing : mesa-va-drivers-23.3.5-1.fc39.x86_64 163/245 |
| #6 375.4 Installing : mesa-libglapi-23.3.5-1.fc39.x86_64 164/245 |
| #6 376.8 Installing : mesa-dri-drivers-23.3.5-1.fc39.x86_64 165/245 |
| #6 376.9 Installing : libX11-common-1.8.7-1.fc39.noarch 166/245 |
| #6 376.9 Installing : libX11-1.8.7-1.fc39.x86_64 167/245 |
| #6 377.0 Installing : libXext-1.3.5-3.fc39.x86_64 168/245 |
| #6 377.0 Installing : libXrender-0.9.11-3.fc39.x86_64 169/245 |
| #6 377.0 Installing : libXi-1.8.1-2.fc39.x86_64 170/245 |
| #6 377.1 Installing : libXt-1.2.1-5.fc39.x86_64 171/245 |
| #6 377.1 Installing : libXxf86vm-1.1.5-3.fc39.x86_64 172/245 |
| #6 377.2 Installing : libXmu-1.1.4-3.fc39.x86_64 173/245 |
| #6 377.2 Installing : xrdb-1.2.2-1.fc39.x86_64 174/245 |
| #6 377.3 Installing : libXtst-1.2.4-3.fc39.x86_64 175/245 |
| #6 377.3 Installing : libXrandr-1.5.4-1.fc39.x86_64 176/245 |
| #6 377.4 Installing : xrandr-1.5.2-3.fc39.x86_64 177/245 |
| #6 377.4 Installing : libXinerama-1.1.5-3.fc39.x86_64 178/245 |
| #6 377.4 Installing : libXxf86dga-1.1.5-11.fc39.x86_64 179/245 |
| #6 377.5 Installing : gdk-pixbuf2-xlib-2.40.2-7.fc39.x86_64 180/245 |
| #6 377.5 Installing : libXcomposite-0.4.5-10.fc39.x86_64 181/245 |
| #6 377.6 Installing : xdpyinfo-1.3.3-4.fc39.x86_64 182/245 |
| #6 377.6 Installing : libXfixes-6.0.0-6.fc39.x86_64 183/245 |
| #6 377.7 Installing : libglvnd-glx-1:1.7.0-1.fc39.x86_64 184/245 |
| #6 377.9 Installing : mesa-libGL-23.3.5-1.fc39.x86_64 185/245 |
| #6 377.9 Installing : freeglut-3.4.0-7.fc39.x86_64 186/245 |
| #6 378.0 Installing : libcaca-0.99-0.69.beta20.fc39.x86_64 187/245 |
| #6 378.1 Installing : toilet-0.3-15.fc39.x86_64 188/245 |
| #6 378.1 Installing : xprop-1.2.5-4.fc39.x86_64 189/245 |
| #6 378.2 Installing : libXpm-3.5.17-1.fc39.x86_64 190/245 |
| #6 378.2 Installing : less-633-2.fc39.x86_64 191/245 |
| #6 378.5 Installing : git-core-2.43.2-1.fc39.x86_64 192/245 |
| #6 378.6 Installing : git-core-doc-2.43.2-1.fc39.noarch 193/245 |
| #6 378.7 Installing : perl-Git-2.43.2-1.fc39.noarch 194/245 |
| #6 378.8 Installing : git-2.43.2-1.fc39.x86_64 195/245 |
| #6 378.8 Installing : kmod-libs-30-6.fc39.x86_64 196/245 |
| #6 378.9 Installing : pciutils-3.10.0-3.fc39.x86_64 197/245 |
| #6 378.9 Installing : jemalloc-5.3.0-4.fc39.x86_64 198/245 |
| #6 378.9 Installing : jbig2dec-libs-0.19-10.fc39.x86_64 199/245 |
| #6 379.0 Installing : highway-1.0.7-1.fc39.x86_64 200/245 |
| #6 379.1 Installing : libjxl-1:0.8.2-3.fc39.x86_64 201/245 |
| #6 379.1 Installing : jxl-pixbuf-loader-1:0.8.2-3.fc39.x86_64 202/245 |
| #6 379.4 Installing : libaom-3.8.0-1.fc39.x86_64 203/245 |
| #6 379.4 Installing : libheif-1.17.5-1.fc39.x86_64 204/245 |
| #6 379.5 Installing : libavif-0.11.1-11.fc39.x86_64 205/245 |
| #6 379.5 Installing : graphite2-1.3.14-12.fc39.x86_64 206/245 |
| #6 379.6 Installing : cairo-1.18.0-1.fc39.x86_64 207/245 |
| #6 379.7 Installing : harfbuzz-8.2.1-2.fc39.x86_64 208/245 |
| #6 379.8 Installing : freetype-2.13.1-2.fc39.x86_64 209/245 |
| #6 379.9 Installing : fontconfig-2.14.2-6.fc39.x86_64 210/245 |
| #6 379.9 Running scriptlet: fontconfig-2.14.2-6.fc39.x86_64 210/245 |
| #6 381.3 Installing : cairo-gobject-1.18.0-1.fc39.x86_64 211/245 |
| #6 381.4 Installing : gd-2.3.3-12.fc39.x86_64 212/245 |
| #6 381.5 Installing : libXft-2.3.8-3.fc39.x86_64 213/245 |
| #6 381.5 Installing : pango-1.51.0-1.fc39.x86_64 214/245 |
| #6 381.7 Installing : librsvg2-2.57.1-1.fc39.x86_64 215/245 |
| #6 381.7 Installing : rsvg-pixbuf-loader-2.57.1-1.fc39.x86_64 216/245 |
| #6 381.8 Installing : lasi-1.1.3-11.fc39.x86_64 217/245 |
| #6 381.9 Installing : poppler-23.08.0-1.fc39.x86_64 218/245 |
| #6 381.9 Installing : poppler-glib-23.08.0-1.fc39.x86_64 219/245 |
| #6 382.0 Installing : libraqm-0.8.0-5.fc39.x86_64 220/245 |
| #6 382.0 Installing : gpm-libs-1.20.7-44.fc39.x86_64 221/245 |
| #6 382.0 Installing : giflib-5.2.1-17.fc39.x86_64 222/245 |
| #6 382.1 Installing : gc-8.2.2-4.fc39.x86_64 223/245 |
| #6 382.6 Installing : w3m-0.5.3-61.git20230121.fc39.x86_64 224/245 |
| #6 383.4 Installing : fstrm-0.6.1-8.fc39.x86_64 225/245 |
| #6 384.8 Installing : bind-libs-32:9.18.24-1.fc39.x86_64 226/245 |
| #6 386.1 Installing : bind-utils-32:9.18.24-1.fc39.x86_64 227/245 |
| #6 386.4 Installing : dbus-libs-1:1.14.10-1.fc39.x86_64 228/245 |
| #6 386.8 Installing : avahi-libs-0.8-24.fc39.x86_64 229/245 |
| #6 387.1 Installing : cups-libs-1:2.4.7-5.fc39.x86_64 230/245 |
| #6 387.4 Installing : catimg-2.7.0-9.fc39.x86_64 231/245 |
| #6 388.5 Installing : adobe-mappings-pdf-20190401-5.fc39.noarch 232/245 |
| #6 390.1 Installing : libgs-10.02.1-2.fc39.x86_64 233/245 |
| #6 391.2 Installing : libspectre-0.2.12-4.fc39.x86_64 234/245 |
| #6 392.5 Installing : imlib2-1.11.1-3.fc39.x86_64 235/245 |
| #6 393.5 Installing : caca-utils-0.99-0.69.beta20.fc39.x86_64 236/245 |
| #6 394.4 Installing : graphviz-8.1.0-6.fc39.x86_64 237/245 |
| #6 395.8 Running scriptlet: graphviz-8.1.0-6.fc39.x86_64 237/245 |
| #6 396.1 Installing : ImageMagick-libs-1:7.1.1.26-2.fc39.x86_64 238/245 |
| #6 396.8 Installing : ImageMagick-1:7.1.1.26-2.fc39.x86_64 239/245 |
| #6 397.2 Installing : w3m-img-0.5.3-61.git20230121.fc39.x86_64 240/245 |
| #6 397.5 Installing : neofetch-7.1.0-10.fc39.noarch 241/245 |
| #6 398.1 Installing : glibc-locale-source-2.38-16.fc39.x86_64 242/245 |
| #6 398.6 Installing : glibc-langpack-ja-2.38-16.fc39.x86_64 243/245 |
| #6 398.9 Installing : lolcat-1.4-2.fc39.x86_64 244/245 |
| #6 399.2 Installing : figlet-2.2.5-26.20151018gita565ae1.fc39.x86_64 245/245 |
| #6 399.5 Running scriptlet: urw-base35-bookman-fonts-20200910-18.fc39.noarch 245/245 |
| #6 399.5 Running scriptlet: urw-base35-c059-fonts-20200910-18.fc39.noarch 245/245 |
| #6 399.6 Running scriptlet: urw-base35-d050000l-fonts-20200910-18.fc39.noarc 245/245 |
| #6 399.6 Running scriptlet: urw-base35-gothic-fonts-20200910-18.fc39.noarch 245/245 |
| #6 399.6 Running scriptlet: urw-base35-nimbus-mono-ps-fonts-20200910-18.fc39 245/245 |
| #6 399.6 Running scriptlet: urw-base35-nimbus-roman-fonts-20200910-18.fc39.n 245/245 |
| #6 399.6 Running scriptlet: urw-base35-nimbus-sans-fonts-20200910-18.fc39.no 245/245 |
| #6 399.6 Running scriptlet: urw-base35-p052-fonts-20200910-18.fc39.noarch 245/245 |
| #6 399.6 Running scriptlet: urw-base35-standard-symbols-ps-fonts-20200910-18 245/245 |
| #6 399.6 Running scriptlet: urw-base35-z003-fonts-20200910-18.fc39.noarch 245/245 |
| #6 399.7 Running scriptlet: crypto-policies-scripts-20231204-1.git1e3a2e4.fc 245/245 |
| #6 401.0 Running scriptlet: nss-3.98.0-1.fc39.x86_64 245/245 |
| #6 402.1 Running scriptlet: fontconfig-2.14.2-6.fc39.x86_64 245/245 |
| #6 402.2 Running scriptlet: figlet-2.2.5-26.20151018gita565ae1.fc39.x86_64 245/245 |
| #6 431.6 Verifying : abattis-cantarell-vf-fonts-0.301-10.fc39.noarch 1/245 |
| #6 431.6 Verifying : adobe-mappings-cmap-20230622-1.fc39.noarch 2/245 |
| #6 431.6 Verifying : adobe-mappings-cmap-deprecated-20230622-1.fc39.n 3/245 |
| #6 431.6 Verifying : adobe-mappings-pdf-20190401-5.fc39.noarch 4/245 |
| #6 431.6 Verifying : avahi-libs-0.8-24.fc39.x86_64 5/245 |
| #6 431.6 Verifying : cairo-1.18.0-1.fc39.x86_64 6/245 |
| #6 431.6 Verifying : cairo-gobject-1.18.0-1.fc39.x86_64 7/245 |
| #6 431.6 Verifying : catimg-2.7.0-9.fc39.x86_64 8/245 |
| #6 431.6 Verifying : dbus-libs-1:1.14.10-1.fc39.x86_64 9/245 |
| #6 431.6 Verifying : default-fonts-core-sans-4.0-9.fc39.noarch 10/245 |
| #6 431.6 Verifying : figlet-2.2.5-26.20151018gita565ae1.fc39.x86_64 11/245 |
| #6 431.6 Verifying : fonts-filesystem-1:2.0.5-12.fc39.noarch 12/245 |
| #6 431.6 Verifying : freetype-2.13.1-2.fc39.x86_64 13/245 |
| #6 431.6 Verifying : fribidi-1.0.13-2.fc39.x86_64 14/245 |
| #6 431.6 Verifying : fstrm-0.6.1-8.fc39.x86_64 15/245 |
| #6 431.6 Verifying : gc-8.2.2-4.fc39.x86_64 16/245 |
| #6 431.6 Verifying : gd-2.3.3-12.fc39.x86_64 17/245 |
| #6 431.6 Verifying : gdk-pixbuf2-2.42.10-5.fc39.x86_64 18/245 |
| #6 431.6 Verifying : gdk-pixbuf2-xlib-2.40.2-7.fc39.x86_64 19/245 |
| #6 431.6 Verifying : giflib-5.2.1-17.fc39.x86_64 20/245 |
| #6 431.6 Verifying : google-droid-sans-fonts-20200215-17.fc39.noarch 21/245 |
| #6 431.6 Verifying : gpm-libs-1.20.7-44.fc39.x86_64 22/245 |
| #6 431.6 Verifying : graphite2-1.3.14-12.fc39.x86_64 23/245 |
| #6 431.6 Verifying : gts-0.7.6-46.20121130.fc39.x86_64 24/245 |
| #6 431.6 Verifying : harfbuzz-8.2.1-2.fc39.x86_64 25/245 |
| #6 431.6 Verifying : highway-1.0.7-1.fc39.x86_64 26/245 |
| #6 431.6 Verifying : imath-3.1.9-3.fc39.x86_64 27/245 |
| #6 431.6 Verifying : imlib2-1.11.1-3.fc39.x86_64 28/245 |
| #6 431.6 Verifying : jasper-libs-3.0.6-4.fc39.x86_64 29/245 |
| #6 431.6 Verifying : jbig2dec-libs-0.19-10.fc39.x86_64 30/245 |
| #6 431.6 Verifying : jbigkit-libs-2.1-26.fc39.x86_64 31/245 |
| #6 431.6 Verifying : jemalloc-5.3.0-4.fc39.x86_64 32/245 |
| #6 431.6 Verifying : jxl-pixbuf-loader-1:0.8.2-3.fc39.x86_64 33/245 |
| #6 431.6 Verifying : kmod-libs-30-6.fc39.x86_64 34/245 |
| #6 431.6 Verifying : lasi-1.1.3-11.fc39.x86_64 35/245 |
| #6 431.6 Verifying : lcms2-2.15-2.fc39.x86_64 36/245 |
| #6 431.6 Verifying : less-633-2.fc39.x86_64 37/245 |
| #6 431.6 Verifying : libICE-1.0.10-11.fc39.x86_64 38/245 |
| #6 431.6 Verifying : libSM-1.2.3-13.fc39.x86_64 39/245 |
| #6 431.6 Verifying : libX11-1.8.7-1.fc39.x86_64 40/245 |
| #6 431.6 Verifying : libX11-common-1.8.7-1.fc39.noarch 41/245 |
| #6 431.6 Verifying : libX11-xcb-1.8.7-1.fc39.x86_64 42/245 |
| #6 431.6 Verifying : libXau-1.0.11-3.fc39.x86_64 43/245 |
| #6 431.6 Verifying : libXcomposite-0.4.5-10.fc39.x86_64 44/245 |
| #6 431.6 Verifying : libXext-1.3.5-3.fc39.x86_64 45/245 |
| #6 431.6 Verifying : libXfixes-6.0.0-6.fc39.x86_64 46/245 |
| #6 431.6 Verifying : libXft-2.3.8-3.fc39.x86_64 47/245 |
| #6 431.6 Verifying : libXi-1.8.1-2.fc39.x86_64 48/245 |
| #6 431.6 Verifying : libXinerama-1.1.5-3.fc39.x86_64 49/245 |
| #6 431.6 Verifying : libXmu-1.1.4-3.fc39.x86_64 50/245 |
| #6 431.6 Verifying : libXrender-0.9.11-3.fc39.x86_64 51/245 |
| #6 431.6 Verifying : libXt-1.2.1-5.fc39.x86_64 52/245 |
| #6 431.6 Verifying : libXtst-1.2.4-3.fc39.x86_64 53/245 |
| #6 431.6 Verifying : libXxf86dga-1.1.5-11.fc39.x86_64 54/245 |
| #6 431.6 Verifying : libXxf86vm-1.1.5-3.fc39.x86_64 55/245 |
| #6 431.6 Verifying : libavif-0.11.1-11.fc39.x86_64 56/245 |
| #6 431.6 Verifying : libcbor-0.10.2-2.fc39.x86_64 57/245 |
| #6 431.6 Verifying : libdatrie-0.2.13-7.fc39.x86_64 58/245 |
| #6 431.6 Verifying : libdav1d-1.2.1-2.fc39.x86_64 59/245 |
| #6 431.6 Verifying : libedit-3.1-48.20230828cvs.fc39.x86_64 60/245 |
| #6 431.6 Verifying : libfido2-1.13.0-3.fc39.x86_64 61/245 |
| #6 431.6 Verifying : libglvnd-1:1.7.0-1.fc39.x86_64 62/245 |
| #6 431.6 Verifying : libglvnd-glx-1:1.7.0-1.fc39.x86_64 63/245 |
| #6 431.6 Verifying : libglvnd-opengl-1:1.7.0-1.fc39.x86_64 64/245 |
| #6 431.6 Verifying : libijs-0.35-19.fc39.x86_64 65/245 |
| #6 431.6 Verifying : libjpeg-turbo-2.1.4-3.fc39.x86_64 66/245 |
| #6 431.6 Verifying : libjxl-1:0.8.2-3.fc39.x86_64 67/245 |
| #6 431.6 Verifying : liblerc-4.0.0-4.fc39.x86_64 68/245 |
| #6 431.6 Verifying : liblqr-1-0.4.2-22.fc39.x86_64 69/245 |
| #6 431.6 Verifying : libmpc-1.3.1-3.fc39.x86_64 70/245 |
| #6 431.6 Verifying : libpaper-1:2.1.1-1.fc39.x86_64 71/245 |
| #6 431.6 Verifying : libpciaccess-0.16-9.fc39.x86_64 72/245 |
| #6 431.6 Verifying : libpng-2:1.6.37-15.fc39.x86_64 73/245 |
| #6 431.6 Verifying : libraqm-0.8.0-5.fc39.x86_64 74/245 |
| #6 431.6 Verifying : libspectre-0.2.12-4.fc39.x86_64 75/245 |
| #6 431.6 Verifying : libthai-0.1.29-6.fc39.x86_64 76/245 |
| #6 431.6 Verifying : libtiff-4.4.0-8.fc39.x86_64 77/245 |
| #6 431.6 Verifying : libtool-ltdl-2.4.7-7.fc39.x86_64 78/245 |
| #6 431.6 Verifying : libutempter-1.2.1-10.fc39.x86_64 79/245 |
| #6 431.6 Verifying : libvmaf-2.3.0-6.fc39.x86_64 80/245 |
| #6 431.6 Verifying : libwebp-1.3.2-2.fc39.x86_64 81/245 |
| #6 431.6 Verifying : libwmf-lite-0.2.13-2.fc39.x86_64 82/245 |
| #6 431.6 Verifying : libxcb-1.13.1-12.fc39.x86_64 83/245 |
| #6 431.6 Verifying : libxshmfence-1.3-13.fc39.x86_64 84/245 |
| #6 431.6 Verifying : libzip-1.10.1-1.fc39.x86_64 85/245 |
| #6 431.6 Verifying : lm_sensors-libs-3.6.0-14.fc39.x86_64 86/245 |
| #6 431.6 Verifying : lolcat-1.4-2.fc39.x86_64 87/245 |
| #6 431.6 Verifying : mesa-libGLU-9.0.3-1.fc39.x86_64 88/245 |
| #6 431.6 Verifying : ncurses-6.4-7.20230520.fc39.x86_64 89/245 |
| #6 431.6 Verifying : neofetch-7.1.0-10.fc39.noarch 90/245 |
| #6 431.6 Verifying : netpbm-11.02.00-2.fc39.x86_64 91/245 |
| #6 431.6 Verifying : open-sans-fonts-1.10-19.fc39.noarch 92/245 |
| #6 431.6 Verifying : openexr-libs-3.1.10-2.fc39.x86_64 93/245 |
| #6 431.6 Verifying : openjpeg2-2.5.0-5.fc39.x86_64 94/245 |
| #6 431.6 Verifying : pango-1.51.0-1.fc39.x86_64 95/245 |
| #6 431.6 Verifying : perl-Carp-1.54-500.fc39.noarch 96/245 |
| #6 431.6 Verifying : perl-Data-Dumper-2.188-501.fc39.x86_64 97/245 |
| #6 431.6 Verifying : perl-Digest-1.20-500.fc39.noarch 98/245 |
| #6 431.6 Verifying : perl-Digest-MD5-2.58-500.fc39.x86_64 99/245 |
| #6 431.6 Verifying : perl-Encode-4:3.19-500.fc39.x86_64 100/245 |
| #6 431.6 Verifying : perl-Error-1:0.17029-13.fc39.noarch 101/245 |
| #6 431.6 Verifying : perl-Exporter-5.77-500.fc39.noarch 102/245 |
| #6 431.6 Verifying : perl-File-Path-2.18-500.fc39.noarch 103/245 |
| #6 431.6 Verifying : perl-File-Temp-1:0.231.100-500.fc39.noarch 104/245 |
| #6 431.6 Verifying : perl-Getopt-Long-1:2.54-500.fc39.noarch 105/245 |
| #6 431.6 Verifying : perl-HTTP-Tiny-0.088-3.fc39.noarch 106/245 |
| #6 431.6 Verifying : perl-IO-Socket-IP-0.42-1.fc39.noarch 107/245 |
| #6 431.6 Verifying : perl-IO-Socket-SSL-2.083-3.fc39.noarch 108/245 |
| #6 431.6 Verifying : perl-MIME-Base64-3.16-500.fc39.x86_64 109/245 |
| #6 431.6 Verifying : perl-Mozilla-CA-20230801-1.fc39.noarch 110/245 |
| #6 431.6 Verifying : perl-NKF-1:2.1.4-30.fc39.x86_64 111/245 |
| #6 431.6 Verifying : perl-Net-SSLeay-1.92-10.fc39.x86_64 112/245 |
| #6 431.6 Verifying : perl-PathTools-3.89-500.fc39.x86_64 113/245 |
| #6 431.6 Verifying : perl-Pod-Escapes-1:1.07-500.fc39.noarch 114/245 |
| #6 431.6 Verifying : perl-Pod-Perldoc-3.28.01-501.fc39.noarch 115/245 |
| #6 431.6 Verifying : perl-Pod-Simple-1:3.45-4.fc39.noarch 116/245 |
| #6 431.6 Verifying : perl-Pod-Usage-4:2.03-500.fc39.noarch 117/245 |
| #6 431.6 Verifying : perl-Scalar-List-Utils-5:1.63-500.fc39.x86_64 118/245 |
| #6 431.6 Verifying : perl-Socket-4:2.037-3.fc39.x86_64 119/245 |
| #6 431.6 Verifying : perl-Storable-1:3.32-500.fc39.x86_64 120/245 |
| #6 431.6 Verifying : perl-Term-ANSIColor-5.01-501.fc39.noarch 121/245 |
| #6 431.6 Verifying : perl-Term-Cap-1.18-500.fc39.noarch 122/245 |
| #6 431.6 Verifying : perl-TermReadKey-2.38-18.fc39.x86_64 123/245 |
| #6 431.6 Verifying : perl-Text-ParseWords-3.31-500.fc39.noarch 124/245 |
| #6 431.6 Verifying : perl-Text-Tabs+Wrap-2023.0511-3.fc39.noarch 125/245 |
| #6 431.6 Verifying : perl-Time-Local-2:1.350-3.fc39.noarch 126/245 |
| #6 431.6 Verifying : perl-URI-5.21-1.fc39.noarch 127/245 |
| #6 431.6 Verifying : perl-constant-1.33-501.fc39.noarch 128/245 |
| #6 431.6 Verifying : perl-libnet-3.15-501.fc39.noarch 129/245 |
| #6 431.6 Verifying : perl-parent-1:0.241-500.fc39.noarch 130/245 |
| #6 431.6 Verifying : perl-podlators-1:5.01-500.fc39.noarch 131/245 |
| #6 431.6 Verifying : pixman-0.42.2-2.fc39.x86_64 132/245 |
| #6 431.6 Verifying : poppler-23.08.0-1.fc39.x86_64 133/245 |
| #6 431.6 Verifying : poppler-data-0.4.11-5.fc39.noarch 134/245 |
| #6 431.6 Verifying : poppler-glib-23.08.0-1.fc39.x86_64 135/245 |
| #6 431.6 Verifying : protobuf-c-1.4.1-5.fc39.x86_64 136/245 |
| #6 431.6 Verifying : shared-mime-info-2.2-4.fc39.x86_64 137/245 |
| #6 431.6 Verifying : svt-av1-libs-1.4.1-3.fc39.x86_64 138/245 |
| #6 431.6 Verifying : toilet-0.3-15.fc39.x86_64 139/245 |
| #6 431.6 Verifying : urw-base35-bookman-fonts-20200910-18.fc39.noarch 140/245 |
| #6 431.6 Verifying : urw-base35-c059-fonts-20200910-18.fc39.noarch 141/245 |
| #6 431.6 Verifying : urw-base35-d050000l-fonts-20200910-18.fc39.noarc 142/245 |
| #6 431.6 Verifying : urw-base35-fonts-20200910-18.fc39.noarch 143/245 |
| #6 431.6 Verifying : urw-base35-fonts-common-20200910-18.fc39.noarch 144/245 |
| #6 431.6 Verifying : urw-base35-gothic-fonts-20200910-18.fc39.noarch 145/245 |
| #6 431.6 Verifying : urw-base35-nimbus-mono-ps-fonts-20200910-18.fc39 146/245 |
| #6 431.6 Verifying : urw-base35-nimbus-roman-fonts-20200910-18.fc39.n 147/245 |
| #6 431.6 Verifying : urw-base35-nimbus-sans-fonts-20200910-18.fc39.no 148/245 |
| #6 431.6 Verifying : urw-base35-p052-fonts-20200910-18.fc39.noarch 149/245 |
| #6 431.6 Verifying : urw-base35-standard-symbols-ps-fonts-20200910-18 150/245 |
| #6 431.6 Verifying : urw-base35-z003-fonts-20200910-18.fc39.noarch 151/245 |
| #6 431.6 Verifying : w3m-0.5.3-61.git20230121.fc39.x86_64 152/245 |
| #6 431.6 Verifying : w3m-img-0.5.3-61.git20230121.fc39.x86_64 153/245 |
| #6 431.6 Verifying : xdpyinfo-1.3.3-4.fc39.x86_64 154/245 |
| #6 431.6 Verifying : xml-common-0.6.3-61.fc39.noarch 155/245 |
| #6 431.6 Verifying : xprop-1.2.5-4.fc39.x86_64 156/245 |
| #6 431.6 Verifying : xrandr-1.5.2-3.fc39.x86_64 157/245 |
| #6 431.6 Verifying : xrdb-1.2.2-1.fc39.x86_64 158/245 |
| #6 431.6 Verifying : xwininfo-1.1.5-7.fc39.x86_64 159/245 |
| #6 431.6 Verifying : ImageMagick-1:7.1.1.26-2.fc39.x86_64 160/245 |
| #6 431.6 Verifying : ImageMagick-libs-1:7.1.1.26-2.fc39.x86_64 161/245 |
| #6 431.6 Verifying : LibRaw-0.21.2-2.fc39.x86_64 162/245 |
| #6 431.6 Verifying : bind-libs-32:9.18.24-1.fc39.x86_64 163/245 |
| #6 431.6 Verifying : bind-license-32:9.18.24-1.fc39.noarch 164/245 |
| #6 431.6 Verifying : bind-utils-32:9.18.24-1.fc39.x86_64 165/245 |
| #6 431.6 Verifying : caca-utils-0.99-0.69.beta20.fc39.x86_64 166/245 |
| #6 431.6 Verifying : cpp-13.2.1-6.fc39.x86_64 167/245 |
| #6 431.6 Verifying : crypto-policies-scripts-20231204-1.git1e3a2e4.fc 168/245 |
| #6 431.6 Verifying : cups-libs-1:2.4.7-5.fc39.x86_64 169/245 |
| #6 431.6 Verifying : fftw-libs-double-3.3.10-10.fc39.x86_64 170/245 |
| #6 431.6 Verifying : fontconfig-2.14.2-6.fc39.x86_64 171/245 |
| #6 431.6 Verifying : freeglut-3.4.0-7.fc39.x86_64 172/245 |
| #6 431.6 Verifying : git-2.43.2-1.fc39.x86_64 173/245 |
| #6 431.6 Verifying : git-core-2.43.2-1.fc39.x86_64 174/245 |
| #6 431.6 Verifying : git-core-doc-2.43.2-1.fc39.noarch 175/245 |
| #6 431.6 Verifying : glibc-langpack-ja-2.38-16.fc39.x86_64 176/245 |
| #6 431.6 Verifying : glibc-locale-source-2.38-16.fc39.x86_64 177/245 |
| #6 431.6 Verifying : google-noto-fonts-common-20240101-1.fc39.noarch 178/245 |
| #6 431.7 Verifying : google-noto-sans-vf-fonts-20240101-1.fc39.noarch 179/245 |
| #6 431.7 Verifying : graphviz-8.1.0-6.fc39.x86_64 180/245 |
| #6 431.7 Verifying : groff-base-1.23.0-3.fc39.x86_64 181/245 |
| #6 431.7 Verifying : hwdata-0.379-1.fc39.noarch 182/245 |
| #6 431.7 Verifying : libXpm-3.5.17-1.fc39.x86_64 183/245 |
| #6 431.7 Verifying : libXrandr-1.5.4-1.fc39.x86_64 184/245 |
| #6 431.7 Verifying : libaom-3.8.0-1.fc39.x86_64 185/245 |
| #6 431.7 Verifying : libcaca-0.99-0.69.beta20.fc39.x86_64 186/245 |
| #6 431.7 Verifying : libdrm-2.4.120-1.fc39.x86_64 187/245 |
| #6 431.7 Verifying : libfdisk-2.39.3-5.fc39.x86_64 188/245 |
| #6 431.7 Verifying : libgs-10.02.1-2.fc39.x86_64 189/245 |
| #6 431.7 Verifying : libheif-1.17.5-1.fc39.x86_64 190/245 |
| #6 431.7 Verifying : libimagequant-4.0.3-2.fc39.x86_64 191/245 |
| #6 431.7 Verifying : libmaxminddb-1.9.1-1.fc39.x86_64 192/245 |
| #6 431.7 Verifying : librsvg2-2.57.1-1.fc39.x86_64 193/245 |
| #6 431.7 Verifying : libuv-1:1.48.0-1.fc39.x86_64 194/245 |
| #6 431.7 Verifying : llvm-libs-17.0.6-3.fc39.x86_64 195/245 |
| #6 431.7 Verifying : lmdb-libs-0.9.32-1.fc39.x86_64 196/245 |
| #6 431.7 Verifying : mesa-dri-drivers-23.3.5-1.fc39.x86_64 197/245 |
| #6 431.7 Verifying : mesa-filesystem-23.3.5-1.fc39.x86_64 198/245 |
| #6 431.7 Verifying : mesa-libGL-23.3.5-1.fc39.x86_64 199/245 |
| #6 431.7 Verifying : mesa-libglapi-23.3.5-1.fc39.x86_64 200/245 |
| #6 431.7 Verifying : mesa-va-drivers-23.3.5-1.fc39.x86_64 201/245 |
| #6 431.7 Verifying : nspr-4.35.0-18.fc39.x86_64 202/245 |
| #6 431.7 Verifying : nss-3.98.0-1.fc39.x86_64 203/245 |
| #6 431.7 Verifying : nss-softokn-3.98.0-1.fc39.x86_64 204/245 |
| #6 431.7 Verifying : nss-softokn-freebl-3.98.0-1.fc39.x86_64 205/245 |
| #6 431.7 Verifying : nss-sysinit-3.98.0-1.fc39.x86_64 206/245 |
| #6 431.7 Verifying : nss-util-3.98.0-1.fc39.x86_64 207/245 |
| #6 431.7 Verifying : openssh-9.3p1-10.fc39.x86_64 208/245 |
| #6 431.7 Verifying : openssh-clients-9.3p1-10.fc39.x86_64 209/245 |
| #6 431.7 Verifying : pciutils-3.10.0-3.fc39.x86_64 210/245 |
| #6 431.7 Verifying : pciutils-libs-3.10.0-3.fc39.x86_64 211/245 |
| #6 431.7 Verifying : perl-AutoLoader-5.74-502.fc39.noarch 212/245 |
| #6 431.7 Verifying : perl-B-1.88-502.fc39.x86_64 213/245 |
| #6 431.7 Verifying : perl-Class-Struct-0.68-502.fc39.noarch 214/245 |
| #6 431.7 Verifying : perl-DynaLoader-1.54-502.fc39.x86_64 215/245 |
| #6 431.7 Verifying : perl-Errno-1.37-502.fc39.x86_64 216/245 |
| #6 431.7 Verifying : perl-Fcntl-1.15-502.fc39.x86_64 217/245 |
| #6 431.7 Verifying : perl-File-Basename-2.86-502.fc39.noarch 218/245 |
| #6 431.7 Verifying : perl-File-Find-1.43-502.fc39.noarch 219/245 |
| #6 431.7 Verifying : perl-File-stat-1.13-502.fc39.noarch 220/245 |
| #6 431.7 Verifying : perl-FileHandle-2.05-502.fc39.noarch 221/245 |
| #6 431.7 Verifying : perl-Getopt-Std-1.13-502.fc39.noarch 222/245 |
| #6 431.7 Verifying : perl-Git-2.43.2-1.fc39.noarch 223/245 |
| #6 431.7 Verifying : perl-IO-1.52-502.fc39.x86_64 224/245 |
| #6 431.7 Verifying : perl-IPC-Open3-1.22-502.fc39.noarch 225/245 |
| #6 431.7 Verifying : perl-NDBM_File-1.16-502.fc39.x86_64 226/245 |
| #6 431.7 Verifying : perl-POSIX-2.13-502.fc39.x86_64 227/245 |
| #6 431.7 Verifying : perl-SelectSaver-1.02-502.fc39.noarch 228/245 |
| #6 431.7 Verifying : perl-Symbol-1.09-502.fc39.noarch 229/245 |
| #6 431.7 Verifying : perl-base-2.27-502.fc39.noarch 230/245 |
| #6 431.7 Verifying : perl-if-0.61.000-502.fc39.noarch 231/245 |
| #6 431.7 Verifying : perl-interpreter-4:5.38.2-502.fc39.x86_64 232/245 |
| #6 431.7 Verifying : perl-lib-0.65-502.fc39.x86_64 233/245 |
| #6 431.7 Verifying : perl-libs-4:5.38.2-502.fc39.x86_64 234/245 |
| #6 431.7 Verifying : perl-locale-1.10-502.fc39.noarch 235/245 |
| #6 431.7 Verifying : perl-mro-1.28-502.fc39.x86_64 236/245 |
| #6 431.7 Verifying : perl-overload-1.37-502.fc39.noarch 237/245 |
| #6 431.7 Verifying : perl-overloading-0.02-502.fc39.noarch 238/245 |
| #6 431.7 Verifying : perl-vars-1.05-502.fc39.noarch 239/245 |
| #6 431.7 Verifying : rav1e-libs-0.7.1-1.fc39.x86_64 240/245 |
| #6 431.7 Verifying : rsvg-pixbuf-loader-2.57.1-1.fc39.x86_64 241/245 |
| #6 431.7 Verifying : sdubby-1.0-5.fc39.noarch 242/245 |
| #6 431.7 Verifying : slang-2.3.3-4.fc39.x86_64 243/245 |
| #6 431.7 Verifying : systemd-boot-unsigned-254.9-1.fc39.x86_64 244/245 |
| #6 431.7 Verifying : util-linux-2.39.3-5.fc39.x86_64 245/245 |
| #6 438.6 |
| #6 438.6 Installed: |
| #6 438.6 ImageMagick-1:7.1.1.26-2.fc39.x86_64 |
| #6 438.6 ImageMagick-libs-1:7.1.1.26-2.fc39.x86_64 |
| #6 438.6 LibRaw-0.21.2-2.fc39.x86_64 |
| #6 438.6 abattis-cantarell-vf-fonts-0.301-10.fc39.noarch |
| #6 438.6 adobe-mappings-cmap-20230622-1.fc39.noarch |
| #6 438.6 adobe-mappings-cmap-deprecated-20230622-1.fc39.noarch |
| #6 438.6 adobe-mappings-pdf-20190401-5.fc39.noarch |
| #6 438.6 avahi-libs-0.8-24.fc39.x86_64 |
| #6 438.6 bind-libs-32:9.18.24-1.fc39.x86_64 |
| #6 438.6 bind-license-32:9.18.24-1.fc39.noarch |
| #6 438.6 bind-utils-32:9.18.24-1.fc39.x86_64 |
| #6 438.6 caca-utils-0.99-0.69.beta20.fc39.x86_64 |
| #6 438.6 cairo-1.18.0-1.fc39.x86_64 |
| #6 438.6 cairo-gobject-1.18.0-1.fc39.x86_64 |
| #6 438.6 catimg-2.7.0-9.fc39.x86_64 |
| #6 438.6 cpp-13.2.1-6.fc39.x86_64 |
| #6 438.6 crypto-policies-scripts-20231204-1.git1e3a2e4.fc39.noarch |
| #6 438.6 cups-libs-1:2.4.7-5.fc39.x86_64 |
| #6 438.6 dbus-libs-1:1.14.10-1.fc39.x86_64 |
| #6 438.6 default-fonts-core-sans-4.0-9.fc39.noarch |
| #6 438.6 fftw-libs-double-3.3.10-10.fc39.x86_64 |
| #6 438.6 figlet-2.2.5-26.20151018gita565ae1.fc39.x86_64 |
| #6 438.6 fontconfig-2.14.2-6.fc39.x86_64 |
| #6 438.6 fonts-filesystem-1:2.0.5-12.fc39.noarch |
| #6 438.6 freeglut-3.4.0-7.fc39.x86_64 |
| #6 438.6 freetype-2.13.1-2.fc39.x86_64 |
| #6 438.6 fribidi-1.0.13-2.fc39.x86_64 |
| #6 438.6 fstrm-0.6.1-8.fc39.x86_64 |
| #6 438.6 gc-8.2.2-4.fc39.x86_64 |
| #6 438.6 gd-2.3.3-12.fc39.x86_64 |
| #6 438.6 gdk-pixbuf2-2.42.10-5.fc39.x86_64 |
| #6 438.6 gdk-pixbuf2-xlib-2.40.2-7.fc39.x86_64 |
| #6 438.6 giflib-5.2.1-17.fc39.x86_64 |
| #6 438.6 git-2.43.2-1.fc39.x86_64 |
| #6 438.6 git-core-2.43.2-1.fc39.x86_64 |
| #6 438.6 git-core-doc-2.43.2-1.fc39.noarch |
| #6 438.6 glibc-langpack-ja-2.38-16.fc39.x86_64 |
| #6 438.6 glibc-locale-source-2.38-16.fc39.x86_64 |
| #6 438.6 google-droid-sans-fonts-20200215-17.fc39.noarch |
| #6 438.6 google-noto-fonts-common-20240101-1.fc39.noarch |
| #6 438.6 google-noto-sans-vf-fonts-20240101-1.fc39.noarch |
| #6 438.6 gpm-libs-1.20.7-44.fc39.x86_64 |
| #6 438.6 graphite2-1.3.14-12.fc39.x86_64 |
| #6 438.6 graphviz-8.1.0-6.fc39.x86_64 |
| #6 438.6 groff-base-1.23.0-3.fc39.x86_64 |
| #6 438.6 gts-0.7.6-46.20121130.fc39.x86_64 |
| #6 438.6 harfbuzz-8.2.1-2.fc39.x86_64 |
| #6 438.6 highway-1.0.7-1.fc39.x86_64 |
| #6 438.6 hwdata-0.379-1.fc39.noarch |
| #6 438.6 imath-3.1.9-3.fc39.x86_64 |
| #6 438.6 imlib2-1.11.1-3.fc39.x86_64 |
| #6 438.6 jasper-libs-3.0.6-4.fc39.x86_64 |
| #6 438.6 jbig2dec-libs-0.19-10.fc39.x86_64 |
| #6 438.6 jbigkit-libs-2.1-26.fc39.x86_64 |
| #6 438.6 jemalloc-5.3.0-4.fc39.x86_64 |
| #6 438.6 jxl-pixbuf-loader-1:0.8.2-3.fc39.x86_64 |
| #6 438.6 kmod-libs-30-6.fc39.x86_64 |
| #6 438.6 lasi-1.1.3-11.fc39.x86_64 |
| #6 438.6 lcms2-2.15-2.fc39.x86_64 |
| #6 438.6 less-633-2.fc39.x86_64 |
| #6 438.6 libICE-1.0.10-11.fc39.x86_64 |
| #6 438.6 libSM-1.2.3-13.fc39.x86_64 |
| #6 438.6 libX11-1.8.7-1.fc39.x86_64 |
| #6 438.6 libX11-common-1.8.7-1.fc39.noarch |
| #6 438.6 libX11-xcb-1.8.7-1.fc39.x86_64 |
| #6 438.6 libXau-1.0.11-3.fc39.x86_64 |
| #6 438.6 libXcomposite-0.4.5-10.fc39.x86_64 |
| #6 438.6 libXext-1.3.5-3.fc39.x86_64 |
| #6 438.6 libXfixes-6.0.0-6.fc39.x86_64 |
| #6 438.6 libXft-2.3.8-3.fc39.x86_64 |
| #6 438.6 libXi-1.8.1-2.fc39.x86_64 |
| #6 438.6 libXinerama-1.1.5-3.fc39.x86_64 |
| #6 438.6 libXmu-1.1.4-3.fc39.x86_64 |
| #6 438.6 libXpm-3.5.17-1.fc39.x86_64 |
| #6 438.6 libXrandr-1.5.4-1.fc39.x86_64 |
| #6 438.6 libXrender-0.9.11-3.fc39.x86_64 |
| #6 438.6 libXt-1.2.1-5.fc39.x86_64 |
| #6 438.6 libXtst-1.2.4-3.fc39.x86_64 |
| #6 438.6 libXxf86dga-1.1.5-11.fc39.x86_64 |
| #6 438.6 libXxf86vm-1.1.5-3.fc39.x86_64 |
| #6 438.6 libaom-3.8.0-1.fc39.x86_64 |
| #6 438.6 libavif-0.11.1-11.fc39.x86_64 |
| #6 438.6 libcaca-0.99-0.69.beta20.fc39.x86_64 |
| #6 438.6 libcbor-0.10.2-2.fc39.x86_64 |
| #6 438.6 libdatrie-0.2.13-7.fc39.x86_64 |
| #6 438.6 libdav1d-1.2.1-2.fc39.x86_64 |
| #6 438.6 libdrm-2.4.120-1.fc39.x86_64 |
| #6 438.6 libedit-3.1-48.20230828cvs.fc39.x86_64 |
| #6 438.6 libfdisk-2.39.3-5.fc39.x86_64 |
| #6 438.6 libfido2-1.13.0-3.fc39.x86_64 |
| #6 438.6 libglvnd-1:1.7.0-1.fc39.x86_64 |
| #6 438.6 libglvnd-glx-1:1.7.0-1.fc39.x86_64 |
| #6 438.6 libglvnd-opengl-1:1.7.0-1.fc39.x86_64 |
| #6 438.6 libgs-10.02.1-2.fc39.x86_64 |
| #6 438.6 libheif-1.17.5-1.fc39.x86_64 |
| #6 438.6 libijs-0.35-19.fc39.x86_64 |
| #6 438.6 libimagequant-4.0.3-2.fc39.x86_64 |
| #6 438.6 libjpeg-turbo-2.1.4-3.fc39.x86_64 |
| #6 438.6 libjxl-1:0.8.2-3.fc39.x86_64 |
| #6 438.6 liblerc-4.0.0-4.fc39.x86_64 |
| #6 438.6 liblqr-1-0.4.2-22.fc39.x86_64 |
| #6 438.6 libmaxminddb-1.9.1-1.fc39.x86_64 |
| #6 438.6 libmpc-1.3.1-3.fc39.x86_64 |
| #6 438.6 libpaper-1:2.1.1-1.fc39.x86_64 |
| #6 438.6 libpciaccess-0.16-9.fc39.x86_64 |
| #6 438.6 libpng-2:1.6.37-15.fc39.x86_64 |
| #6 438.6 libraqm-0.8.0-5.fc39.x86_64 |
| #6 438.6 librsvg2-2.57.1-1.fc39.x86_64 |
| #6 438.6 libspectre-0.2.12-4.fc39.x86_64 |
| #6 438.6 libthai-0.1.29-6.fc39.x86_64 |
| #6 438.6 libtiff-4.4.0-8.fc39.x86_64 |
| #6 438.6 libtool-ltdl-2.4.7-7.fc39.x86_64 |
| #6 438.6 libutempter-1.2.1-10.fc39.x86_64 |
| #6 438.6 libuv-1:1.48.0-1.fc39.x86_64 |
| #6 438.6 libvmaf-2.3.0-6.fc39.x86_64 |
| #6 438.6 libwebp-1.3.2-2.fc39.x86_64 |
| #6 438.6 libwmf-lite-0.2.13-2.fc39.x86_64 |
| #6 438.6 libxcb-1.13.1-12.fc39.x86_64 |
| #6 438.6 libxshmfence-1.3-13.fc39.x86_64 |
| #6 438.6 libzip-1.10.1-1.fc39.x86_64 |
| #6 438.6 llvm-libs-17.0.6-3.fc39.x86_64 |
| #6 438.6 lm_sensors-libs-3.6.0-14.fc39.x86_64 |
| #6 438.6 lmdb-libs-0.9.32-1.fc39.x86_64 |
| #6 438.6 lolcat-1.4-2.fc39.x86_64 |
| #6 438.6 mesa-dri-drivers-23.3.5-1.fc39.x86_64 |
| #6 438.6 mesa-filesystem-23.3.5-1.fc39.x86_64 |
| #6 438.6 mesa-libGL-23.3.5-1.fc39.x86_64 |
| #6 438.6 mesa-libGLU-9.0.3-1.fc39.x86_64 |
| #6 438.6 mesa-libglapi-23.3.5-1.fc39.x86_64 |
| #6 438.6 mesa-va-drivers-23.3.5-1.fc39.x86_64 |
| #6 438.6 ncurses-6.4-7.20230520.fc39.x86_64 |
| #6 438.6 neofetch-7.1.0-10.fc39.noarch |
| #6 438.6 netpbm-11.02.00-2.fc39.x86_64 |
| #6 438.6 nspr-4.35.0-18.fc39.x86_64 |
| #6 438.6 nss-3.98.0-1.fc39.x86_64 |
| #6 438.6 nss-softokn-3.98.0-1.fc39.x86_64 |
| #6 438.6 nss-softokn-freebl-3.98.0-1.fc39.x86_64 |
| #6 438.6 nss-sysinit-3.98.0-1.fc39.x86_64 |
| #6 438.6 nss-util-3.98.0-1.fc39.x86_64 |
| #6 438.6 open-sans-fonts-1.10-19.fc39.noarch |
| #6 438.6 openexr-libs-3.1.10-2.fc39.x86_64 |
| #6 438.6 openjpeg2-2.5.0-5.fc39.x86_64 |
| #6 438.6 openssh-9.3p1-10.fc39.x86_64 |
| #6 438.6 openssh-clients-9.3p1-10.fc39.x86_64 |
| #6 438.6 pango-1.51.0-1.fc39.x86_64 |
| #6 438.6 pciutils-3.10.0-3.fc39.x86_64 |
| #6 438.6 pciutils-libs-3.10.0-3.fc39.x86_64 |
| #6 438.6 perl-AutoLoader-5.74-502.fc39.noarch |
| #6 438.6 perl-B-1.88-502.fc39.x86_64 |
| #6 438.6 perl-Carp-1.54-500.fc39.noarch |
| #6 438.6 perl-Class-Struct-0.68-502.fc39.noarch |
| #6 438.6 perl-Data-Dumper-2.188-501.fc39.x86_64 |
| #6 438.6 perl-Digest-1.20-500.fc39.noarch |
| #6 438.6 perl-Digest-MD5-2.58-500.fc39.x86_64 |
| #6 438.6 perl-DynaLoader-1.54-502.fc39.x86_64 |
| #6 438.6 perl-Encode-4:3.19-500.fc39.x86_64 |
| #6 438.6 perl-Errno-1.37-502.fc39.x86_64 |
| #6 438.6 perl-Error-1:0.17029-13.fc39.noarch |
| #6 438.6 perl-Exporter-5.77-500.fc39.noarch |
| #6 438.6 perl-Fcntl-1.15-502.fc39.x86_64 |
| #6 438.6 perl-File-Basename-2.86-502.fc39.noarch |
| #6 438.6 perl-File-Find-1.43-502.fc39.noarch |
| #6 438.6 perl-File-Path-2.18-500.fc39.noarch |
| #6 438.6 perl-File-Temp-1:0.231.100-500.fc39.noarch |
| #6 438.6 perl-File-stat-1.13-502.fc39.noarch |
| #6 438.6 perl-FileHandle-2.05-502.fc39.noarch |
| #6 438.6 perl-Getopt-Long-1:2.54-500.fc39.noarch |
| #6 438.6 perl-Getopt-Std-1.13-502.fc39.noarch |
| #6 438.6 perl-Git-2.43.2-1.fc39.noarch |
| #6 438.6 perl-HTTP-Tiny-0.088-3.fc39.noarch |
| #6 438.6 perl-IO-1.52-502.fc39.x86_64 |
| #6 438.6 perl-IO-Socket-IP-0.42-1.fc39.noarch |
| #6 438.6 perl-IO-Socket-SSL-2.083-3.fc39.noarch |
| #6 438.6 perl-IPC-Open3-1.22-502.fc39.noarch |
| #6 438.6 perl-MIME-Base64-3.16-500.fc39.x86_64 |
| #6 438.6 perl-Mozilla-CA-20230801-1.fc39.noarch |
| #6 438.6 perl-NDBM_File-1.16-502.fc39.x86_64 |
| #6 438.6 perl-NKF-1:2.1.4-30.fc39.x86_64 |
| #6 438.6 perl-Net-SSLeay-1.92-10.fc39.x86_64 |
| #6 438.6 perl-POSIX-2.13-502.fc39.x86_64 |
| #6 438.6 perl-PathTools-3.89-500.fc39.x86_64 |
| #6 438.6 perl-Pod-Escapes-1:1.07-500.fc39.noarch |
| #6 438.6 perl-Pod-Perldoc-3.28.01-501.fc39.noarch |
| #6 438.6 perl-Pod-Simple-1:3.45-4.fc39.noarch |
| #6 438.6 perl-Pod-Usage-4:2.03-500.fc39.noarch |
| #6 438.6 perl-Scalar-List-Utils-5:1.63-500.fc39.x86_64 |
| #6 438.6 perl-SelectSaver-1.02-502.fc39.noarch |
| #6 438.6 perl-Socket-4:2.037-3.fc39.x86_64 |
| #6 438.6 perl-Storable-1:3.32-500.fc39.x86_64 |
| #6 438.6 perl-Symbol-1.09-502.fc39.noarch |
| #6 438.6 perl-Term-ANSIColor-5.01-501.fc39.noarch |
| #6 438.6 perl-Term-Cap-1.18-500.fc39.noarch |
| #6 438.6 perl-TermReadKey-2.38-18.fc39.x86_64 |
| #6 438.6 perl-Text-ParseWords-3.31-500.fc39.noarch |
| #6 438.6 perl-Text-Tabs+Wrap-2023.0511-3.fc39.noarch |
| #6 438.6 perl-Time-Local-2:1.350-3.fc39.noarch |
| #6 438.6 perl-URI-5.21-1.fc39.noarch |
| #6 438.6 perl-base-2.27-502.fc39.noarch |
| #6 438.6 perl-constant-1.33-501.fc39.noarch |
| #6 438.6 perl-if-0.61.000-502.fc39.noarch |
| #6 438.6 perl-interpreter-4:5.38.2-502.fc39.x86_64 |
| #6 438.6 perl-lib-0.65-502.fc39.x86_64 |
| #6 438.6 perl-libnet-3.15-501.fc39.noarch |
| #6 438.6 perl-libs-4:5.38.2-502.fc39.x86_64 |
| #6 438.6 perl-locale-1.10-502.fc39.noarch |
| #6 438.6 perl-mro-1.28-502.fc39.x86_64 |
| #6 438.6 perl-overload-1.37-502.fc39.noarch |
| #6 438.6 perl-overloading-0.02-502.fc39.noarch |
| #6 438.6 perl-parent-1:0.241-500.fc39.noarch |
| #6 438.6 perl-podlators-1:5.01-500.fc39.noarch |
| #6 438.6 perl-vars-1.05-502.fc39.noarch |
| #6 438.6 pixman-0.42.2-2.fc39.x86_64 |
| #6 438.6 poppler-23.08.0-1.fc39.x86_64 |
| #6 438.6 poppler-data-0.4.11-5.fc39.noarch |
| #6 438.6 poppler-glib-23.08.0-1.fc39.x86_64 |
| #6 438.6 protobuf-c-1.4.1-5.fc39.x86_64 |
| #6 438.6 rav1e-libs-0.7.1-1.fc39.x86_64 |
| #6 438.6 rsvg-pixbuf-loader-2.57.1-1.fc39.x86_64 |
| #6 438.6 sdubby-1.0-5.fc39.noarch |
| #6 438.6 shared-mime-info-2.2-4.fc39.x86_64 |
| #6 438.6 slang-2.3.3-4.fc39.x86_64 |
| #6 438.6 svt-av1-libs-1.4.1-3.fc39.x86_64 |
| #6 438.6 systemd-boot-unsigned-254.9-1.fc39.x86_64 |
| #6 438.6 toilet-0.3-15.fc39.x86_64 |
| #6 438.6 urw-base35-bookman-fonts-20200910-18.fc39.noarch |
| #6 438.6 urw-base35-c059-fonts-20200910-18.fc39.noarch |
| #6 438.6 urw-base35-d050000l-fonts-20200910-18.fc39.noarch |
| #6 438.6 urw-base35-fonts-20200910-18.fc39.noarch |
| #6 438.6 urw-base35-fonts-common-20200910-18.fc39.noarch |
| #6 438.6 urw-base35-gothic-fonts-20200910-18.fc39.noarch |
| #6 438.6 urw-base35-nimbus-mono-ps-fonts-20200910-18.fc39.noarch |
| #6 438.6 urw-base35-nimbus-roman-fonts-20200910-18.fc39.noarch |
| #6 438.6 urw-base35-nimbus-sans-fonts-20200910-18.fc39.noarch |
| #6 438.6 urw-base35-p052-fonts-20200910-18.fc39.noarch |
| #6 438.6 urw-base35-standard-symbols-ps-fonts-20200910-18.fc39.noarch |
| #6 438.6 urw-base35-z003-fonts-20200910-18.fc39.noarch |
| #6 438.6 util-linux-2.39.3-5.fc39.x86_64 |
| #6 438.6 w3m-0.5.3-61.git20230121.fc39.x86_64 |
| #6 438.6 w3m-img-0.5.3-61.git20230121.fc39.x86_64 |
| #6 438.6 xdpyinfo-1.3.3-4.fc39.x86_64 |
| #6 438.6 xml-common-0.6.3-61.fc39.noarch |
| #6 438.6 xprop-1.2.5-4.fc39.x86_64 |
| #6 438.6 xrandr-1.5.2-3.fc39.x86_64 |
| #6 438.6 xrdb-1.2.2-1.fc39.x86_64 |
| #6 438.6 xwininfo-1.1.5-7.fc39.x86_64 |
| #6 438.6 |
| #6 438.6 Complete! |
| #6 439.2 25 files removed |
| #6 DONE 441.8s |
| |
#8 [4/6] RUN ln -snf /usr/share/zoneinfo/Asia/Tokyo /etc/localtime && echo Asia/Tokyo > /etc/timezone | #7 [3/5] RUN localedef --force -i ja_JP -f UTF-8 ja_JP.UTF-8 && ln -snf /usr/share/zoneinfo/Asia/Tokyo /etc/localtime && echo Asia/Tokyo > /etc/timezone |
#8 DONE 2.3s | #7 DONE 4.7s |
| |
#9 [5/6] ADD ./message /message | #8 [4/5] RUN git clone --depth 1 https://github.com/xero/figlet-fonts.git |
#9 DONE 1.2s | #8 1.912 Cloning into 'figlet-fonts'... |
| #8 DONE 6.5s |
| |
#10 [6/6] RUN git clone --depth 1 https://github.com/xero/figlet-fonts.git | #9 [5/5] ADD ./message /message |
#10 1.145 Cloning into 'figlet-fonts'... | #9 DONE 2.2s |
#10 DONE 4.5s | |
| |
#11 exporting to image | #10 exporting to image |
#11 exporting layers | #10 exporting layers |
#11 exporting layers 21.1s done | #10 exporting layers 14.5s done |
#11 writing image sha256:61a5fc910b8047b9b117d9af2c72d153b3c04f2beac1bf8b1ca627d5ee468930 0.0s done | #10 writing image sha256:08e507b0b5daa78d902246ab75dec0eff014743573f9b37c740b42bae30b5620 0.0s done |
#11 naming to docker.io/library/haruo:0.1 0.0s done | #10 naming to docker.io/library/haruo_docker:0.01 0.0s done |
#11 DONE 21.1s | #10 DONE 14.6s |
</pre></html></WRAP> | </pre></html></WRAP> |
</WRAP> | </WRAP> |
<WRAP color_term> | <WRAP color_term> |
<WRAP color_command><html><pre> | <WRAP color_command><html><pre> |
<font color="#FF8700"><b>$</b></font> <font color="#4E9A06">docker</font> run <font color="#75507B">--rm</font> <font color="#75507B">-it</font> haruo:0.1 | <font color="#FF8700"><b>$</b></font> <font color="#26A269">docker</font> run <font color="#A347BA">--rm</font> <font color="#A347BA">-ti</font><font color="#999999"> ha</font>ruo_docker:0.01 |
</pre></html></WRAP> | </pre></html></WRAP> |
<WRAP color_result><html><pre><div class=BSc> | <WRAP color_result><html><pre><div class=BSc> |
<font color="#00AFFF"> ██░</font><font color="#00AFD7"> ██ </font><font color="#00D7D7"> ▄▄▄ </font><font color="#00D7AF"> </font><font color="#00FFAF"> ██</font><font color="#00FF87">▀███ </font><font color="#5FFF87"> █ </font><font color="#5FFF5F"> █</font><font color="#87FF5F">█ ▒█</font><font color="#87FF00">████</font><font color="#AFFF00"> </font><font color="#AFD700"> ▓███</font><font color="#D7D700">██▄ </font><font color="#D7AF00"> ▒██</font><font color="#FFAF00">███ </font><font color="#FF8700"> ▄██</font><font color="#FF875F">██▄ </font><font color="#FF5F5F"> ██ </font><font color="#FF5F87">▄█▀▓</font><font color="#FF0087">████</font><font color="#FF00AF">█ ██</font><font color="#D700AF">▀███</font><font color="#D700D7"> </font> | <font color="#FF0087"> ██░</font><font color="#FF00AF"> ██ </font><font color="#D700AF"> ▄▄▄ </font><font color="#D700D7"> </font><font color="#AF00D7"> ██</font><font color="#AF00FF">▀███ </font><font color="#8700FF"> █ </font><font color="#875FFF"> █</font><font color="#5F5FFF">█ ▒█</font><font color="#5F87FF">████</font><font color="#0087FF"> </font><font color="#00AFFF"> ▓███</font><font color="#00AFD7">██▄ </font><font color="#00D7D7"> ▒██</font><font color="#00D7AF">███ </font><font color="#00FFAF"> ▄██</font><font color="#00FF87">██▄ </font><font color="#5FFF87"> ██ </font><font color="#5FFF5F">▄█▀▓</font><font color="#87FF5F">████</font><font color="#87FF00">█ ██</font><font color="#AFFF00">▀███</font><font color="#AFD700"> </font> |
<font color="#00AFFF">▓██</font><font color="#00AFD7">░ ██▒</font><font color="#00D7D7">▒███</font><font color="#00D7AF">█▄ </font><font color="#00FFAF"> ▓██</font><font color="#00FF87"> ▒ █</font><font color="#5FFF87">█▒ █</font><font color="#5FFF5F">█ ▓█</font><font color="#87FF5F">█▒▒█</font><font color="#87FF00">█▒ █</font><font color="#AFFF00">█▒ </font><font color="#AFD700"> ▒██</font><font color="#D7D700">▀ ██▌</font><font color="#D7AF00">▒██▒</font><font color="#FFAF00"> ██</font><font color="#FF8700">▒▒██▀</font><font color="#FF875F"> ▀█ </font><font color="#FF5F5F"> ██</font><font color="#FF5F87">▄█▒ ▓</font><font color="#FF0087">█ </font><font color="#FF00AF">▀ ▓█</font><font color="#D700AF">█ ▒ █</font><font color="#D700D7">█▒</font> | <font color="#FF0087">▓██</font><font color="#FF00AF">░ ██▒</font><font color="#D700AF">▒███</font><font color="#D700D7">█▄ </font><font color="#AF00D7"> ▓██</font><font color="#AF00FF"> ▒ █</font><font color="#8700FF">█▒ █</font><font color="#875FFF">█ ▓█</font><font color="#5F5FFF">█▒▒█</font><font color="#5F87FF">█▒ █</font><font color="#0087FF">█▒ </font><font color="#00AFFF"> ▒██</font><font color="#00AFD7">▀ ██▌</font><font color="#00D7D7">▒██▒</font><font color="#00D7AF"> ██</font><font color="#00FFAF">▒▒██▀</font><font color="#00FF87"> ▀█ </font><font color="#5FFF87"> ██</font><font color="#5FFF5F">▄█▒ ▓</font><font color="#87FF5F">█ </font><font color="#87FF00">▀ ▓█</font><font color="#AFFF00">█ ▒ █</font><font color="#AFD700">█▒</font> |
<font color="#00AFFF">▒██</font><font color="#00AFD7">▀▀██</font><font color="#00D7D7">░▒██ </font><font color="#00D7AF"> ▀█▄</font><font color="#00FFAF"> ▓█</font><font color="#00FF87">█ ░▄█</font><font color="#5FFF87"> ▒▓█</font><font color="#5FFF5F">█ ▒</font><font color="#87FF5F">██░▒█</font><font color="#87FF00">█░ </font><font color="#AFFF00">██▒ </font><font color="#AFD700"> ░██</font><font color="#D7D700"> █</font><font color="#D7AF00">▌▒██</font><font color="#FFAF00">░ ██</font><font color="#FF8700">▒▒▓█</font><font color="#FF875F"> ▄</font><font color="#FF5F5F"> ▓██</font><font color="#FF5F87">█▄░ </font><font color="#FF0087">▒███ </font><font color="#FF00AF"> ▓█</font><font color="#D700AF">█ ░▄</font><font color="#D700D7">█ ▒</font> | <font color="#FF0087">▒██</font><font color="#FF00AF">▀▀██</font><font color="#D700AF">░▒██ </font><font color="#D700D7"> ▀█▄</font><font color="#AF00D7"> ▓█</font><font color="#AF00FF">█ ░▄█</font><font color="#8700FF"> ▒▓█</font><font color="#875FFF">█ ▒</font><font color="#5F5FFF">██░▒█</font><font color="#5F87FF">█░ </font><font color="#0087FF">██▒ </font><font color="#00AFFF"> ░██</font><font color="#00AFD7"> █</font><font color="#00D7D7">▌▒██</font><font color="#00D7AF">░ ██</font><font color="#00FFAF">▒▒▓█</font><font color="#00FF87"> ▄</font><font color="#5FFF87"> ▓██</font><font color="#5FFF5F">█▄░ </font><font color="#87FF5F">▒███ </font><font color="#87FF00"> ▓█</font><font color="#AFFF00">█ ░▄</font><font color="#AFD700">█ ▒</font> |
<font color="#00AFFF">░▓█</font><font color="#00AFD7"> ░██</font><font color="#00D7D7"> ░██</font><font color="#00D7AF">▄▄▄▄█</font><font color="#00FFAF">█ ▒█</font><font color="#00FF87">█▀▀█</font><font color="#5FFF87">▄ ▓▓</font><font color="#5FFF5F">█ ░</font><font color="#87FF5F">██░▒</font><font color="#87FF00">██ </font><font color="#AFFF00">██░ </font><font color="#AFD700"> ░▓</font><font color="#D7D700">█▄ </font><font color="#D7AF00">▌▒██</font><font color="#FFAF00"> █</font><font color="#FF8700">█░▒▓▓</font><font color="#FF875F">▄ ▄█</font><font color="#FF5F5F">█▒▓█</font><font color="#FF5F87">█ █▄ </font><font color="#FF0087">▒▓█ </font><font color="#FF00AF"> ▄ ▒</font><font color="#D700AF">██▀▀█</font><font color="#D700D7">▄ </font> | <font color="#FF0087">░▓█</font><font color="#FF00AF"> ░██</font><font color="#D700AF"> ░██</font><font color="#D700D7">▄▄▄▄█</font><font color="#AF00D7">█ ▒█</font><font color="#AF00FF">█▀▀█</font><font color="#8700FF">▄ ▓▓</font><font color="#875FFF">█ ░</font><font color="#5F5FFF">██░▒</font><font color="#5F87FF">██ </font><font color="#0087FF">██░ </font><font color="#00AFFF"> ░▓</font><font color="#00AFD7">█▄ </font><font color="#00D7D7">▌▒██</font><font color="#00D7AF"> █</font><font color="#00FFAF">█░▒▓▓</font><font color="#00FF87">▄ ▄█</font><font color="#5FFF87">█▒▓█</font><font color="#5FFF5F">█ █▄ </font><font color="#87FF5F">▒▓█ </font><font color="#87FF00"> ▄ ▒</font><font color="#AFFF00">██▀▀█</font><font color="#AFD700">▄ </font> |
<font color="#00AFFF">░▓</font><font color="#00AFD7">█▒░█</font><font color="#00D7D7">█▓ ▓█</font><font color="#00D7AF"> ▓</font><font color="#00FFAF">██▒░</font><font color="#00FF87">██▓ ▒</font><font color="#5FFF87">██▒▒</font><font color="#5FFF5F">▒████</font><font color="#87FF5F">█▓ ░</font><font color="#87FF00"> ███</font><font color="#AFFF00">█▓▒░ </font><font color="#AFD700"> ░▒</font><font color="#D7D700">████</font><font color="#D7AF00">▓ ░ █</font><font color="#FFAF00">███▓</font><font color="#FF8700">▒░▒ </font><font color="#FF875F">▓███▀</font><font color="#FF5F5F"> ░▒█</font><font color="#FF5F87">█▒ █</font><font color="#FF0087">▄░▒██</font><font color="#FF00AF">██▒░</font><font color="#D700AF">██▓ </font><font color="#D700D7">▒██▒</font> | <font color="#FF0087">░▓</font><font color="#FF00AF">█▒░█</font><font color="#D700AF">█▓ ▓█</font><font color="#D700D7"> ▓</font><font color="#AF00D7">██▒░</font><font color="#AF00FF">██▓ ▒</font><font color="#8700FF">██▒▒</font><font color="#875FFF">▒████</font><font color="#5F5FFF">█▓ ░</font><font color="#5F87FF"> ███</font><font color="#0087FF">█▓▒░ </font><font color="#00AFFF"> ░▒</font><font color="#00AFD7">████</font><font color="#00D7D7">▓ ░ █</font><font color="#00D7AF">███▓</font><font color="#00FFAF">▒░▒ </font><font color="#00FF87">▓███▀</font><font color="#5FFF87"> ░▒█</font><font color="#5FFF5F">█▒ █</font><font color="#87FF5F">▄░▒██</font><font color="#87FF00">██▒░</font><font color="#AFFF00">██▓ </font><font color="#AFD700">▒██▒</font> |
<font color="#00AFFF"> ▒</font><font color="#00AFD7"> ░░▒</font><font color="#00D7D7">░▒ ▒</font><font color="#00D7AF">▒ ▓</font><font color="#00FFAF">▒█░░</font><font color="#00FF87"> ▒▓ </font><font color="#5FFF87">░▒▓░░</font><font color="#5FFF5F">▒▓▒ </font><font color="#87FF5F">▒ ▒ </font><font color="#87FF00">░ ▒░▒</font><font color="#AFFF00">░▒░ </font><font color="#AFD700"> </font><font color="#D7D700">▒▒▓ </font><font color="#D7AF00">▒ ░ </font><font color="#FFAF00">▒░▒░▒</font><font color="#FF8700">░ ░ </font><font color="#FF875F">░▒ ▒</font><font color="#FF5F5F"> ░▒ </font><font color="#FF5F87">▒▒ ▓</font><font color="#FF0087">▒░░ </font><font color="#FF00AF">▒░ ░░</font><font color="#D700AF"> ▒▓ </font><font color="#D700D7">░▒▓░</font> | <font color="#FF0087"> ▒</font><font color="#FF00AF"> ░░▒</font><font color="#D700AF">░▒ ▒</font><font color="#D700D7">▒ ▓</font><font color="#AF00D7">▒█░░</font><font color="#AF00FF"> ▒▓ </font><font color="#8700FF">░▒▓░░</font><font color="#875FFF">▒▓▒ </font><font color="#5F5FFF">▒ ▒ </font><font color="#5F87FF">░ ▒░▒</font><font color="#0087FF">░▒░ </font><font color="#00AFFF"> </font><font color="#00AFD7">▒▒▓ </font><font color="#00D7D7">▒ ░ </font><font color="#00D7AF">▒░▒░▒</font><font color="#00FFAF">░ ░ </font><font color="#00FF87">░▒ ▒</font><font color="#5FFF87"> ░▒ </font><font color="#5FFF5F">▒▒ ▓</font><font color="#87FF5F">▒░░ </font><font color="#87FF00">▒░ ░░</font><font color="#AFFF00"> ▒▓ </font><font color="#AFD700">░▒▓░</font> |
<font color="#00AFFF"> </font><font color="#00AFD7">▒ ░▒░</font><font color="#00D7D7"> ░ </font><font color="#00D7AF">▒ </font><font color="#00FFAF">▒▒ ░ </font><font color="#00FF87"> ░▒ </font><font color="#5FFF87">░ ▒░</font><font color="#5FFF5F">░░▒░ </font><font color="#87FF5F">░ ░ </font><font color="#87FF00"> ░ </font><font color="#AFFF00">▒ ▒░ </font><font color="#AFD700"> </font><font color="#D7D700">░ ▒ </font><font color="#D7AF00"> ▒ </font><font color="#FFAF00">░ ▒ </font><font color="#FF8700">▒░ </font><font color="#FF875F"> ░ ▒</font><font color="#FF5F5F"> ░</font><font color="#FF5F87"> ░▒ </font><font color="#FF0087">▒░ ░ </font><font color="#FF00AF">░ ░</font><font color="#D700AF"> ░▒ </font><font color="#D700D7">░ ▒░</font> | <font color="#FF0087"> </font><font color="#FF00AF">▒ ░▒░</font><font color="#D700AF"> ░ </font><font color="#D700D7">▒ </font><font color="#AF00D7">▒▒ ░ </font><font color="#AF00FF"> ░▒ </font><font color="#8700FF">░ ▒░</font><font color="#875FFF">░░▒░ </font><font color="#5F5FFF">░ ░ </font><font color="#5F87FF"> ░ </font><font color="#0087FF">▒ ▒░ </font><font color="#00AFFF"> </font><font color="#00AFD7">░ ▒ </font><font color="#00D7D7"> ▒ </font><font color="#00D7AF">░ ▒ </font><font color="#00FFAF">▒░ </font><font color="#00FF87"> ░ ▒</font><font color="#5FFF87"> ░</font><font color="#5FFF5F"> ░▒ </font><font color="#87FF5F">▒░ ░ </font><font color="#87FF00">░ ░</font><font color="#AFFF00"> ░▒ </font><font color="#AFD700">░ ▒░</font> |
<font color="#00AFFF"> </font><font color="#00AFD7">░ ░</font><font color="#00D7D7">░ ░ </font><font color="#00D7AF"> ░ </font><font color="#00FFAF">▒ </font><font color="#00FF87"> ░░ </font><font color="#5FFF87"> ░ </font><font color="#5FFF5F"> ░░░</font><font color="#87FF5F"> ░ ░ </font><font color="#87FF00">░ ░ </font><font color="#AFFF00">░ ▒ </font><font color="#AFD700"> </font><font color="#D7D700">░ ░ </font><font color="#D7AF00"> ░ ░</font><font color="#FFAF00"> ░ ░ </font><font color="#FF8700">▒ ░</font><font color="#FF875F"> </font><font color="#FF5F5F"> ░</font><font color="#FF5F87"> ░░ </font><font color="#FF0087">░ </font><font color="#FF00AF"> ░ </font><font color="#D700AF"> ░░</font><font color="#D700D7"> ░</font><font color="#AF00D7"> </font> | <font color="#FF0087"> </font><font color="#FF00AF">░ ░</font><font color="#D700AF">░ ░ </font><font color="#D700D7"> ░ </font><font color="#AF00D7">▒ </font><font color="#AF00FF"> ░░ </font><font color="#8700FF"> ░ </font><font color="#875FFF"> ░░░</font><font color="#5F5FFF"> ░ ░ </font><font color="#5F87FF">░ ░ </font><font color="#0087FF">░ ▒ </font><font color="#00AFFF"> </font><font color="#00AFD7">░ ░ </font><font color="#00D7D7"> ░ ░</font><font color="#00D7AF"> ░ ░ </font><font color="#00FFAF">▒ ░</font><font color="#00FF87"> </font><font color="#5FFF87"> ░</font><font color="#5FFF5F"> ░░ </font><font color="#87FF5F">░ </font><font color="#87FF00"> ░ </font><font color="#AFFF00"> ░░</font><font color="#AFD700"> ░</font><font color="#D7D700"> </font> |
<font color="#00AFD7"> ░ ░</font><font color="#00D7D7"> ░ </font><font color="#00D7AF"> </font><font color="#00FFAF"> ░ ░</font><font color="#00FF87"> ░</font><font color="#5FFF87"> </font><font color="#5FFF5F"> ░</font><font color="#87FF5F"> </font><font color="#87FF00"> </font><font color="#AFFF00"> ░ ░ </font><font color="#AFD700"> </font><font color="#D7D700"> ░ </font><font color="#D7AF00"> </font><font color="#FFAF00"> ░</font><font color="#FF8700"> ░ ░</font><font color="#FF875F"> ░ </font><font color="#FF5F5F"> </font><font color="#FF5F87">░ ░ </font><font color="#FF0087"> </font><font color="#FF00AF"> ░ </font><font color="#D700AF">░ ░</font><font color="#D700D7"> </font><font color="#AF00D7"> </font> | <font color="#FF00AF"> ░ ░</font><font color="#D700AF"> ░ </font><font color="#D700D7"> </font><font color="#AF00D7"> ░ ░</font><font color="#AF00FF"> ░</font><font color="#8700FF"> </font><font color="#875FFF"> ░</font><font color="#5F5FFF"> </font><font color="#5F87FF"> </font><font color="#0087FF"> ░ ░ </font><font color="#00AFFF"> </font><font color="#00AFD7"> ░ </font><font color="#00D7D7"> </font><font color="#00D7AF"> ░</font><font color="#00FFAF"> ░ ░</font><font color="#00FF87"> ░ </font><font color="#5FFF87"> </font><font color="#5FFF5F">░ ░ </font><font color="#87FF5F"> </font><font color="#87FF00"> ░ </font><font color="#AFFF00">░ ░</font><font color="#AFD700"> </font><font color="#D7D700"> </font> |
<font color="#00AFD7"> </font><font color="#00D7D7"> </font><font color="#00D7AF"> </font><font color="#00FFAF"> </font><font color="#00FF87"> </font><font color="#5FFF87"> </font><font color="#5FFF5F"> </font><font color="#87FF5F"> </font><font color="#87FF00"> </font><font color="#AFFF00"> </font><font color="#AFD700"> </font><font color="#D7D700"> ░ </font><font color="#D7AF00"> </font><font color="#FFAF00"> </font><font color="#FF8700"> </font><font color="#FF875F">░ </font><font color="#FF5F5F"> </font><font color="#FF5F87"> </font><font color="#FF0087"> </font><font color="#FF00AF"> </font><font color="#D700AF"> </font><font color="#D700D7"> </font><font color="#AF00D7"> </font></div> | <font color="#FF00AF"> </font><font color="#D700AF"> </font><font color="#D700D7"> </font><font color="#AF00D7"> </font><font color="#AF00FF"> </font><font color="#8700FF"> </font><font color="#875FFF"> </font><font color="#5F5FFF"> </font><font color="#5F87FF"> </font><font color="#0087FF"> </font><font color="#00AFFF"> </font><font color="#00AFD7"> ░ </font><font color="#00D7D7"> </font><font color="#00D7AF"> </font><font color="#00FFAF"> </font><font color="#00FF87">░ </font><font color="#5FFF87"> </font><font color="#5FFF5F"> </font><font color="#87FF5F"> </font><font color="#87FF00"> </font><font color="#AFFF00"> </font><font color="#AFD700"> </font><font color="#D7D700"> </font> |
</pre></html></WRAP> | <font color="#FF0087"><b> </b></font><font color="#FF00AF"><b> </b></font><font color="#D700AF"><b> </b></font><font color="#D700D7"><b>.',;</b></font><font color="#AF00D7"><b>::::</b></font><font color="#AF00FF"><b>;,'.</b></font> <font color="#D700AF"><b>root</b></font><font color="#D700D7">@</font><font color="#D700D7"><b>6a63</b></font><font color="#AF00D7"><b>f819</b></font><font color="#AF00FF"><b>a589</b></font><font color="#8700FF"> </font> |
| <font color="#FF0087"><b> </b></font><font color="#FF00AF"><b> </b></font><font color="#D700AF"><b> .';</b></font><font color="#D700D7"><b>:ccc</b></font><font color="#AF00D7"><b>ccccc</b></font><font color="#AF00FF"><b>cccc</b></font><font color="#8700FF"><b>:;,.</b></font> <font color="#D700AF">----</font><font color="#D700D7">----</font><font color="#AF00D7">-----</font><font color="#AF00FF">----</font><font color="#8700FF"> </font> |
| <font color="#FF0087"><b> </b></font><font color="#FF00AF"><b> .</b></font><font color="#D700AF"><b>;cccc</b></font><font color="#D700D7"><b>cccc</b></font><font color="#AF00D7"><b>cccc</b></font><font color="#AF00FF"><b>ccccc</b></font><font color="#8700FF"><b>cccc</b></font><font color="#875FFF"><b>c;.</b></font> <font color="#D700AF"><b>OS</b></font><font color="#D700AF">:</font><font color="#D700D7"> Fedo</font><font color="#AF00D7">ra L</font><font color="#AF00FF">inux</font><font color="#8700FF"> 39 (</font><font color="#875FFF">Cont</font><font color="#5F5FFF">aine</font><font color="#5F87FF">r Ima</font><font color="#0087FF">ge) </font><font color="#00AFFF">x86_6</font><font color="#00AFD7">4 </font> |
| <font color="#FF0087"><b> </b></font><font color="#FF00AF"><b> .:c</b></font><font color="#D700AF"><b>cccc</b></font><font color="#D700D7"><b>ccccc</b></font><font color="#AF00D7"><b>cccc</b></font><font color="#AF00FF"><b>cccc</b></font><font color="#8700FF"><b>ccccc</b></font><font color="#875FFF"><b>ccc:</b></font><font color="#5F5FFF"><b>.</b></font> <font color="#D700AF"><b>Hos</b></font><font color="#D700D7"><b>t</b></font><font color="#D700D7">: W</font><font color="#AF00D7">25AEZ</font><font color="#AF00FF"> </font> |
| <font color="#FF0087"><b> </b></font><font color="#FF00AF"><b>.;cc</b></font><font color="#D700AF"><b>ccccc</b></font><font color="#D700D7"><b>cccc</b></font><font color="#AF00D7"><b>cc;.</b></font><font color="#AF00FF"><b>:dddl</b></font><font color="#8700FF"><b>:.;c</b></font><font color="#875FFF"><b>ccccc</b></font><font color="#5F5FFF"><b>c;.</b></font> <font color="#D700AF"><b>Ker</b></font><font color="#D700D7"><b>nel</b></font><font color="#D700D7">:</font><font color="#AF00D7"> 6.7</font><font color="#AF00FF">.4-20</font><font color="#8700FF">0.fc</font><font color="#875FFF">39.x</font><font color="#5F5FFF">86_64</font><font color="#5F87FF"> </font> |
| <font color="#FF0087"><b> .</b></font><font color="#FF00AF"><b>:ccc</b></font><font color="#D700AF"><b>cccc</b></font><font color="#D700D7"><b>ccccc</b></font><font color="#AF00D7"><b>c;OW</b></font><font color="#AF00FF"><b>MKOO</b></font><font color="#8700FF"><b>XMWd;</b></font><font color="#875FFF"><b>cccc</b></font><font color="#5F5FFF"><b>ccc:</b></font><font color="#5F87FF"><b>.</b></font> <font color="#D700AF"><b>Up</b></font><font color="#D700D7"><b>time</b></font><font color="#AF00D7">: 5 d</font><font color="#AF00FF">ays,</font><font color="#8700FF"> 8 h</font><font color="#875FFF">ours,</font><font color="#5F5FFF"> 58 </font><font color="#5F87FF">mins </font> |
| <font color="#FF0087"><b>.</b></font><font color="#FF00AF"><b>:cccc</b></font><font color="#D700AF"><b>cccc</b></font><font color="#D700D7"><b>cccc</b></font><font color="#AF00D7"><b>c;KMM</b></font><font color="#AF00FF"><b>c;cc</b></font><font color="#8700FF"><b>;xMM</b></font><font color="#875FFF"><b>c:ccc</b></font><font color="#5F5FFF"><b>cccc</b></font><font color="#5F87FF"><b>:.</b></font> <font color="#D700AF"><b>Pa</b></font><font color="#D700D7"><b>ckag</b></font><font color="#AF00D7"><b>es</b></font><font color="#AF00D7">: </font><font color="#AF00FF">388 (</font><font color="#8700FF">rpm)</font><font color="#875FFF"> </font> |
| <font color="#FF0087"><b>,</b></font><font color="#FF00AF"><b>cccc</b></font><font color="#D700AF"><b>cccc</b></font><font color="#D700D7"><b>ccccc</b></font><font color="#AF00D7"><b>c;MM</b></font><font color="#AF00FF"><b>M.;cc</b></font><font color="#8700FF"><b>;;WW</b></font><font color="#875FFF"><b>::cc</b></font><font color="#5F5FFF"><b>ccccc</b></font><font color="#5F87FF"><b>c,</b></font> <font color="#D700AF"><b>S</b></font><font color="#D700D7"><b>hell</b></font><font color="#D700D7">:</font><font color="#AF00D7"> bas</font><font color="#AF00FF">h 5.</font><font color="#8700FF">2.26 </font> |
| <font color="#FF00AF"><b>:cccc</b></font><font color="#D700AF"><b>cccc</b></font><font color="#D700D7"><b>cccc</b></font><font color="#AF00D7"><b>cc;MM</b></font><font color="#AF00FF"><b>M.;c</b></font><font color="#8700FF"><b>cccc</b></font><font color="#875FFF"><b>ccccc</b></font><font color="#5F5FFF"><b>cccc</b></font><font color="#5F87FF"><b>cc:</b></font> <font color="#D700AF"><b>R</b></font><font color="#D700D7"><b>esol</b></font><font color="#AF00D7"><b>utio</b></font><font color="#AF00FF"><b>n</b></font><font color="#AF00FF">: 13</font><font color="#8700FF">66x7</font><font color="#875FFF">68 </font> |
| <font color="#FF00AF"><b>:ccc</b></font><font color="#D700AF"><b>cccc;</b></font><font color="#D700D7"><b>oxOO</b></font><font color="#AF00D7"><b>Oo;M</b></font><font color="#AF00FF"><b>MM0OO</b></font><font color="#8700FF"><b>k.;c</b></font><font color="#875FFF"><b>cccc</b></font><font color="#5F5FFF"><b>ccccc</b></font><font color="#5F87FF"><b>cc:</b></font> <font color="#D700D7"><b>CPU</b></font><font color="#D700D7">: </font><font color="#AF00D7">Inte</font><font color="#AF00FF">l i3</font><font color="#8700FF">-3120</font><font color="#875FFF">M (4</font><font color="#5F5FFF">) @ </font><font color="#5F87FF">2.500</font><font color="#0087FF">GHz </font> |
| <font color="#FF00AF"><b>cccc</b></font><font color="#D700AF"><b>cc:0</b></font><font color="#D700D7"><b>MMKxd</b></font><font color="#AF00D7"><b>d:;M</b></font><font color="#AF00FF"><b>MMkd</b></font><font color="#8700FF"><b>dc.;c</b></font><font color="#875FFF"><b>cccc</b></font><font color="#5F5FFF"><b>cccc</b></font><font color="#5F87FF"><b>ccc;</b></font> <font color="#D700D7"><b>GPU</b></font><font color="#D700D7">:</font><font color="#AF00D7"> Inte</font><font color="#AF00FF">l 3r</font><font color="#8700FF">d Ge</font><font color="#875FFF">n Cor</font><font color="#5F5FFF">e pr</font><font color="#5F87FF">oces</font><font color="#0087FF">sor G</font><font color="#00AFFF">raph</font><font color="#00AFD7">ics </font><font color="#00D7D7">Contr</font><font color="#00D7AF">olle</font><font color="#00FFAF">r </font> |
| <font color="#FF00AF"><b>ccc</b></font><font color="#D700AF"><b>cc:XM</b></font><font color="#D700D7"><b>0';c</b></font><font color="#AF00D7"><b>ccc;</b></font><font color="#AF00FF"><b>MMM.;</b></font><font color="#8700FF"><b>cccc</b></font><font color="#875FFF"><b>cccc</b></font><font color="#5F5FFF"><b>ccccc</b></font><font color="#5F87FF"><b>ccc'</b></font> <font color="#D700D7"><b>Memo</b></font><font color="#AF00D7"><b>ry</b></font><font color="#AF00D7">: </font><font color="#AF00FF">6659M</font><font color="#8700FF">iB /</font><font color="#875FFF"> 158</font><font color="#5F5FFF">81MiB</font><font color="#5F87FF"> </font> |
| <font color="#FF00AF"><b>ccc</b></font><font color="#D700AF"><b>cc;M</b></font><font color="#D700D7"><b>Mo;cc</b></font><font color="#AF00D7"><b>ccc;</b></font><font color="#AF00FF"><b>MMW.</b></font><font color="#8700FF"><b>;cccc</b></font><font color="#875FFF"><b>cccc</b></font><font color="#5F5FFF"><b>cccc</b></font><font color="#5F87FF"><b>ccc;</b></font> |
| <font color="#FF00AF"><b>ccc</b></font><font color="#D700AF"><b>cc;0</b></font><font color="#D700D7"><b>MNc.</b></font><font color="#AF00D7"><b>ccc.x</b></font><font color="#AF00FF"><b>MMd:</b></font><font color="#8700FF"><b>cccc</b></font><font color="#875FFF"><b>ccccc</b></font><font color="#5F5FFF"><b>cccc</b></font><font color="#5F87FF"><b>cc;</b></font> <span style="background-color:#171421"><font color="#D700D7"> </font></span><span style="background-color:#C01C28"><font color="#AF00D7"> </font></span><span style="background-color:#26A269"><font color="#AF00D7"> </font></span><span style="background-color:#26A269"><font color="#AF00FF"> </font></span><span style="background-color:#A2734C"><font color="#AF00FF"> </font></span><span style="background-color:#13496F"><font color="#8700FF"> </font></span><span style="background-color:#A347BA"><font color="#8700FF"> </font></span><span style="background-color:#A347BA"><font color="#875FFF"> </font></span><span style="background-color:#2AA1B3"><font color="#875FFF"> </font></span><span style="background-color:#2AA1B3"><font color="#5F5FFF"> </font></span><span style="background-color:#D0CFCC"><font color="#5F5FFF"> </font></span> |
| <font color="#FF00AF"><b>cc</b></font><font color="#D700AF"><b>cccc</b></font><font color="#D700D7"><b>;dNMW</b></font><font color="#AF00D7"><b>XXXW</b></font><font color="#AF00FF"><b>M0::</b></font><font color="#8700FF"><b>ccccc</b></font><font color="#875FFF"><b>cccc</b></font><font color="#5F5FFF"><b>ccccc</b></font><font color="#5F87FF"><b>:,</b></font> <span style="background-color:#5E5C64"><font color="#D700D7"> </font></span><span style="background-color:#F66151"><font color="#AF00D7"> </font></span><span style="background-color:#33D17A"><font color="#AF00D7"> </font></span><span style="background-color:#33D17A"><font color="#AF00FF"> </font></span><span style="background-color:#E9AD0C"><font color="#AF00FF"> </font></span><span style="background-color:#E9AD0C"><font color="#8700FF"> </font></span><span style="background-color:#2A7BDE"><font color="#8700FF"> </font></span><span style="background-color:#C061CB"><font color="#8700FF"> </font></span><span style="background-color:#C061CB"><font color="#875FFF"> </font></span><span style="background-color:#33C7DE"><font color="#875FFF"> </font></span><span style="background-color:#33C7DE"><font color="#5F5FFF"> </font></span><span style="background-color:#FFFFFF"><font color="#5F5FFF"> </font></span> |
| <font color="#FF00AF"><b>cc</b></font><font color="#D700AF"><b>cccc</b></font><font color="#D700D7"><b>cc;.</b></font><font color="#AF00D7"><b>:odl:</b></font><font color="#AF00FF"><b>.;cc</b></font><font color="#8700FF"><b>cccc</b></font><font color="#875FFF"><b>ccccc</b></font><font color="#5F5FFF"><b>ccc:</b></font><font color="#5F87FF"><b>,.</b></font> |
| <font color="#FF00AF"><b>:</b></font><font color="#D700AF"><b>ccccc</b></font><font color="#D700D7"><b>cccc</b></font><font color="#AF00D7"><b>cccc</b></font><font color="#AF00FF"><b>ccccc</b></font><font color="#8700FF"><b>cccc</b></font><font color="#875FFF"><b>cccc</b></font><font color="#5F5FFF"><b>cc:'.</b></font> |
| <font color="#FF00AF"><b>.</b></font><font color="#D700AF"><b>:ccc</b></font><font color="#D700D7"><b>cccc</b></font><font color="#AF00D7"><b>ccccc</b></font><font color="#AF00FF"><b>cccc</b></font><font color="#8700FF"><b>ccccc</b></font><font color="#875FFF"><b>c:;,</b></font><font color="#5F5FFF"><b>..</b></font> |
| <font color="#D700AF"><b> '::</b></font><font color="#D700D7"><b>cccc</b></font><font color="#AF00D7"><b>cccc</b></font><font color="#AF00FF"><b>ccccc</b></font><font color="#8700FF"><b>c::;</b></font><font color="#875FFF"><b>,.</b></font> |
| |
| <font color="#FF00AF">2024</font><font color="#D700AF">年 </font><font color="#D700D7">2月 2</font><font color="#AF00D7">0日 </font><font color="#AF00FF">火曜</font><font color="#8700FF">日 22</font><font color="#875FFF">:58:</font><font color="#5F5FFF">20 J</font><font color="#5F87FF">ST</font> |
| </div></pre></html></WRAP> |
| </WRAP> |
| <WRAP zoomimg w600 x1_3> |
| {{:linux:haruo_docker_001.png|haruo docker 001}} |
</WRAP> | </WRAP> |
| |