-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.log
More file actions
1578 lines (1556 loc) · 135 KB
/
build.log
File metadata and controls
1578 lines (1556 loc) · 135 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
docker : #0 building with "desktop-linux" instance using docker driver
At line:1 char:1
+ docker build --build-arg USER=hans -D --progress=plain -t "archlinux/ ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (#0 building wit...g docker driver:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
#1 [internal] load build definition from Dockerfile
#1 transferring dockerfile: 5.33kB 0.0s done
#1 DONE 0.1s
#2 [internal] load metadata for docker.io/library/archlinux:latest
#2 ...
#3 [auth] library/archlinux:pull token for registry-1.docker.io
#3 DONE 0.0s
#2 [internal] load metadata for docker.io/library/archlinux:latest
#2 DONE 2.1s
#4 [internal] load .dockerignore
#4 transferring context: 355B done
#4 DONE 0.0s
#5 [internal] load build context
#5 DONE 0.0s
#6 [ 1/12] FROM docker.io/library/archlinux:latest@sha256:c136b06a4f786b84c1cc0d2494fabdf9be8811d15051cd4404deb5c3dc0b2e57
#6 resolve docker.io/library/archlinux:latest@sha256:c136b06a4f786b84c1cc0d2494fabdf9be8811d15051cd4404deb5c3dc0b2e57 0.0s done
#6 CACHED
#5 [internal] load build context
#5 transferring context: 31.52MB 1.4s done
#5 DONE 1.4s
#7 [ 2/12] RUN pacman-key --init && pacman -Sy --noconfirm sudo && pacman-key --populate archlinux && pacman --needed --noconfirm -Syu && sed -i 's/#en_US.UTF-8/en_US.UTF-8/' /etc/locale.gen && locale-gen
&& pacman -Scc --noconfirm && useradd --create-home --shell /bin/bash hans && usermod -aG wheel hans && sed -i 's/^# %wheel/%wheel/' /etc/sudoers && mkdir -p /home/hans/.local && mkdir -p
/home/hans/.cache && chown -R hans:hans /home/hans && pacman -Sy --needed --noconfirm cmake gcc make fastfetch openssh unzip curl git vi nvim jq && pacman -Sy --noconfirm nvidia cuda cudnn nccl && pacman -S
--noconfirm nvidia-container-toolkit opencl-nvidia && pacman -Scc --noconfirm
#7 0.726 ==> Generating pacman master key. This may take some time.
#7 0.729 gpg: Generating pacman keyring master key...
#7 2.983 gpg: revocation certificate stored as '/etc/pacman.d/gnupg/openpgp-revocs.d/258AA284596BCBD71E9A1229BD417F313285C64C.rev'
#7 2.983 gpg: Done
#7 2.986 ==> Updating trust database...
#7 2.991 gpg: Note: third-party key signatures using the SHA1 algorithm are rejected
#7 2.991 gpg: (use option "--allow-weak-key-signatures" to override)
#7 3.018 gpg: marginals needed: 3 completes needed: 1 trust model: pgp
#7 3.070 gpg: depth: 0 valid: 2 signed: 5 trust: 0-, 0q, 0n, 0m, 0f, 2u
#7 3.116 gpg: depth: 1 valid: 5 signed: 102 trust: 0-, 0q, 0n, 5m, 0f, 0u
#7 3.137 gpg: depth: 2 valid: 75 signed: 19 trust: 75-, 0q, 0n, 0m, 0f, 0u
#7 3.137 gpg: next trustdb check due at 2025-12-31
#7 3.174 :: Synchronizing package databases...
#7 8.697 core downloading...
#7 8.697 extra downloading...
#7 8.722 resolving dependencies...
#7 8.764 looking for conflicting packages...
#7 8.766
#7 8.766 Package (1) New Version Net Change Download Size
#7 8.766
#7 8.766 core/sudo 1.9.17.p2-1 7.83 MiB 1.84 MiB
#7 8.766
#7 8.766 Total Download Size: 1.84 MiB
#7 8.766 Total Installed Size: 7.83 MiB
#7 8.766
#7 8.766 :: Proceed with installation? [Y/n]
#7 8.769 :: Retrieving packages...
#7 10.02 sudo-1.9.17.p2-1-x86_64 downloading...
#7 10.02 checking keyring...
#7 10.10 checking package integrity...
#7 10.12 loading package files...
#7 10.12 checking for file conflicts...
#7 10.13 :: Processing package changes...
#7 10.13 installing sudo...
#7 10.31 :: Running post-transaction hooks...
#7 10.31 (1/3) Reloading system manager configuration...
#7 10.34 Skipped: Current root is not booted.
#7 10.34 (2/3) Creating temporary files...
#7 10.36 /usr/lib/tmpfiles.d/journal-nocow.conf:26: Failed to resolve specifier: uninitialized /etc/ detected, skipping.
#7 10.36 All rules containing unresolvable specifiers will be skipped.
#7 10.39 (3/3) Arming ConditionNeedsUpdate...
#7 10.43 ==> Appending keys from archlinux.gpg...
#7 13.05 ==> Locally signing trusted keys in keyring...
#7 14.75 -> Locally signed 5 keys.
#7 14.76 ==> Importing owner trust values...
#7 14.76 ==> Updating trust database...
#7 14.77 gpg: Note: third-party key signatures using the SHA1 algorithm are rejected
#7 14.77 gpg: (use option "--allow-weak-key-signatures" to override)
#7 14.79 gpg: marginals needed: 3 completes needed: 1 trust model: pgp
#7 14.82 gpg: depth: 0 valid: 2 signed: 5 trust: 0-, 0q, 0n, 0m, 0f, 2u
#7 14.85 gpg: depth: 1 valid: 5 signed: 102 trust: 0-, 0q, 0n, 5m, 0f, 0u
#7 14.87 gpg: depth: 2 valid: 75 signed: 19 trust: 75-, 0q, 0n, 0m, 0f, 0u
#7 14.87 gpg: next trustdb check due at 2025-12-31
#7 14.88 :: Synchronizing package databases...
#7 15.39 core downloading...
#7 15.39 extra downloading...
#7 15.39 :: Starting full system upgrade...
#7 15.64 resolving dependencies...
#7 15.64 looking for conflicting packages...
#7 15.65
#7 15.65 Package (17) Old Version New Version Net Change Download Size
#7 15.65
#7 15.65 core/archlinux-keyring 20251012-1 20251027-3 0.00 MiB 1.19 MiB
#7 15.65 core/audit 4.0.5-1 4.1.2-1 -0.06 MiB 0.38 MiB
#7 15.65 core/curl 8.16.0-1 8.17.0-1 0.01 MiB 1.21 MiB
#7 15.65 core/device-mapper 2.03.35-1 2.03.36-2 0.00 MiB 0.28 MiB
#7 15.65 core/filesystem 2025.05.03-1 2025.10.12-1 0.00 MiB 0.01 MiB
#7 15.65 core/glib2 2.86.0-2 2.86.1-1 0.12 MiB 4.93 MiB
#7 15.65 core/gnupg 2.4.8-1 2.4.8-3 0.20 MiB 2.82 MiB
#7 15.65 core/hwdata 0.400-1 0.401-1 0.02 MiB 1.65 MiB
#7 15.65 core/iana-etc 20250612-1 20251030-1 0.01 MiB 0.39 MiB
#7 15.65 core/leancrypto 1.5.1-1 1.6.0-1 1.04 MiB 1.36 MiB
#7 15.65 core/libcap 2.76-1 2.77-1 0.07 MiB 0.78 MiB
#7 15.65 core/libelf 0.193-5 0.194-1 0.03 MiB 0.62 MiB
#7 15.65 core/libnghttp2 1.67.1-1 1.68.0-1 0.00 MiB 0.09 MiB
#7 15.65 core/libxcrypt 4.4.38-1 4.5.0-1 0.01 MiB 0.09 MiB
#7 15.65 core/pacman-mirrorlist 20251003-1 20251021-1 0.00 MiB 0.01 MiB
#7 15.65 core/pcre2 10.46-1 10.47-1 0.19 MiB 1.62 MiB
#7 15.65 core/sqlite 3.50.4-2 3.51.0-1 0.12 MiB 2.23 MiB
#7 15.65
#7 15.65 Total Download Size: 19.67 MiB
#7 15.65 Total Installed Size: 102.91 MiB
#7 15.65 Net Upgrade Size: 1.76 MiB
#7 15.65
#7 15.65 :: Proceed with installation? [Y/n]
#7 15.65 :: Retrieving packages...
#7 18.87 glib2-2.86.1-1-x86_64 downloading...
#7 18.87 gnupg-2.4.8-3-x86_64 downloading...
#7 18.87 sqlite-3.51.0-1-x86_64 downloading...
#7 18.87 hwdata-0.401-1-any downloading...
#7 18.87 pcre2-10.47-1-x86_64 downloading...
#7 18.87 leancrypto-1.6.0-1-x86_64 downloading...
#7 18.87 curl-8.17.0-1-x86_64 downloading...
#7 18.87 archlinux-keyring-20251027-3-any downloading...
#7 18.87 libcap-2.77-1-x86_64 downloading...
#7 18.87 libelf-0.194-1-x86_64 downloading...
#7 18.87 iana-etc-20251030-1-any downloading...
#7 18.87 audit-4.1.2-1-x86_64 downloading...
#7 18.87 device-mapper-2.03.36-2-x86_64 downloading...
#7 18.87 libnghttp2-1.68.0-1-x86_64 downloading...
#7 18.87 libxcrypt-4.5.0-1-x86_64 downloading...
#7 18.87 filesystem-2025.10.12-1-any downloading...
#7 18.87 pacman-mirrorlist-20251021-1-any downloading...
#7 18.87 checking keyring...
#7 18.98 checking package integrity...
#7 19.55 loading package files...
#7 19.57 checking for file conflicts...
#7 19.57 :: Processing package changes...
#7 19.57 upgrading iana-etc...
#7 19.61 upgrading filesystem...
#7 19.68 warning: directory permissions differ on /srv/ftp/
#7 19.68 filesystem: 755 package: 555
#7 19.69 upgrading libnghttp2...
#7 19.70 upgrading sqlite...
#7 19.76 upgrading audit...
#7 19.80 New optional dependencies for audit
#7 19.80 audispd-plugins: for audit event dispatcher plugins
#7 19.80 audispd-plugins-zos: for z/OS audit event dispatcher plugin
#7 19.80 upgrading libxcrypt...
#7 19.95 upgrading libcap...
#7 19.97 upgrading curl...
#7 19.99 upgrading leancrypto...
#7 20.01 upgrading pcre2...
#7 20.04 upgrading glib2...
#7 20.18 upgrading gnupg...
#7 20.32 upgrading pacman-mirrorlist...
#7 20.33 upgrading hwdata...
#7 20.37 upgrading libelf...
#7 20.40 upgrading device-mapper...
#7 20.42 upgrading archlinux-keyring...
#7 20.63 ==> Appending keys from archlinux.gpg...
#7 23.37 ==> Disabling revoked keys in keyring...
#7 23.38 -> Disabled 1 key.
#7 23.38 ==> Updating trust database...
#7 23.39 gpg: Note: third-party key signatures using the SHA1 algorithm are rejected
#7 23.39 gpg: (use option "--allow-weak-key-signatures" to override)
#7 23.42 gpg: marginals needed: 3 completes needed: 1 trust model: pgp
#7 23.46 gpg: depth: 0 valid: 2 signed: 5 trust: 0-, 0q, 0n, 0m, 0f, 2u
#7 23.49 gpg: depth: 1 valid: 5 signed: 102 trust: 0-, 0q, 0n, 5m, 0f, 0u
#7 23.51 gpg: depth: 2 valid: 75 signed: 19 trust: 75-, 0q, 0n, 0m, 0f, 0u
#7 23.51 gpg: next trustdb check due at 2025-12-31
#7 23.75 :: Running post-transaction hooks...
#7 23.75 (1/8) Creating system user accounts...
#7 23.86 (2/8) Reloading system manager configuration...
#7 23.97 Skipped: Current root is not booted.
#7 23.97 (3/8) Reloading user manager configuration...
#7 24.10 Skipped: Current root is not booted.
#7 24.10 (4/8) Restarting marked services...
#7 24.22 Skipped: Current root is not booted.
#7 24.22 (5/8) Applying kernel sysctl settings...
#7 24.30 Skipped: Current root is not booted.
#7 24.30 (6/8) Creating temporary files...
#7 24.40 /usr/lib/tmpfiles.d/journal-nocow.conf:26: Failed to resolve specifier: uninitialized /etc/ detected, skipping.
#7 24.40 All rules containing unresolvable specifiers will be skipped.
#7 24.42 (7/8) Reloading device manager configuration...
#7 24.54 Skipped: Current root is not booted.
#7 24.54 (8/8) Arming ConditionNeedsUpdate...
#7 24.71 Generating locales...
#7 24.72 en_US.UTF-8... done
#7 26.23 Generation complete.
#7 26.25
#7 26.25 Cache directory: /var/cache/pacman/pkg/
#7 26.25 :: Do you want to remove ALL files from cache? [y/N]
#7 26.25
#7 26.25 Database directory: /var/lib/pacman/
#7 26.25 :: Do you want to remove unused repositories? [Y/n]
#7 26.25 removing unused sync repositories...
#7 26.51 :: Synchronizing package databases...
#7 27.01 core downloading...
#7 27.01 extra downloading...
#7 27.23 warning: curl-8.17.0-1 is up to date -- skipping
#7 27.23 resolving dependencies...
#7 27.25 looking for conflicting packages...
#7 27.25
#7 27.25 Package (44) New Version Net Change Download Size
#7 27.25
#7 27.25 core/binutils 2.45+r29+g2b2e51a31ec7-1 42.74 MiB 7.79 MiB
#7 27.25 extra/cppdap 1.58.0-2 1.55 MiB 0.32 MiB
#7 27.25 core/db5.3 5.3.28-5 6.45 MiB 1.18 MiB
#7 27.25 core/gc 8.2.10-2 0.76 MiB 0.23 MiB
#7 27.25 core/guile 3.0.10-1 54.73 MiB 8.31 MiB
#7 27.25 extra/hicolor-icon-theme 0.18-1 0.05 MiB 0.01 MiB
#7 27.25 core/jansson 2.14.1-1 0.27 MiB 0.09 MiB
#7 27.25 extra/jsoncpp 1.9.6-3 0.77 MiB 0.16 MiB
#7 27.25 core/libedit 20250104_3.1-1 0.26 MiB 0.11 MiB
#7 27.25 core/libisl 0.27-1 5.75 MiB 0.87 MiB
#7 27.25 extra/libluv 1.51.0-1 0.19 MiB 0.06 MiB
#7 27.25 core/libmpc 1.3.1-2 0.18 MiB 0.08 MiB
#7 27.25 extra/libutf8proc 2.10.0-2 0.37 MiB 0.07 MiB
#7 27.25 extra/libuv 1.51.0-1 0.62 MiB 0.25 MiB
#7 27.25 extra/libvterm 0.3.3-2 0.14 MiB 0.05 MiB
#7 27.25 extra/lua51-lpeg 1.1.0-4 0.06 MiB 0.03 MiB
#7 27.25 extra/luajit 2.1.1762386122-1 0.81 MiB 0.32 MiB
#7 27.25 extra/msgpack-c 6.1.0-2 0.13 MiB 0.03 MiB
#7 27.25 extra/oniguruma 6.9.10-1 0.88 MiB 0.22 MiB
#7 27.25 core/perl 5.42.0-1 69.88 MiB 20.40 MiB
#7 27.25 extra/perl-error 0.17030-2 0.04 MiB 0.02 MiB
#7 27.25 extra/perl-mailtools 2.22-2 0.10 MiB 0.06 MiB
#7 27.25 extra/perl-timedate 2.33-8 0.08 MiB 0.03 MiB
#7 27.25 extra/rhash 1.4.6-1 0.34 MiB 0.18 MiB
#7 27.25 extra/tree-sitter 0.25.10-1 0.24 MiB 0.11 MiB
#7 27.25 extra/tree-sitter-c 0.24.1-1 0.60 MiB 0.06 MiB
#7 27.25 extra/tree-sitter-lua 0.4.0-1 0.07 MiB 0.02 MiB
#7 27.25 extra/tree-sitter-markdown 0.5.1-1 0.76 MiB 0.12 MiB
#7 27.25 extra/tree-sitter-query 0.7.0-1 0.05 MiB 0.01 MiB
#7 27.25 extra/tree-sitter-vim 0.7.0-1 1.06 MiB 0.14 MiB
#7 27.25 extra/tree-sitter-vimdoc 4.0.0-1 0.18 MiB 0.03 MiB
#7 27.25 extra/unibilium 2.1.2-1 0.14 MiB 0.08 MiB
#7 27.25 extra/yyjson 0.12.0-1 0.65 MiB 0.15 MiB
#7 27.25 extra/zlib-ng 2.2.5-1 0.26 MiB 0.10 MiB
#7 27.25 extra/cmake 4.1.2-1 87.64 MiB 13.04 MiB
#7 27.25 extra/fastfetch 2.54.0-1 1.56 MiB 0.49 MiB
#7 27.25 core/gcc 15.2.1+r22+gc4e96a094636-1 208.47 MiB 54.05 MiB
#7 27.25 extra/git 2.51.2-2 29.25 MiB 6.66 MiB
#7 27.25 extra/jq 1.8.1-1 0.45 MiB 0.19 MiB
#7 27.25 core/make 4.4.1-2 1.67 MiB 0.51 MiB
#7 27.25 extra/neovim 0.11.5-1 28.85 MiB 6.84 MiB
#7 27.25 core/openssh 10.2p1-2 6.37 MiB 1.25 MiB
#7 27.25 extra/unzip 6.0-23 0.30 MiB 0.14 MiB
#7 27.25 core/vi 1:070224-6 0.31 MiB 0.16 MiB
#7 27.25
#7 27.25 Total Download Size: 125.03 MiB
#7 27.25 Total Installed Size: 556.02 MiB
#7 27.25
#7 27.25 :: Proceed with installation? [Y/n]
#7 27.25 :: Retrieving packages...
#7 39.36 gcc-15.2.1+r22+gc4e96a094636-1-x86_64 downloading...
#7 39.36 perl-5.42.0-1-x86_64 downloading...
#7 39.36 cmake-4.1.2-1-x86_64 downloading...
#7 39.36 guile-3.0.10-1-x86_64 downloading...
#7 39.36 binutils-2.45+r29+g2b2e51a31ec7-1-x86_64 downloading...
#7 39.36 neovim-0.11.5-1-x86_64 downloading...
#7 39.36 git-2.51.2-2-x86_64 downloading...
#7 39.36 openssh-10.2p1-2-x86_64 downloading...
#7 39.36 db5.3-5.3.28-5-x86_64 downloading...
#7 39.36 libisl-0.27-1-x86_64 downloading...
#7 39.36 make-4.4.1-2-x86_64 downloading...
#7 39.36 fastfetch-2.54.0-1-x86_64 downloading...
#7 39.36 luajit-2.1.1762386122-1-x86_64 downloading...
#7 39.36 cppdap-1.58.0-2-x86_64 downloading...
#7 39.36 libuv-1.51.0-1-x86_64 downloading...
#7 39.36 gc-8.2.10-2-x86_64 downloading...
#7 39.36 oniguruma-6.9.10-1-x86_64 downloading...
#7 39.36 jq-1.8.1-1-x86_64 downloading...
#7 39.36 rhash-1.4.6-1-x86_64 downloading...
#7 39.36 vi-1:070224-6-x86_64 downloading...
#7 39.36 jsoncpp-1.9.6-3-x86_64 downloading...
#7 39.36 yyjson-0.12.0-1-x86_64 downloading...
#7 39.36 tree-sitter-vim-0.7.0-1-x86_64 downloading...
#7 39.36 unzip-6.0-23-x86_64 downloading...
#7 39.36 tree-sitter-markdown-0.5.1-1-x86_64 downloading...
#7 39.36 libedit-20250104_3.1-1-x86_64 downloading...
#7 39.36 tree-sitter-0.25.10-1-x86_64 downloading...
#7 39.36 zlib-ng-2.2.5-1-x86_64 downloading...
#7 39.36 jansson-2.14.1-1-x86_64 downloading...
#7 39.36 libmpc-1.3.1-2-x86_64 downloading...
#7 39.36 unibilium-2.1.2-1-x86_64 downloading...
#7 39.36 libutf8proc-2.10.0-2-x86_64 downloading...
#7 39.36 tree-sitter-c-0.24.1-1-x86_64 downloading...
#7 39.36 perl-mailtools-2.22-2-any downloading...
#7 39.36 libluv-1.51.0-1-x86_64 downloading...
#7 39.36 libvterm-0.3.3-2-x86_64 downloading...
#7 39.36 perl-timedate-2.33-8-any downloading...
#7 39.36 tree-sitter-vimdoc-4.0.0-1-x86_64 downloading...
#7 39.36 msgpack-c-6.1.0-2-x86_64 downloading...
#7 39.36 lua51-lpeg-1.1.0-4-x86_64 downloading...
#7 39.36 perl-error-0.17030-2-any downloading...
#7 39.36 tree-sitter-lua-0.4.0-1-x86_64 downloading...
#7 39.36 tree-sitter-query-0.7.0-1-x86_64 downloading...
#7 39.36 hicolor-icon-theme-0.18-1-any downloading...
#7 39.36 checking keyring...
#7 39.57 checking package integrity...
#7 40.72 loading package files...
#7 40.81 checking for file conflicts...
#7 40.85 :: Processing package changes...
#7 40.85 installing cppdap...
#7 40.86 installing hicolor-icon-theme...
#7 41.01 installing jsoncpp...
#7 41.04 Optional dependencies for jsoncpp
#7 41.04 jsoncpp-doc: documentation
#7 41.04 installing libuv...
#7 41.05 installing rhash...
#7 41.06 installing cmake...
#7 41.69 Optional dependencies for cmake
#7 41.69 make: for unix Makefile generator [pending]
#7 41.69 ninja: for ninja generator
#7 41.69 qt6-base: cmake-gui
#7 41.69 installing jansson...
#7 41.69 installing binutils...
#7 41.79 Optional dependencies for binutils
#7 41.79 debuginfod: for debuginfod server/client functionality
#7 41.79 installing libmpc...
#7 41.79 installing libisl...
#7 41.81 installing gcc...
#7 42.63 Optional dependencies for gcc
#7 42.63 lib32-gcc-libs: for generating code for 32-bit ABI
#7 42.63 installing gc...
#7 42.64 installing guile...
#7 42.86 installing make...
#7 42.87 installing yyjson...
#7 42.87 installing fastfetch...
#7 42.88 Optional dependencies for fastfetch
#7 42.88 chafa: Image output as ascii art
#7 42.88 dbus: Bluetooth, Player & Media detection [installed]
#7 42.88 dconf: Needed for values that are only stored in DConf + Fallback for GSettings
#7 42.88 ddcutil: Brightness detection of external displays
#7 42.88 directx-headers: GPU detection in WSL
#7 42.88 glib2: Output for values that are only stored in GSettings [installed]
#7 42.88 hwdata: GPU output [installed]
#7 42.88 imagemagick: Image output using sixel or kitty graphics protocol
#7 42.88 libdrm: Displays detection
#7 42.88 libelf: st term font detection and fast path of systemd version detection [installed]
#7 42.88 libpulse: Sound detection
#7 42.88 libxrandr: Multi monitor support
#7 42.88 ocl-icd: OpenCL module
#7 42.88 python: Needed for zsh and fish completions
#7 42.88 sqlite: Needed for Sqlite integration and Soar packages count [installed]
#7 42.88 vulkan-icd-loader: Vulkan module & fallback for GPU output
#7 42.88 zlib: Faster image output when using kitty graphics protocol [installed]
#7 42.88 installing libedit...
#7 42.89 installing openssh...
#7 42.91 Optional dependencies for openssh
#7 42.91 libfido2: FIDO/U2F support
#7 42.91 sh: for ssh-copy-id and findssl.sh [installed]
#7 42.91 x11-ssh-askpass: input passphrase in X
#7 42.91 xorg-xauth: X11 forwarding
#7 42.91 installing unzip...
#7 42.92 installing db5.3...
#7 42.93 installing perl...
#7 43.44 installing perl-error...
#7 43.44 installing perl-timedate...
#7 43.45 installing perl-mailtools...
#7 43.45 installing zlib-ng...
#7 43.45 installing git...
#7 43.66 Optional dependencies for git
#7 43.66 git-zsh-completion: upstream zsh completion
#7 43.66 tk: gitk and git gui
#7 43.66 openssh: ssh transport and crypto [installed]
#7 43.66 man: show help with `git command --help`
#7 43.66 perl-libwww: git svn
#7 43.66 perl-term-readkey: git svn and interactive.singlekey setting
#7 43.66 perl-io-socket-ssl: git send-email TLS support
#7 43.66 perl-authen-sasl: git send-email TLS support
#7 43.66 perl-cgi: gitweb (web interface) support
#7 43.66 python: git svn & git p4
#7 43.66 subversion: git svn
#7 43.66 org.freedesktop.secrets: keyring credential helper
#7 43.66 libsecret: libsecret credential helper [installed]
#7 43.66 less: the default pager for git
#7 43.66 installing vi...
#7 43.67 Optional dependencies for vi
#7 43.67 s-nail: used by the preserve command for notification
#7 43.67 installing luajit...
#7 43.69 installing libluv...
#7 43.70 installing libutf8proc...
#7 43.71 installing libvterm...
#7 43.72 installing lua51-lpeg...
#7 43.74 installing msgpack-c...
#7 43.75 installing tree-sitter...
#7 43.76 installing tree-sitter-c...
#7 43.76 Optional dependencies for tree-sitter-c
#7 43.76 tree-sitter: core library [installed]
#7 43.76 installing tree-sitter-lua...
#7 43.77 Optional dependencies for tree-sitter-lua
#7 43.77 tree-sitter: core library [installed]
#7 43.77 installing tree-sitter-markdown...
#7 43.78 Optional dependencies for tree-sitter-markdown
#7 43.78 tree-sitter: core library [installed]
#7 43.78 installing tree-sitter-query...
#7 43.78 Optional dependencies for tree-sitter-query
#7 43.78 tree-sitter: core library [installed]
#7 43.78 installing tree-sitter-vim...
#7 43.78 Optional dependencies for tree-sitter-vim
#7 43.78 tree-sitter: core library [installed]
#7 43.78 installing tree-sitter-vimdoc...
#7 43.79 Optional dependencies for tree-sitter-vimdoc
#7 43.79 tree-sitter: core library [installed]
#7 43.79 installing unibilium...
#7 43.79 installing neovim...
#7 44.18 Optional dependencies for neovim
#7 44.18 python-pynvim: for Python plugin support (see :help python)
#7 44.18 xclip: for clipboard support on X11 (or xsel) (see :help clipboard)
#7 44.18 xsel: for clipboard support on X11 (or xclip) (see :help clipboard)
#7 44.18 wl-clipboard: for clipboard support on wayland (see :help clipboard)
#7 44.18 installing oniguruma...
#7 44.20 installing jq...
#7 46.17 :: Running post-transaction hooks...
#7 46.17 (1/6) Creating system user accounts...
#7 46.26 Creating group 'git' with GID 970.
#7 46.26 Creating user 'git' (git daemon user) with UID 970 and GID 970.
#7 46.33 (2/6) Reloading system manager configuration...
#7 46.46 Skipped: Current root is not booted.
#7 46.46 (3/6) Reloading user manager configuration...
#7 46.56 Skipped: Current root is not booted.
#7 46.56 (4/6) Creating temporary files...
#7 46.65 /usr/lib/tmpfiles.d/journal-nocow.conf:26: Failed to resolve specifier: uninitialized /etc/ detected, skipping.
#7 46.65 All rules containing unresolvable specifiers will be skipped.
#7 46.67 (5/6) Arming ConditionNeedsUpdate...
#7 46.83 (6/6) Checking for old perl modules...
#7 46.97 :: Synchronizing package databases...
#7 47.45 core downloading...
#7 47.45 extra downloading...
#7 47.68 resolving dependencies...
#7 47.68 :: There are 3 providers available for initramfs:
#7 47.68 :: Repository core
#7 47.68 1) mkinitcpio
#7 47.68 :: Repository extra
#7 47.68 2) booster 3) dracut
#7 47.68
#7 47.68 Enter a number (default=1):
#7 47.68 looking for conflicting packages...
#7 47.68 warning: dependency cycle detected:
#7 47.68 warning: libglvnd will be installed before its nvidia-utils dependency
#7 47.68 warning: dependency cycle detected:
#7 47.68 warning: mesa will be installed before its libglvnd dependency
#7 47.68
#7 47.68 Package (34) New Version Net Change Download Size
#7 47.68
#7 47.68 extra/default-cursors 3-1 0.00 MiB 0.00 MiB
#7 47.68 core/diffutils 3.12-2 1.50 MiB 0.33 MiB
#7 47.68 extra/egl-gbm 1.1.2.1-1 0.03 MiB 0.01 MiB
#7 47.68 extra/egl-wayland 4:1.1.20-1 0.10 MiB 0.04 MiB
#7 47.68 extra/egl-x11 1.0.3-1 0.14 MiB 0.04 MiB
#7 47.68 extra/eglexternalplatform 1.2.1-1 0.02 MiB 0.01 MiB
#7 47.68 extra/libdrm 2.4.128-1 1.26 MiB 0.34 MiB
#7 47.68 extra/libglvnd 1.7.0-3 3.34 MiB 0.32 MiB
#7 47.68 extra/libpciaccess 0.18.1-2 0.06 MiB 0.02 MiB
#7 47.68 extra/libx11 1.8.12-1 9.78 MiB 2.00 MiB
#7 47.68 extra/libxau 1.0.12-1 0.02 MiB 0.01 MiB
#7 47.68 extra/libxcb 1.17.0-1 3.87 MiB 0.97 MiB
#7 47.68 extra/libxdmcp 1.1.5-1 0.13 MiB 0.03 MiB
#7 47.68 extra/libxext 1.3.6-1 0.30 MiB 0.10 MiB
#7 47.68 extra/libxshmfence 1.3.3-1 0.02 MiB 0.01 MiB
#7 47.68 extra/libxxf86vm 1.1.6-1 0.03 MiB 0.02 MiB
#7 47.68 core/linux 6.17.7.arch1-1 143.26 MiB 142.63 MiB
#7 47.68 extra/llvm-libs 21.1.5-1 150.01 MiB 38.45 MiB
#7 47.68 extra/lm_sensors 1:3.6.2-1 0.48 MiB 0.13 MiB
#7 47.68 extra/mesa 1:25.2.6-1 44.44 MiB 11.21 MiB
#7 47.68 core/mkinitcpio 40-1 0.21 MiB 0.07 MiB
#7 47.68 core/mkinitcpio-busybox 1.36.1-1 0.51 MiB 0.27 MiB
#7 47.68 core/mpdecimal 4.0.1-1 0.33 MiB 0.10 MiB
#7 47.68 extra/nvidia-utils 580.95.05-1 900.51 MiB 287.57 MiB
#7 47.68 extra/opencl-nvidia 580.95.05-1 85.70 MiB 5.65 MiB
#7 47.68 core/python 3.13.7-1 67.54 MiB 12.21 MiB
#7 47.68 extra/spirv-tools 1:1.4.328.1-1 7.43 MiB 1.87 MiB
#7 47.68 extra/wayland 1.24.0-1 0.82 MiB 0.14 MiB
#7 47.68 extra/xcb-proto 1.17.0-3 1.02 MiB 0.13 MiB
#7 47.68 extra/xorgproto 2024.1-2 1.46 MiB 0.24 MiB
#7 47.68 extra/cuda 13.0.2-1 4822.51 MiB 2250.22 MiB
#7 47.68 extra/cudnn 9.14.0.64-1 441.71 MiB 302.58 MiB
#7 47.68 extra/nccl 2.28.7-1 613.48 MiB 490.38 MiB
#7 47.68 extra/nvidia 580.95.05-9 82.31 MiB 82.12 MiB
#7 47.68
#7 47.68 Total Download Size: 3630.22 MiB
#7 47.68 Total Installed Size: 7384.33 MiB
#7 47.68
#7 47.68 :: Proceed with installation? [Y/n]
#7 47.68 :: Retrieving packages...
#7 513.0 nvidia-utils-580.95.05-1-x86_64 downloading...
#7 513.0 linux-6.17.7.arch1-1-x86_64 downloading...
#7 513.0 nvidia-580.95.05-9-x86_64 downloading...
#7 513.0 llvm-libs-21.1.5-1-x86_64 downloading...
#7 513.0 python-3.13.7-1-x86_64 downloading...
#7 513.0 mesa-1:25.2.6-1-x86_64 downloading...
#7 513.0 opencl-nvidia-580.95.05-1-x86_64 downloading...
#7 513.0 libx11-1.8.12-1-x86_64 downloading...
#7 513.0 spirv-tools-1:1.4.328.1-1-x86_64 downloading...
#7 513.0 libxcb-1.17.0-1-x86_64 downloading...
#7 513.0 libdrm-2.4.128-1-x86_64 downloading...
#7 513.0 diffutils-3.12-2-x86_64 downloading...
#7 513.0 libglvnd-1.7.0-3-x86_64 downloading...
#7 513.0 mkinitcpio-busybox-1.36.1-1-x86_64 downloading...
#7 513.0 xorgproto-2024.1-2-any downloading...
#7 513.0 wayland-1.24.0-1-x86_64 downloading...
#7 513.0 lm_sensors-1:3.6.2-1-x86_64 downloading...
#7 513.0 xcb-proto-1.17.0-3-any downloading...
#7 513.0 libxext-1.3.6-1-x86_64 downloading...
#7 513.0 mpdecimal-4.0.1-1-x86_64 downloading...
#7 513.0 mkinitcpio-40-1-any downloading...
#7 513.0 egl-x11-1.0.3-1-x86_64 downloading...
#7 513.0 egl-wayland-4:1.1.20-1-x86_64 downloading...
#7 513.0 libxdmcp-1.1.5-1-x86_64 downloading...
#7 513.0 libpciaccess-0.18.1-2-x86_64 downloading...
#7 513.0 libxxf86vm-1.1.6-1-x86_64 downloading...
#7 513.0 egl-gbm-1.1.2.1-1-x86_64 downloading...
#7 513.0 libxau-1.0.12-1-x86_64 downloading...
#7 513.0 eglexternalplatform-1.2.1-1-any downloading...
#7 513.0 libxshmfence-1.3.3-1-x86_64 downloading...
#7 513.0 default-cursors-3-1-any downloading...
#7 513.0 cuda-13.0.2-1-x86_64 downloading...
#7 513.0 nccl-2.28.7-1-x86_64 downloading...
#7 513.0 cudnn-9.14.0.64-1-x86_64 downloading...
#7 513.0 checking keyring...
#7 513.2 checking package integrity...
#7 522.5 loading package files...
#7 522.6 checking for file conflicts...
#7 522.6 :: Processing package changes...
#7 522.6 installing mkinitcpio-busybox...
#7 522.6 installing diffutils...
#7 522.6 installing mkinitcpio...
#7 522.6 Optional dependencies for mkinitcpio
#7 522.6 xz: Use lzma or xz compression for the initramfs image [installed]
#7 522.6 bzip2: Use bzip2 compression for the initramfs image [installed]
#7 522.6 lzop: Use lzo compression for the initramfs image
#7 522.6 lz4: Use lz4 compression for the initramfs image [installed]
#7 522.6 mkinitcpio-nfs-utils: Support for root filesystem on NFS
#7 522.6 systemd-ukify: alternative UKI generator
#7 522.6 installing linux...
#7 523.6 Optional dependencies for linux
#7 523.6 linux-firmware: firmware images needed for some devices
#7 523.6 scx-scheds: to use sched-ext schedulers
#7 523.6 wireless-regdb: to set the correct wireless channels of your country
#7 523.6 installing xcb-proto...
#7 523.6 installing xorgproto...
#7 523.6 installing libxdmcp...
#7 523.6 installing libxau...
#7 523.6 installing libxcb...
#7 523.7 installing libx11...
#7 523.7 installing libxext...
#7 523.7 installing libpciaccess...
#7 523.7 installing libdrm...
#7 523.7 Optional dependencies for libdrm
#7 523.7 cairo: needed for modetest tool
#7 523.7 installing libxshmfence...
#7 523.7 installing libxxf86vm...
#7 523.7 installing llvm-libs...
#7 524.2 installing lm_sensors...
#7 524.2 Optional dependencies for lm_sensors
#7 524.2 rrdtool: for logging with sensord
#7 524.2 perl: for sensor detection and configuration convert [installed]
#7 524.2 installing spirv-tools...
#7 524.2 installing default-cursors...
#7 524.2 Optional dependencies for default-cursors
#7 524.2 adwaita-cursors: default cursor theme
#7 524.2 installing wayland...
#7 524.2 installing mesa...
#7 524.4 Optional dependencies for mesa
#7 524.4 opengl-man-pages: for the OpenGL API man pages
#7 524.4 installing libglvnd...
#7 524.4 installing eglexternalplatform...
#7 524.4 installing egl-wayland...
#7 524.4 installing egl-gbm...
#7 524.4 installing egl-x11...
#7 524.4 installing nvidia-utils...
#7 526.8 Created symlink '/etc/systemd/system/systemd-suspend.service.wants/nvidia-resume.service' → '/usr/lib/systemd/system/nvidia-resume.service'.
#7 526.8 Created symlink '/etc/systemd/system/systemd-hibernate.service.wants/nvidia-resume.service' → '/usr/lib/systemd/system/nvidia-resume.service'.
#7 526.8 Created symlink '/etc/systemd/system/systemd-suspend-then-hibernate.service.wants/nvidia-resume.service' → '/usr/lib/systemd/system/nvidia-resume.service'.
#7 526.8 Created symlink '/etc/systemd/system/systemd-hibernate.service.wants/nvidia-hibernate.service' → '/usr/lib/systemd/system/nvidia-hibernate.service'.
#7 526.8 Created symlink '/etc/systemd/system/systemd-suspend.service.wants/nvidia-suspend.service' → '/usr/lib/systemd/system/nvidia-suspend.service'.
#7 526.8 Optional dependencies for nvidia-utils
#7 526.8 nvidia-settings: configuration tool
#7 526.8 xorg-server: Xorg support
#7 526.8 xorg-server-devel: nvidia-xconfig
#7 526.8 opencl-nvidia: OpenCL support [pending]
#7 526.8 installing nvidia...
#7 526.9 installing opencl-nvidia...
#7 527.0 Optional dependencies for opencl-nvidia
#7 527.0 opencl-headers: headers necessary for OpenCL development
#7 527.0 installing mpdecimal...
#7 527.0 installing python...
#7 527.4 Optional dependencies for python
#7 527.4 python-setuptools: for building Python packages using tooling that is usually bundled with Python
#7 527.4 python-pip: for installing Python packages using tooling that is usually bundled with Python
#7 527.4 python-pipx: for installing Python software not packaged on Arch Linux
#7 527.4 sqlite: for a default database integration [installed]
#7 527.4 xz: for lzma [installed]
#7 527.4 tk: for tkinter
#7 527.4 installing cuda...
#7 538.8 - The cuda binaries are in /opt/cuda/bin/
#7 538.8 - The cuda samples are in /opt/cuda/samples/
#7 538.8 - The cuda docs are in /opt/cuda/doc/
#7 538.8 - You need to source /etc/profile or restart your session in order for the CUDA
#7 538.8 binaries to appear in your $PATH
#7 538.8 - The default host compiler for nvcc is set by the $NVCC_CCBIN environment
#7 538.8 variable in /etc/profile.d/cuda.sh
#7 538.9 - The default host compiler for nvcc is no longer configured using symlinks in
#7 538.9 /opt/cuda/bin/ but by the $NVCC_CCBIN environment variable in
#7 538.9 /etc/profile.d/cuda.sh. You need to source /etc/profile or restart your
#7 538.9 session for it to be available in your environment. Additionally, you may
#7 538.9 need to clear the build cache of your projects where the old path may have
#7 538.9 been recorded.
#7 538.9 - When you uninstall an old, unrequired version of GCC that was previously
#7 538.9 required by cuda for the default host compiler ($NVCC_CCBIN), you may need
#7 538.9 to source /etc/profile or restart your session. Additionally, you may need
#7 538.9 to clear the build cache of your projects where the old path may be still
#7 538.9 recorded.
#7 538.9 Optional dependencies for cuda
#7 538.9 gdb: for cuda-gdb
#7 538.9 glu: required for some profiling tools in CUPTI
#7 538.9 nvidia-utils: for NVIDIA drivers (not needed in CDI containers) [installed]
#7 538.9 rdma-core: for GPUDirect Storage (libcufile_rdma.so)
#7 538.9 installing cudnn...
#7 539.8 installing nccl...
#7 543.2 :: Running post-transaction hooks...
#7 543.2 (1/8) Creating system user accounts...
#7 543.3 Creating group 'nvidia-persistenced' with GID 143.
#7 543.3 Creating user 'nvidia-persistenced' (NVIDIA Persistence Daemon) with UID 143 and GID 143.
#7 544.0 (2/8) Reloading system manager configuration...
#7 544.1 Skipped: Current root is not booted.
#7 544.1 (3/8) Creating temporary files...
#7 544.1 /usr/lib/tmpfiles.d/journal-nocow.conf:26: Failed to resolve specifier: uninitialized /etc/ detected, skipping.
#7 544.1 All rules containing unresolvable specifiers will be skipped.
#7 544.2 (4/8) Reloading device manager configuration...
#7 544.2 Skipped: Current root is not booted.
#7 544.2 (5/8) Arming ConditionNeedsUpdate...
#7 544.4 (6/8) Updating module dependencies...
#7 546.2 (7/8) Updating linux initcpios...
#7 546.4 ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
#7 546.4 ==> Using default configuration file: '/etc/mkinitcpio.conf'
#7 546.4 -> -k /boot/vmlinuz-linux -g /boot/initramfs-linux.img
#7 546.6 ==> Starting build: '6.17.7-arch1-1'
#7 546.6 -> Running build hook: [base]
#7 547.3 -> Running build hook: [systemd]
#7 550.3 -> Running build hook: [autodetect]
#7 550.4 ==> WARNING: cannot detect type of overlayfs root filesystem
#7 550.4 -> Running build hook: [microcode]
#7 550.4 -> Running build hook: [modconf]
#7 550.5 -> Running build hook: [kms]
#7 552.1 -> Running build hook: [keyboard]
#7 552.2 -> Running build hook: [keymap]
#7 552.3 -> Running build hook: [sd-vconsole]
#7 552.4 ==> ERROR: file not found: '/etc/vconsole.conf'
#7 552.5 -> Running build hook: [block]
#7 552.9 -> Running build hook: [filesystems]
#7 553.7 -> Running build hook: [fsck]
#7 554.6 ==> Generating module dependencies
#7 554.7 ==> Creating zstd-compressed initcpio image: '/boot/initramfs-linux.img'
#7 555.4 ==> WARNING: errors were encountered during the build. The image may not be complete.
#7 555.5 error: command failed to execute correctly
#7 555.5 (8/8) Reloading system bus configuration...
#7 555.6 Skipped: Current root is not booted.
#7 555.8 resolving dependencies...
#7 555.8 warning: opencl-nvidia-580.95.05-1 is up to date -- reinstalling
#7 555.8 looking for conflicting packages...
#7 555.8
#7 555.8 Package (3) Old Version New Version Net Change Download Size
#7 555.8
#7 555.8 extra/libnvidia-container 1.18.0-1 3.20 MiB 1.16 MiB
#7 555.8 extra/nvidia-container-toolkit 1.18.0-1 41.87 MiB 5.50 MiB
#7 555.8 extra/opencl-nvidia 580.95.05-1 580.95.05-1 0.00 MiB
#7 555.8
#7 555.8 Total Download Size: 6.67 MiB
#7 555.8 Total Installed Size: 130.77 MiB
#7 555.8 Net Upgrade Size: 45.08 MiB
#7 555.8
#7 555.8 :: Proceed with installation? [Y/n]
#7 555.8 :: Retrieving packages...
#7 557.7 nvidia-container-toolkit-1.18.0-1-x86_64 downloading...
#7 557.7 libnvidia-container-1.18.0-1-x86_64 downloading...
#7 557.7 checking keyring...
#7 557.8 checking package integrity...
#7 557.8 loading package files...
#7 557.8 checking for file conflicts...
#7 557.8 :: Processing package changes...
#7 557.8 installing libnvidia-container...
#7 557.9 installing nvidia-container-toolkit...
#7 558.0 reinstalling opencl-nvidia...
#7 558.2 :: Running post-transaction hooks...
#7 558.2 (1/2) Arming ConditionNeedsUpdate...
#7 558.3 (2/2) Regenerate NVIDIA CDI (Container Device Interface)
#7 558.4 ERROR: init 243 result=9time="2025-11-07T13:13:37Z" level=error msg="failed to generate CDI spec: failed to create device CDI specs: failed to construct device spec generators: failed to initialize NVML: Driver Not
Loaded"
#7 558.4 error: command failed to execute correctly
#7 558.4
#7 558.4 Cache directory: /var/cache/pacman/pkg/
#7 558.4 :: Do you want to remove ALL files from cache? [y/N]
#7 558.4
#7 558.4 Database directory: /var/lib/pacman/
#7 558.4 :: Do you want to remove unused repositories? [Y/n]
#7 558.4 removing unused sync repositories...
#7 DONE 562.2s
#8 [ 3/12] COPY entrypoint.sh /entrypoint.sh
#8 DONE 0.2s
#9 [ 4/12] RUN chmod +x /entrypoint.sh && mkdir -p /home/hans/bin     && chown -R hans:hans /home/hans/bin
#9 DONE 0.3s
#10 [ 5/12] COPY theme.omp.json /home/hans/bin/theme.omp.json
#10 DONE 0.2s
#11 [ 6/12] RUN chown hans:hans /home/hans/bin/theme.omp.json
#11 DONE 0.4s
#12 [ 7/12] COPY --chown=hans:hans . /home/hans/.dev/
#12 DONE 0.4s
#13 [ 8/12] RUN curl -s https://ohmyposh.dev/install.sh | bash -s -- -d /home/hans/bin     && echo 'eval "$(oh-my-posh init bash --config $HOME/bin/theme.omp.json)"' >> /home/hans/.bashrc
#13 0.784 ⚠️ [33mInstallation directory /home/hans/bin is not in your $PATH, add it using
#13 0.784 export PATH=$PATH:/home/hans/bin[0m
#13 0.822
#13 0.822 ℹ️ Installing oh-my-posh for linux-amd64 in /home/hans/bin
#13 0.822 ⬇️ Downloading oh-my-posh from https://cdn.ohmyposh.dev/releases/latest/posh-linux-amd64
#13 3.563 🎨 Installing oh-my-posh themes in /home/hans/.cache/oh-my-posh/themes
#13 3.563
#13 4.210 🚀 Installation complete.
#13 4.210
#13 4.210 You can follow the instructions at https://ohmyposh.dev/docs/installation/prompt
#13 4.210 to setup your shell to use oh-my-posh.
#13 4.210
#13 4.210 If you want to use a built-in theme, you can find them in the /home/hans/.cache/oh-my-posh/themes directory:
#13 4.210 oh-my-posh init {shell} --config /home/hans/.cache/oh-my-posh/themes/{theme}.omp.json
#13 4.210
#13 DONE 4.3s
#14 [ 9/12] WORKDIR /home/hans/.dev/
#14 DONE 0.1s
#15 [10/12] RUN curl -LsSf https://astral.sh/uv/install.sh | sh && uv python install 3.12 && uv venv --python 3.12 /home/hans/.base && source /home/hans/.base/bin/activate && uv init --bare --python 3.12 -v
-n base && uv pip install --upgrade pip && uv pip install --no-cache-dir torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu130 && uv pip install --no-cache-dir -r requirements.txt &&
uv pip compile requirements.txt -o uv.lock && uv cache clean && echo "Fixing NCCL library usage in PyTorch…" && rm -rf /home/hans/.base/lib/python3.12/site-packages/torch/lib/../../nvidia/nccl && ln -s
/usr/lib/libnccl.so.2 /home/hans/.base/lib/python3.12/site-packages/torch/lib/libnccl.so.2
#15 1.609 downloading uv 0.9.7 x86_64-unknown-linux-gnu
#15 4.295 no checksums to verify
#15 4.608 installing to /home/hans/.local/bin
#15 4.623 uv
#15 4.630 uvx
#15 4.630 everything's installed!
#15 5.164 Downloading cpython-3.12.12-linux-x86_64-gnu (download) (31.8MiB)
#15 10.34 Downloading cpython-3.12.12-linux-x86_64-gnu (download)
#15 10.35 Installed Python 3.12.12 in 5.70s
#15 10.35 + cpython-3.12.12-linux-x86_64-gnu (python3.12)
#15 10.56 Using CPython 3.12.12
#15 10.56 Creating virtual environment at: /home/hans/.base
#15 10.57 Activate with: source /home/hans/.base/bin/activate
#15 10.59 DEBUG uv 0.9.7
#15 10.59 DEBUG Disabling the uv cache due to `--no-cache`
#15 10.59 DEBUG Acquired shared lock for `/tmp/.tmpCYD3TK`
#15 10.59 DEBUG Using Python version `>=3.12` from request `Python 3.12`
#15 10.59 Initialized project `base` at `/home/hans/.dev/base`
#15 10.59 DEBUG Released lock at `/tmp/.tmpCYD3TK/.lock`
#15 10.86 Using Python 3.12.12 environment at: /home/hans/.base
#15 11.60 Resolved 1 package in 744ms
#15 11.70 Downloading pip (1.7MiB)
#15 12.22 Downloading pip
#15 12.22 Prepared 1 package in 618ms
#15 12.24 Installed 1 package in 23ms
#15 12.24 + pip==25.3
#15 12.42 Using Python 3.12.12 environment at: /home/hans/.base
#15 14.21 Resolved 30 packages in 1.78s
#15 14.61 Downloading numpy (15.9MiB)
#15 14.61 Downloading sympy (6.0MiB)
#15 14.61 Downloading pillow (6.3MiB)
#15 14.61 Downloading networkx (1.9MiB)
#15 14.61 Downloading nvidia-cusolver (184.5MiB)
#15 14.61 Downloading torchvision (7.2MiB)
#15 14.61 Downloading nvidia-cusparse (133.8MiB)
#15 14.62 Downloading nvidia-nvshmem-cu13 (57.6MiB)
#15 14.62 Downloading nvidia-cuda-runtime (2.1MiB)
#15 14.62 Downloading nvidia-cufft (204.2MiB)
#15 14.62 Downloading torchaudio (2.0MiB)
#15 14.62 Downloading nvidia-nvjitlink (38.8MiB)
#15 14.62 Downloading triton (162.6MiB)
#15 14.62 Downloading nvidia-cuda-cupti (10.2MiB)
#15 14.62 Downloading nvidia-curand (56.8MiB)
#15 14.62 Downloading nvidia-cudnn-cu13 (332.4MiB)
#15 14.62 Downloading nvidia-cublas (400.0MiB)
#15 14.62 Downloading torch (584.2MiB)
#15 14.62 Downloading nvidia-cuda-nvrtc (86.0MiB)
#15 14.62 Downloading nvidia-nccl-cu13 (184.9MiB)
#15 14.62 Downloading nvidia-cusparselt-cu13 (162.0MiB)
#15 14.62 Downloading nvidia-cufile (1.2MiB)
#15 18.70 Downloading nvidia-cufile
#15 18.88 Downloading networkx
#15 19.43 Downloading torchaudio
#15 19.48 Downloading nvidia-cuda-runtime
#15 23.78 Downloading sympy
#15 26.03 Downloading pillow
#15 26.08 Downloading torchvision
#15 29.27 Downloading nvidia-cuda-cupti
#15 33.94 Downloading numpy
#15 53.20 Downloading nvidia-nvjitlink
#15 65.53 Downloading nvidia-nvshmem-cu13
#15 66.31 Downloading nvidia-curand
#15 102.7 Downloading nvidia-cuda-nvrtc
#15 138.6 Downloading nvidia-cusparse
#15 153.4 Downloading triton
#15 160.6 Downloading nvidia-cusparselt-cu13
#15 163.3 Downloading nvidia-nccl-cu13
#15 164.2 Downloading nvidia-cusolver
#15 175.5 Downloading nvidia-cufft
#15 201.8 Downloading nvidia-cudnn-cu13
#15 213.2 Downloading nvidia-cublas
#15 243.8 Downloading torch
#15 243.8 Prepared 30 packages in 3m 49s
#15 244.2 Installed 30 packages in 405ms
#15 244.2 + filelock==3.19.1
#15 244.2 + fsspec==2025.9.0
#15 244.2 + jinja2==3.1.6
#15 244.2 + markupsafe==2.1.5
#15 244.2 + mpmath==1.3.0
#15 244.2 + networkx==3.5
#15 244.2 + numpy==2.3.3
#15 244.2 + nvidia-cublas==13.0.0.19
#15 244.2 + nvidia-cuda-cupti==13.0.48
#15 244.2 + nvidia-cuda-nvrtc==13.0.48
#15 244.2 + nvidia-cuda-runtime==13.0.48
#15 244.2 + nvidia-cudnn-cu13==9.13.0.50
#15 244.2 + nvidia-cufft==12.0.0.15
#15 244.2 + nvidia-cufile==1.15.0.42
#15 244.2 + nvidia-curand==10.4.0.35
#15 244.2 + nvidia-cusolver==12.0.3.29
#15 244.2 + nvidia-cusparse==12.6.2.49
#15 244.2 + nvidia-cusparselt-cu13==0.8.0
#15 244.2 + nvidia-nccl-cu13==2.27.7
#15 244.2 + nvidia-nvjitlink==13.0.39
#15 244.2 + nvidia-nvshmem-cu13==3.3.24
#15 244.2 + nvidia-nvtx==13.0.39
#15 244.2 + pillow==11.3.0
#15 244.2 + setuptools==70.2.0
#15 244.2 + sympy==1.14.0
#15 244.2 + torch==2.9.0+cu130
#15 244.2 + torchaudio==2.9.0+cu130
#15 244.2 + torchvision==0.24.0+cu130
#15 244.2 + triton==3.5.0
#15 244.2 + typing-extensions==4.15.0
#15 244.7 Using Python 3.12.12 environment at: /home/hans/.base
#15 249.9 Resolved 151 packages in 5.16s
#15 250.0 Downloading pandas (11.8MiB)
#15 250.0 Downloading tensorboard (5.2MiB)
#15 250.2 Downloading pygments (1.2MiB)
#15 250.2 Downloading mlflow (8.4MiB)
#15 250.2 Downloading grpcio (5.1MiB)
#15 250.2 Downloading pyarrow (40.8MiB)
#15 250.2 Downloading nvidia-cuda-nvrtc-cu12 (23.7MiB)
#15 250.2 Downloading tensorflow (563.4MiB)
#15 250.2 Downloading pyqt5-qt5 (58.3MiB)
#15 250.2 Downloading mlflow-tracing (1.2MiB)
#15 250.2 Downloading nvidia-curand-cu12 (53.7MiB)
#15 250.2 Downloading nvidia-cufft-cu12 (94.2MiB)
#15 250.2 Downloading nvidia-nccl-cu12 (158.3MiB)
#15 250.2 Downloading libclang (23.4MiB)
#15 250.2 Downloading tensorboard-data-server (6.3MiB)
#15 250.2 Downloading nvidia-cuda-cupti-cu12 (13.3MiB)
#15 250.2 Downloading ml-dtypes (2.1MiB)
#15 250.2 Downloading keras (1.4MiB)
#15 250.2 Downloading kiwisolver (1.4MiB)
#15 250.2 Downloading sqlalchemy (3.2MiB)
#15 250.2 Downloading nvidia-cusparse-cu12 (188.3MiB)
#15 250.2 Downloading wandb (19.1MiB)
#15 250.2 Downloading nvidia-cusolver-cu12 (119.4MiB)
#15 250.2 Downloading nvidia-cuda-nvcc-cu12 (20.9MiB)
#15 250.2 Downloading scikit-learn (9.0MiB)
#15 250.2 Downloading numpy (17.1MiB)
#15 250.2 Downloading h5py (4.9MiB)
#15 250.2 Downloading plotly (9.4MiB)
#15 250.2 Downloading jedi (1.5MiB)
#15 250.2 Downloading pyqt5 (7.8MiB)
#15 250.2 Downloading mlflow-skinny (2.2MiB)
#15 250.2 Downloading cryptography (4.3MiB)
#15 250.2 Downloading debugpy (4.1MiB)
#15 250.2 Downloading polars-runtime-32 (39.4MiB)
#15 250.2 Downloading fonttools (4.7MiB)
#15 250.2 Downloading pydantic-core (2.0MiB)
#15 250.2 Downloading nvidia-cublas-cu12 (393.5MiB)
#15 250.2 Downloading opencv-python (60.1MiB)
#15 250.2 Downloading nvidia-nvjitlink-cu12 (19.6MiB)
#15 250.2 Downloading nvidia-cudnn-cu12 (672.1MiB)
#15 250.2 Downloading matplotlib (8.3MiB)
#15 250.2 Downloading scipy (34.0MiB)
#15 263.1 Downloading pygments
#15 263.1 Downloading mlflow-tracing
#15 264.8 Downloading keras
#15 265.0 Downloading kiwisolver
#15 265.9 Downloading jedi
#15 271.0 Downloading ml-dtypes
#15 271.1 Downloading pydantic-core
#15 272.7 Downloading mlflow-skinny
#15 276.4 Downloading sqlalchemy
#15 279.5 Downloading debugpy
#15 280.1 Downloading cryptography
#15 281.3 Downloading fonttools
#15 281.7 Downloading h5py
#15 282.1 Downloading grpcio
#15 282.2 Downloading tensorboard
#15 284.6 Downloading tensorboard-data-server
#15 288.7 Downloading pyqt5
#15 289.5 Downloading mlflow
#15 290.5 Downloading matplotlib
#15 292.9 Downloading scikit-learn
#15 295.6 Downloading plotly
#15 302.5 Downloading pandas
#15 307.3 Downloading nvidia-cuda-cupti-cu12
#15 319.7 Downloading numpy
#15 326.1 Downloading wandb
#15 328.0 Downloading nvidia-nvjitlink-cu12
#15 331.5 Downloading nvidia-cuda-nvcc-cu12
#15 335.1 Downloading libclang
#15 335.5 Downloading nvidia-cuda-nvrtc-cu12
#15 345.2 Downloading scipy
#15 349.9 Downloading polars-runtime-32
#15 351.4 Downloading pyarrow
#15 361.4 Downloading nvidia-curand-cu12
#15 364.8 Downloading pyqt5-qt5
#15 366.8 Downloading opencv-python
#15 393.6 Downloading nvidia-cufft-cu12
#15 407.1 Downloading nvidia-cusolver-cu12
#15 428.5 Downloading nvidia-nccl-cu12
#15 441.7 Downloading nvidia-cusparse-cu12
#15 511.6 Downloading nvidia-cublas-cu12
#15 548.6 Downloading tensorflow
#15 562.7 Downloading nvidia-cudnn-cu12
#15 562.7 Prepared 146 packages in 5m 12s
#15 562.7 Uninstalled 1 package in 37ms
#15 563.7 Installed 146 packages in 1.00s
#15 563.7 + absl-py==2.3.1
#15 563.7 + alembic==1.17.1
#15 563.7 + annotated-doc==0.0.3
#15 563.7 + annotated-types==0.7.0
#15 563.7 + anyio==4.11.0
#15 563.7 + asttokens==3.0.0
#15 563.7 + astunparse==1.6.3
#15 563.7 + blinker==1.9.0
#15 563.7 + cachetools==6.2.1
#15 563.7 + certifi==2025.10.5
#15 563.7 + cffi==2.0.0
#15 563.7 + charset-normalizer==3.4.4
#15 563.7 + click==8.3.0
#15 563.7 + cloudpickle==3.1.2
#15 563.7 + comm==0.2.3
#15 563.7 + contourpy==1.3.3
#15 563.7 + cryptography==46.0.3
#15 563.7 + cycler==0.12.1
#15 563.7 + databricks-sdk==0.67.0
#15 563.7 + debugpy==1.8.17
#15 563.7 + decorator==5.2.1
#15 563.7 + docker==7.1.0
#15 563.7 + executing==2.2.1
#15 563.7 + fastapi==0.121.0
#15 563.7 + flask==3.1.2
#15 563.7 + flask-cors==6.0.1
#15 563.7 + flatbuffers==25.9.23
#15 563.7 + fonttools==4.60.1
#15 563.7 + gast==0.6.0
#15 563.7 + gitdb==4.0.12
#15 563.7 + gitpython==3.1.45
#15 563.7 + google-auth==2.43.0
#15 563.7 + google-pasta==0.2.0
#15 563.7 + graphene==3.4.3
#15 563.7 + graphql-core==3.2.7
#15 563.7 + graphql-relay==3.2.0
#15 563.7 + greenlet==3.2.4
#15 563.7 + grpcio==1.60.1
#15 563.7 + gunicorn==23.0.0
#15 563.7 + h11==0.16.0
#15 563.7 + h5py==3.15.1
#15 563.7 + idna==3.11
#15 563.7 + importlib-metadata==8.7.0
#15 563.7 + ipykernel==7.1.0
#15 563.7 + ipython==9.7.0
#15 563.7 + ipython-pygments-lexers==1.1.1
#15 563.7 + itsdangerous==2.2.0
#15 563.7 + jedi==0.19.2
#15 563.7 + joblib==1.5.2
#15 563.7 + jupyter-client==8.6.3
#15 563.7 + jupyter-core==5.9.1
#15 563.7 + keras==3.12.0
#15 563.7 + kiwisolver==1.4.9
#15 563.7 + libclang==18.1.1
#15 563.7 + mako==1.3.10