-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathtop.log
9457 lines (9418 loc) · 779 KB
/
top.log
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
top - 15:25:27 up 6:39, 1 user, load average: 0.20, 0.36, 0.56
Tasks: 464 total, 1 running, 463 sleeping, 0 stopped, 0 zombie
%Cpu(s): 3.5 us, 1.5 sy, 0.0 ni, 94.0 id, 0.0 wa, 0.5 hi, 0.5 si, 0.0 st
MiB Mem : 31938.8 total, 13270.3 free, 6226.0 used, 12442.5 buff/cache
MiB Swap: 8192.0 total, 8192.0 free, 0.0 used. 23849.3 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
8326 daemonna 20 0 38.7g 277808 120996 S 18.8 0.8 1:34.18 code
8425 daemonna 20 0 28.7g 146580 99300 S 12.5 0.4 0:18.61 code
5211 daemonna 20 0 1120408 109660 67460 S 6.2 0.3 5:15.65 Xwayland
8302 daemonna 20 0 16.8g 111460 81100 S 6.2 0.3 0:30.00 code
65936 root 20 0 0 0 0 I 6.2 0.0 0:00.07 kworker/u24:1-btrfs-endio-write
66785 daemonna 20 0 226544 4520 3544 R 6.2 0.0 0:00.01 top
1 root 20 0 173364 17836 11060 S 0.0 0.1 0:02.21 systemd
2 root 20 0 0 0 0 S 0.0 0.0 0:00.04 kthreadd
3 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 rcu_gp
4 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 rcu_par_gp
5 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 netns
7 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/0:0H-events_highpri
10 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 mm_percpu_wq
11 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tasks_kthread
12 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tasks_rude_kthread
13 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tasks_trace_kthread
14 root 20 0 0 0 0 S 0.0 0.0 0:00.15 ksoftirqd/0
15 root 20 0 0 0 0 I 0.0 0.0 0:29.57 rcu_preempt
16 root rt 0 0 0 0 S 0.0 0.0 0:00.01 migration/0
17 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/0
18 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/1
19 root rt 0 0 0 0 S 0.0 0.0 0:00.16 migration/1
20 root 20 0 0 0 0 S 0.0 0.0 0:00.11 ksoftirqd/1
22 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/1:0H-events_highpri
23 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/2
24 root rt 0 0 0 0 S 0.0 0.0 0:00.16 migration/2
25 root 20 0 0 0 0 S 0.0 0.0 0:00.08 ksoftirqd/2
27 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/2:0H-kblockd
28 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/3
29 root rt 0 0 0 0 S 0.0 0.0 0:00.16 migration/3
30 root 20 0 0 0 0 S 0.0 0.0 0:00.07 ksoftirqd/3
32 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/3:0H-events_highpri
33 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/4
34 root rt 0 0 0 0 S 0.0 0.0 0:00.17 migration/4
35 root 20 0 0 0 0 S 0.0 0.0 0:00.06 ksoftirqd/4
37 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/4:0H-events_highpri
38 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/5
39 root rt 0 0 0 0 S 0.0 0.0 0:00.16 migration/5
40 root 20 0 0 0 0 S 0.0 0.0 0:08.48 ksoftirqd/5
42 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/5:0H-events_highpri
43 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/6
44 root rt 0 0 0 0 S 0.0 0.0 0:00.16 migration/6
45 root 20 0 0 0 0 S 0.0 0.0 0:00.06 ksoftirqd/6
47 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/6:0H-events_highpri
48 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/7
49 root rt 0 0 0 0 S 0.0 0.0 0:00.17 migration/7
50 root 20 0 0 0 0 S 0.0 0.0 0:00.08 ksoftirqd/7
52 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/7:0H-events_highpri
53 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/8
54 root rt 0 0 0 0 S 0.0 0.0 0:00.17 migration/8
55 root 20 0 0 0 0 S 0.0 0.0 0:00.07 ksoftirqd/8
57 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/8:0H-events_highpri
58 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/9
59 root rt 0 0 0 0 S 0.0 0.0 0:00.17 migration/9
60 root 20 0 0 0 0 S 0.0 0.0 0:00.19 ksoftirqd/9
62 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/9:0H-events_highpri
63 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/10
64 root rt 0 0 0 0 S 0.0 0.0 0:00.17 migration/10
65 root 20 0 0 0 0 S 0.0 0.0 0:00.06 ksoftirqd/10
67 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/10:0H-events_highpri
68 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/11
69 root rt 0 0 0 0 S 0.0 0.0 0:00.17 migration/11
70 root 20 0 0 0 0 S 0.0 0.0 0:00.06 ksoftirqd/11
72 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/11:0H-events_highpri
73 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kdevtmpfs
74 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 inet_frag_wq
75 root 20 0 0 0 0 S 0.0 0.0 0:00.01 kauditd
76 root 20 0 0 0 0 S 0.0 0.0 0:00.00 oom_reaper
77 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 writeback
78 root 20 0 0 0 0 S 0.0 0.0 0:00.19 kcompactd0
79 root 25 5 0 0 0 S 0.0 0.0 0:00.00 ksmd
80 root 39 19 0 0 0 S 0.0 0.0 0:00.00 khugepaged
81 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 cryptd
82 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kintegrityd
83 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kblockd
84 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 blkcg_punt_bio
86 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 tpm_dev_wq
87 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 ata_sff
88 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 md
89 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 edac-poller
92 root -51 0 0 0 0 S 0.0 0.0 0:00.00 watchdogd
93 root 0 -20 0 0 0 I 0.0 0.0 0:00.42 kworker/0:1H-kblockd
94 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kswapd0
102 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kthrotld
107 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/123-aerdrv
108 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/123-pcie-dpc
109 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/124-aerdrv
110 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/124-pcie-dpc
111 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/125-aerdrv
112 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/125-pcie-dpc
113 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/126-aerdrv
114 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/126-pcie-dpc
124 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 acpi_thermal_pm
125 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_0
126 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 scsi_tmf_0
128 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 dm_bufio_cache
129 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 mld
130 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 ipv6_addrconf
135 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kstrp
148 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 zswap-shrink
253 root 0 -20 0 0 0 I 0.0 0.0 0:00.45 kworker/2:1H-kblockd
292 root 0 -20 0 0 0 I 0.0 0.0 0:00.34 kworker/1:1H-kblockd
301 root 0 -20 0 0 0 I 0.0 0.0 0:00.56 kworker/8:1H-kblockd
306 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 ipmi-msghandler
310 root 0 -20 0 0 0 I 0.0 0.0 0:00.27 kworker/3:1H-kblockd
312 root 0 -20 0 0 0 I 0.0 0.0 0:00.68 kworker/7:1H-events_highpri
313 root 0 -20 0 0 0 I 0.0 0.0 0:00.54 kworker/10:1H-kblockd
329 root 0 -20 0 0 0 I 0.0 0.0 0:00.80 kworker/6:1H-events_highpri
413 root 0 -20 0 0 0 I 0.0 0.0 0:00.27 kworker/11:1H-kblockd
458 root 0 -20 0 0 0 I 0.0 0.0 0:00.71 kworker/9:1H-kblockd
474 root -51 0 0 0 0 S 0.0 0.0 0:03.60 irq/74-ELAN0710:01
475 root 0 -20 0 0 0 I 0.0 0.0 0:00.25 kworker/4:1H-kblockd
476 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 nvme-wq
477 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 nvme-reset-wq
478 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 nvme-delete-wq
500 root -51 0 0 0 0 S 0.0 0.0 0:00.09 irq/18-alcor_sdmmc
501 root 0 -20 0 0 0 I 0.0 0.0 0:00.47 kworker/5:1H-events_highpri
502 root -51 0 0 0 0 S 0.0 0.0 0:00.01 card0-crtc0
503 root -51 0 0 0 0 S 0.0 0.0 0:00.00 card0-crtc1
504 root -51 0 0 0 0 S 0.0 0.0 0:00.00 card0-crtc2
514 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-worker
515 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-worker-hi
516 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-delalloc
517 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-flush_del
518 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-cache
519 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-fixup
520 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-endio
521 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-endio-met
522 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-endio-met
523 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-endio-rai
524 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-rmw
525 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-endio-wri
526 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-freespace
527 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-delayed-m
528 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-qgroup-re
529 root 20 0 0 0 0 S 0.0 0.0 0:00.03 btrfs-cleaner
530 root 20 0 0 0 0 S 0.0 0.0 0:28.25 btrfs-transaction
641 root 20 0 116912 19932 18044 S 0.0 0.1 0:00.84 systemd-journal
656 root 20 0 37588 14624 8932 S 0.0 0.0 0:00.19 systemd-udevd
658 root 20 0 17356 7492 6568 S 0.0 0.0 0:00.07 systemd-userdbd
730 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/144-mei_me
737 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 cfg80211
741 root -51 0 0 0 0 S 0.0 0.0 0:02.77 irq/145-iwlwifi:default_queue
742 root -51 0 0 0 0 S 0.0 0.0 0:00.23 irq/146-iwlwifi:queue_1
743 root -51 0 0 0 0 S 0.0 0.0 0:00.31 irq/147-iwlwifi:queue_2
744 root -51 0 0 0 0 S 0.0 0.0 0:00.25 irq/148-iwlwifi:queue_3
745 root -51 0 0 0 0 S 0.0 0.0 0:00.25 irq/149-iwlwifi:queue_4
746 root -51 0 0 0 0 S 0.0 0.0 0:00.22 irq/150-iwlwifi:queue_5
747 root -51 0 0 0 0 S 0.0 0.0 0:00.23 irq/151-iwlwifi:queue_6
748 root -51 0 0 0 0 S 0.0 0.0 0:02.00 irq/152-iwlwifi:queue_7
749 root -51 0 0 0 0 S 0.0 0.0 0:00.45 irq/153-iwlwifi:queue_8
750 root -51 0 0 0 0 S 0.0 0.0 0:00.23 irq/154-iwlwifi:queue_9
751 root -51 0 0 0 0 S 0.0 0.0 0:00.14 irq/155-iwlwifi:queue_10
752 root -51 0 0 0 0 S 0.0 0.0 0:00.22 irq/156-iwlwifi:queue_11
753 root -51 0 0 0 0 S 0.0 0.0 0:00.15 irq/157-iwlwifi:queue_12
754 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/158-iwlwifi:exception
790 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 mmc_complete
841 root 20 0 0 0 0 S 0.0 0.0 0:00.00 jbd2/nvme0n1p2-8
842 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 ext4-rsv-conver
865 systemd+ 20 0 17656 8496 7512 S 0.0 0.0 0:15.55 systemd-oomd
866 systemd+ 20 0 26692 17648 12176 S 0.0 0.1 0:03.63 systemd-resolve
867 root 16 -4 18032 2388 1668 S 0.0 0.0 0:00.02 auditd
885 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 rpciod
886 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 xprtiod
888 dbus 20 0 11008 5044 3980 S 0.0 0.0 0:00.03 dbus-broker-lau
889 dbus 20 0 11280 7056 2508 S 0.0 0.0 0:03.14 dbus-broker
891 avahi 20 0 8664 4292 3920 S 0.0 0.0 0:00.23 avahi-daemon
892 root 20 0 9712 5228 4808 S 0.0 0.0 0:00.03 bluetoothd
907 root -2 0 229640 4680 4264 S 0.0 0.0 0:00.01 low-memory-moni
913 root 20 0 2764 1872 1724 S 0.0 0.0 0:00.00 mcelog
924 polkitd 20 0 2932548 29256 20552 S 0.0 0.1 0:04.80 polkitd
927 root 20 0 452452 7432 6704 S 0.0 0.0 0:00.03 power-profiles-
929 daemon 20 0 319772 9460 7336 S 0.0 0.0 0:32.81 rngd
932 rtkit 21 1 153976 1600 1360 S 0.0 0.0 0:00.20 rtkit-daemon
939 root 20 0 526564 7968 6780 S 0.0 0.0 0:00.06 accounts-daemon
943 root 20 0 448848 6652 6040 S 0.0 0.0 0:00.02 switcheroo-cont
949 root 20 0 17888 8652 7568 S 0.0 0.0 0:00.50 systemd-homed
950 root 20 0 53456 12808 9280 S 0.0 0.0 0:01.00 systemd-logind
954 root 20 0 17672 8388 7344 S 0.0 0.0 0:00.61 systemd-machine
957 root -2 0 0 0 0 S 0.0 0.0 0:00.00 psimon
958 root 20 0 458228 9984 9176 S 0.0 0.0 0:01.35 thermald
959 root 20 0 395420 14756 11740 S 0.0 0.0 0:01.13 udisksd
963 root 20 0 455964 9612 7756 S 0.0 0.0 0:03.62 upowerd
1043 avahi 20 0 8396 372 0 S 0.0 0.0 0:00.00 avahi-daemon
1079 root 39 19 4804 3040 2744 S 0.0 0.0 0:00.02 alsactl
1090 chrony 20 0 85092 3704 3092 S 0.0 0.0 0:00.05 chronyd
1097 root 20 0 467104 12944 10752 S 0.0 0.0 0:00.05 abrtd
1098 root 20 0 390416 12276 10372 S 0.0 0.0 0:00.06 ModemManager
1101 root 20 0 352228 42936 19856 S 0.0 0.1 0:00.32 firewalld
1169 root 20 0 1085056 26264 24216 S 0.0 0.1 0:00.15 abrt-dump-journ
1170 root 20 0 1068780 52468 50308 S 0.0 0.2 0:00.15 abrt-dump-journ
1171 root 20 0 1068664 50560 48456 S 0.0 0.2 0:00.15 abrt-dump-journ
1209 root 20 0 476136 22840 18832 S 0.0 0.1 0:03.12 NetworkManager
1225 root 20 0 247828 9472 7824 S 0.0 0.0 0:00.01 cupsd
1237 root 20 0 270860 3716 2852 S 0.0 0.0 0:00.01 gssproxy
1260 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 nvkm-disp
1263 root -51 0 0 0 0 S 0.0 0.0 0:00.00 card1-crtc0
1264 root -51 0 0 0 0 S 0.0 0.0 0:00.00 card1-crtc1
1265 root -51 0 0 0 0 S 0.0 0.0 0:00.00 card1-crtc2
1266 root -51 0 0 0 0 S 0.0 0.0 0:00.00 card1-crtc3
1273 root 20 0 16468 11640 9636 S 0.0 0.0 0:00.42 wpa_supplicant
1474 root 20 0 3420 1068 964 S 0.0 0.0 0:00.00 atd
1475 root 20 0 224436 3756 2904 S 0.0 0.0 0:00.02 crond
1476 root 20 0 453664 9080 7960 S 0.0 0.0 0:00.02 gdm
1496 root 20 0 233936 5596 4884 S 0.0 0.0 0:00.02 uresourced
1603 dnsmasq 20 0 10116 2480 2088 S 0.0 0.0 0:00.00 dnsmasq
1604 root 20 0 10012 372 0 S 0.0 0.0 0:00.00 dnsmasq
1653 dnsmasq 20 0 10116 2520 2128 S 0.0 0.0 0:00.00 dnsmasq
1655 root 20 0 10012 372 0 S 0.0 0.0 0:00.00 dnsmasq
1772 root 20 0 1214872 597152 27256 S 0.0 1.8 0:30.08 packagekitd
1921 root 20 0 618628 7632 6684 S 0.0 0.0 0:00.01 pcscd
2001 colord 20 0 532460 13764 10084 S 0.0 0.0 0:00.08 colord
2061 root 10 -10 0 0 0 S 0.0 0.0 0:00.00 krfcommd
2241 root 20 0 388368 12952 10612 S 0.0 0.0 0:00.02 gdm-session-wor
2261 daemonna 20 0 23340 14936 10700 S 0.0 0.0 0:02.50 systemd
2271 daemonna 20 0 176988 7044 8 S 0.0 0.0 0:00.00 (sd-pam)
2361 daemonna 20 0 602784 8088 6796 S 0.0 0.0 0:00.51 gnome-keyring-d
2459 daemonna 20 0 374744 5840 5360 S 0.0 0.0 0:00.00 gdm-wayland-ses
2462 daemonna 20 0 10508 4376 3956 S 0.0 0.0 0:00.02 dbus-broker-lau
2465 daemonna 20 0 7568 5436 2660 S 0.0 0.0 0:02.31 dbus-broker
2469 daemonna 20 0 514976 17912 15724 S 0.0 0.1 0:00.02 gnome-session-b
2550 daemonna 20 0 304252 4932 4488 S 0.0 0.0 0:00.00 gnome-session-c
2552 daemonna 20 0 463568 10504 8960 S 0.0 0.0 0:01.42 uresourced
2554 daemonna 20 0 663536 19728 16404 S 0.0 0.1 0:01.76 gnome-session-b
2559 daemonna 20 0 452852 8032 7084 S 0.0 0.0 0:00.03 gvfsd
2565 daemonna 20 0 379980 6352 5696 S 0.0 0.0 0:00.00 gvfsd-fuse
2578 daemonna 9 -11 332108 19728 8940 S 0.0 0.1 1:58.08 pipewire
2579 daemonna 9 -11 546728 18784 13520 S 0.0 0.1 0:01.52 wireplumber
2612 daemonna 20 0 6519024 261016 123516 S 0.0 0.8 15:15.11 gnome-shell
3313 daemonna 20 0 308648 6676 6088 S 0.0 0.0 0:00.00 at-spi-bus-laun
3319 daemonna 20 0 10380 4164 3812 S 0.0 0.0 0:00.00 dbus-broker-lau
3321 daemonna 20 0 5000 2880 2572 S 0.0 0.0 0:00.01 dbus-broker
3410 daemonna 20 0 448516 4964 4536 S 0.0 0.0 0:00.00 xdg-permission-
3414 daemonna 20 0 586228 22748 19792 S 0.0 0.1 0:00.03 gnome-shell-cal
3428 daemonna 20 0 1288132 27832 23444 S 0.0 0.1 0:00.05 evolution-sourc
3436 daemonna 9 -11 270260 39796 6540 S 0.0 0.1 2:48.48 pipewire-pulse
3441 geoclue 20 0 1169228 25004 15460 S 0.0 0.1 0:02.02 geoclue
3445 daemonna 20 0 824168 36968 30260 S 0.0 0.1 0:00.05 goa-daemon
3446 daemonna 20 0 156384 6176 5212 S 0.0 0.0 0:00.05 dconf-service
3455 daemonna 20 0 1334540 32548 27800 S 0.0 0.1 0:00.08 evolution-calen
3494 daemonna 20 0 531568 9344 8152 S 0.0 0.0 0:01.25 goa-identity-se
3502 daemonna 20 0 885276 29364 25852 S 0.0 0.1 0:00.05 evolution-addre
3523 root 20 0 261612 30620 8780 S 0.0 0.1 0:05.29 sssd_kcm
3629 daemonna 20 0 534088 10596 9080 S 0.0 0.0 0:00.06 gvfs-udisks2-vo
3640 daemonna 20 0 448824 6420 5836 S 0.0 0.0 0:00.00 gvfs-mtp-volume
3646 daemonna 20 0 450816 7192 6380 S 0.0 0.0 0:00.00 gvfs-gphoto2-vo
3654 daemonna 20 0 448868 6260 5732 S 0.0 0.0 0:00.00 gvfs-goa-volume
3659 daemonna 20 0 528348 8108 7092 S 0.0 0.0 0:00.26 gvfs-afc-volume
3689 daemonna 20 0 3147128 28932 23088 S 0.0 0.1 0:01.05 gjs
3690 daemonna 20 0 161656 7228 6548 S 0.0 0.0 0:00.37 at-spi2-registr
3756 daemonna 20 0 531364 15992 6768 S 0.0 0.0 0:17.21 ibus-daemon
3758 daemonna 20 0 522876 6468 5880 S 0.0 0.0 0:00.35 gsd-a11y-settin
3761 daemonna 20 0 607604 32964 26320 S 0.0 0.1 0:00.53 gsd-color
3763 daemonna 20 0 540452 11500 10036 S 0.0 0.0 0:00.35 gsd-datetime
3767 daemonna 20 0 525832 7976 6796 S 0.0 0.0 0:00.69 gsd-housekeepin
3770 daemonna 20 0 593828 29680 23892 S 0.0 0.1 0:00.43 gsd-keyboard
3771 daemonna 20 0 738260 32616 26224 S 0.0 0.1 0:01.23 gsd-media-keys
3773 daemonna 20 0 668652 31548 24952 S 0.0 0.1 0:00.76 gsd-power
3779 daemonna 20 0 461964 11480 10132 S 0.0 0.0 0:00.35 gsd-print-notif
3780 daemonna 20 0 670232 6392 5788 S 0.0 0.0 0:00.34 gsd-rfkill
3782 daemonna 20 0 448652 6084 5560 S 0.0 0.0 0:00.36 gsd-screensaver
3786 daemonna 20 0 678996 11336 9588 S 0.0 0.0 0:01.28 gsd-sharing
3790 daemonna 20 0 610668 14160 11972 S 0.0 0.0 0:01.02 gsd-smartcard
3797 daemonna 20 0 531332 9196 8200 S 0.0 0.0 0:00.32 gsd-sound
3799 daemonna 20 0 598524 7240 6548 S 0.0 0.0 0:00.31 gsd-usb-protect
3803 daemonna 20 0 594368 30632 24460 S 0.0 0.1 0:00.44 gsd-wacom
3856 daemonna 20 0 449708 7092 6460 S 0.0 0.0 0:00.00 ibus-dconf
3857 daemonna 20 0 599736 36336 25088 S 0.0 0.1 0:06.66 ibus-extension-
3868 daemonna 20 0 449624 7612 6732 S 0.0 0.0 0:00.35 ibus-portal
3869 daemonna 20 0 3220484 27944 23008 S 0.0 0.1 0:00.04 gjs
3898 daemonna 20 0 1002652 70296 56500 S 0.0 0.2 0:00.26 evolution-alarm
3905 daemonna 20 0 1462032 258204 64496 S 0.0 0.8 0:05.16 gnome-software
3907 daemonna 20 0 232236 6388 5364 S 0.0 0.0 0:00.01 gsd-disk-utilit
3915 daemonna 20 0 304876 5280 4324 S 0.0 0.0 0:00.00 BluejeansHelper
3942 daemonna 20 0 524440 22460 17908 S 0.0 0.1 0:00.16 abrt-applet
4008 daemonna 20 0 375840 7028 6360 S 0.0 0.0 0:04.81 ibus-engine-sim
4014 daemonna 20 0 594136 18544 16268 S 0.0 0.1 0:00.01 gsd-printer
4033 daemonna 20 0 1099432 13916 11732 S 0.0 0.0 0:00.84 xdg-desktop-por
4047 daemonna 20 0 891584 6368 5740 S 0.0 0.0 0:00.40 xdg-document-po
4055 root 20 0 2624 1052 964 S 0.0 0.0 0:00.00 fusermount
4061 daemonna 20 0 2245728 137416 92688 S 0.0 0.4 0:46.93 xdg-desktop-por
4069 root 20 0 467668 12644 10624 S 0.0 0.0 0:00.06 abrt-dbus
4133 daemonna 20 0 594616 30552 24268 S 0.0 0.1 0:00.79 xdg-desktop-por
5101 daemonna 20 0 16.8g 306712 176320 S 0.0 0.9 6:07.29 chromium-browse
5106 daemonna 20 0 6120 3392 3052 S 0.0 0.0 0:07.64 cgroupify
5113 daemonna 20 0 16.0g 4972 4664 S 0.0 0.0 0:00.00 chrome_crashpad
5115 daemonna 20 0 16.0g 4712 4400 S 0.0 0.0 0:00.00 chrome_crashpad
5119 daemonna 20 0 16.5g 55104 43996 S 0.0 0.2 0:00.01 chromium-browse
5120 daemonna 20 0 16.5g 55188 44080 S 0.0 0.2 0:00.02 chromium-browse
5122 daemonna 20 0 16.5g 15016 3872 S 0.0 0.0 0:00.17 chromium-browse
5151 daemonna 20 0 17.5g 229612 95156 S 0.0 0.7 21:47.85 chromium-browse
5152 daemonna 20 0 16.6g 104536 69288 S 0.0 0.3 3:26.70 chromium-browse
5162 daemonna 20 0 16.5g 32556 19272 S 0.0 0.1 0:02.90 chromium-browse
5238 daemonna 20 0 1542160 68200 53892 S 0.0 0.2 0:00.71 gsd-xsettings
5262 daemonna 20 0 519140 29800 23932 S 0.0 0.1 0:00.09 ibus-x11
5316 daemonna 20 0 24.8g 310732 95832 S 0.0 1.0 2:04.96 chromium-browse
5317 daemonna 20 0 24.8g 276800 111900 S 0.0 0.8 2:22.18 chromium-browse
5373 daemonna 20 0 16.6g 62488 50864 S 0.0 0.2 1:22.56 chromium-browse
5388 daemonna 20 0 24.8g 294960 106000 S 0.0 0.9 8:24.07 chromium-browse
5517 daemonna 20 0 28.8g 253000 97756 S 0.0 0.8 2:10.84 chromium-browse
5670 daemonna 20 0 24.8g 162508 89780 S 0.0 0.5 0:10.72 chromium-browse
5803 daemonna 20 0 375408 6232 5624 S 0.0 0.0 0:00.00 gvfsd-metadata
5832 root 20 0 225716 816 496 S 0.0 0.0 0:00.29 gpg-agent
5834 root 20 0 78572 1408 1244 S 0.0 0.0 0:00.00 scdaemon
5849 root 20 0 225716 764 440 S 0.0 0.0 0:00.30 gpg-agent
5851 root 20 0 78572 1412 1244 S 0.0 0.0 0:00.00 scdaemon
5895 root 20 0 225716 940 612 S 0.0 0.0 0:00.29 gpg-agent
5902 root 20 0 78572 1388 1220 S 0.0 0.0 0:00.00 scdaemon
6029 root 20 0 225716 960 636 S 0.0 0.0 0:00.30 gpg-agent
6031 root 20 0 78572 1404 1240 S 0.0 0.0 0:00.00 scdaemon
6044 root 20 0 225716 976 652 S 0.0 0.0 0:00.29 gpg-agent
6046 root 20 0 78572 1332 1164 S 0.0 0.0 0:00.00 scdaemon
6059 root 20 0 225716 784 456 S 0.0 0.0 0:00.29 gpg-agent
6061 root 20 0 78572 1360 1192 S 0.0 0.0 0:00.00 scdaemon
6073 root 20 0 225716 764 436 S 0.0 0.0 0:00.29 gpg-agent
6075 root 20 0 78572 1272 1108 S 0.0 0.0 0:00.00 scdaemon
6092 root 20 0 225716 964 636 S 0.0 0.0 0:00.30 gpg-agent
6094 root 20 0 78572 1404 1240 S 0.0 0.0 0:00.00 scdaemon
6107 root 20 0 225716 956 636 S 0.0 0.0 0:00.29 gpg-agent
6109 root 20 0 78572 1428 1260 S 0.0 0.0 0:00.00 scdaemon
6122 root 20 0 225716 944 616 S 0.0 0.0 0:00.30 gpg-agent
6124 root 20 0 78572 1392 1220 S 0.0 0.0 0:00.00 scdaemon
6134 root 20 0 225716 896 572 S 0.0 0.0 0:00.29 gpg-agent
6136 root 20 0 78572 1372 1208 S 0.0 0.0 0:00.00 scdaemon
6149 root 20 0 225716 796 468 S 0.0 0.0 0:00.29 gpg-agent
6151 root 20 0 78572 1276 1108 S 0.0 0.0 0:00.00 scdaemon
6164 root 20 0 225716 760 436 S 0.0 0.0 0:00.29 gpg-agent
6166 root 20 0 78572 1356 1188 S 0.0 0.0 0:00.00 scdaemon
6179 root 20 0 225716 920 592 S 0.0 0.0 0:00.29 gpg-agent
6181 root 20 0 78572 1356 1188 S 0.0 0.0 0:00.00 scdaemon
6194 root 20 0 225716 776 452 S 0.0 0.0 0:00.29 gpg-agent
6196 root 20 0 78572 1428 1260 S 0.0 0.0 0:00.00 scdaemon
6211 root 20 0 225716 908 580 S 0.0 0.0 0:00.29 gpg-agent
6213 root 20 0 78572 1276 1104 S 0.0 0.0 0:00.00 scdaemon
8264 daemonna 20 0 20.7g 169776 116964 S 0.0 0.5 0:23.19 code
8269 daemonna 20 0 16.4g 46536 38680 S 0.0 0.1 0:00.01 code
8270 daemonna 20 0 16.4g 46404 38556 S 0.0 0.1 0:00.01 code
8272 daemonna 20 0 16.4g 7912 8 S 0.0 0.0 0:00.00 code
8285 daemonna 20 0 16.0g 1612 1452 S 0.0 0.0 0:00.00 chrome_crashpad
8308 daemonna 20 0 16.5g 64976 55864 S 0.0 0.2 0:01.21 code
8411 daemonna 20 0 20.3g 176096 65808 S 0.0 0.5 0:08.33 code
8443 daemonna 20 0 20.3g 87608 61884 S 0.0 0.3 0:10.89 code
8505 daemonna 20 0 20.3g 74076 58292 S 0.0 0.2 0:05.29 code
8550 daemonna 20 0 225588 6692 3744 S 0.0 0.0 0:00.04 bash
8555 daemonna 20 0 20.3g 76776 58060 S 0.0 0.2 0:00.65 code
8624 daemonna 20 0 7944 5368 4312 S 0.0 0.0 0:00.06 ssh-agent
16654 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 dio/nvme0n1p3
18896 daemonna 20 0 527052 8724 7660 S 0.0 0.0 0:00.01 gvfsd-trash
18916 daemonna 20 0 601156 8748 7784 S 0.0 0.0 0:00.02 gvfsd-network
18972 daemonna 20 0 529188 8820 7840 S 0.0 0.0 0:00.01 gvfsd-dnssd
23948 root 20 0 0 0 0 I 0.0 0.0 0:01.66 kworker/3:3-events
30366 daemonna 20 0 24.7g 127660 86524 S 0.0 0.4 0:03.51 chromium-browse
32051 daemonna 20 0 24.7g 86196 68736 S 0.0 0.3 0:00.52 chromium-browse
32181 daemonna 20 0 24.7g 152484 93592 S 0.0 0.5 0:06.21 chromium-browse
32202 daemonna 20 0 24.7g 138956 89528 S 0.0 0.4 0:02.06 chromium-browse
32224 daemonna 20 0 24.7g 203840 98424 S 0.0 0.6 0:06.37 chromium-browse
32246 daemonna 20 0 24.7g 88356 69256 S 0.0 0.3 0:00.71 chromium-browse
32290 daemonna 20 0 24.7g 199636 97604 S 0.0 0.6 0:06.48 chromium-browse
32304 daemonna 20 0 24.7g 88772 70376 S 0.0 0.3 0:00.83 chromium-browse
32310 daemonna 20 0 24.7g 80756 64152 S 0.0 0.2 0:00.46 chromium-browse
32498 daemonna 20 0 32.8g 143656 88736 S 0.0 0.4 0:03.31 chromium-browse
32534 daemonna 20 0 24.7g 85840 67880 S 0.0 0.3 0:00.59 chromium-browse
32549 daemonna 20 0 24.7g 82344 64980 S 0.0 0.3 0:00.54 chromium-browse
33100 daemonna 20 0 767584 54468 43428 S 0.0 0.2 0:00.99 gnome-terminal-
33118 daemonna 20 0 224932 6032 3716 S 0.0 0.0 0:00.03 bash
40390 root 20 0 0 0 0 I 0.0 0.0 0:01.24 kworker/4:1-events
40644 daemonna 20 0 32.8g 386108 224640 S 0.0 1.2 4:18.14 chrome
40652 daemonna 20 0 6120 1504 1280 S 0.0 0.0 0:04.18 cgroupify
40653 daemonna 20 0 221604 992 900 S 0.0 0.0 0:00.00 cat
40654 daemonna 20 0 221604 912 824 S 0.0 0.0 0:00.00 cat
40659 daemonna 20 0 32.0g 3104 2848 S 0.0 0.0 0:00.00 chrome_crashpad
40661 daemonna 20 0 32.0g 1612 1448 S 0.0 0.0 0:00.00 chrome_crashpad
40667 daemonna 20 0 32.5g 60396 49484 S 0.0 0.2 0:00.02 chrome
40668 daemonna 20 0 32.5g 60144 49328 S 0.0 0.2 0:00.02 chrome
40670 daemonna 20 0 32.0g 3832 3508 S 0.0 0.0 0:00.00 nacl_helper
40673 daemonna 20 0 32.5g 16372 5452 S 0.0 0.1 0:00.52 chrome
40696 daemonna 20 0 33.0g 205104 110868 S 0.0 0.6 10:29.82 chrome
40697 daemonna 20 0 32.5g 115376 88136 S 0.0 0.4 1:26.21 chrome
40707 daemonna 20 0 32.5g 51248 36288 S 0.0 0.2 0:02.45 chrome
40727 daemonna 20 0 44.7g 125096 94672 S 0.0 0.4 0:04.37 chrome
40728 daemonna 20 0 40.7g 85604 67960 S 0.0 0.3 0:00.24 chrome
40755 daemonna 20 0 40.7g 139372 91968 S 0.0 0.4 0:01.93 chrome
40779 daemonna 20 0 40.7g 92740 73424 S 0.0 0.3 0:00.30 chrome
40808 daemonna 20 0 40.7g 85148 67680 S 0.0 0.3 0:00.22 chrome
40823 daemonna 20 0 40.7g 99040 80196 S 0.0 0.3 0:00.27 chrome
40830 daemonna 20 0 40.7g 195148 86660 S 0.0 0.6 0:31.98 chrome
40843 daemonna 20 0 40.7g 130408 82912 S 0.0 0.4 0:03.20 chrome
40999 daemonna 20 0 40.7g 140764 95320 S 0.0 0.4 0:04.08 chrome
41013 daemonna 20 0 44.7g 143460 95272 S 0.0 0.4 0:01.34 chrome
41019 daemonna 20 0 40.7g 158792 98404 S 0.0 0.5 0:05.45 chrome
41125 daemonna 20 0 40.7g 136100 92856 S 0.0 0.4 0:03.41 chrome
41131 daemonna 20 0 40.7g 104028 76884 S 0.0 0.3 0:00.76 chrome
41197 daemonna 20 0 32.6g 75868 64368 S 0.0 0.2 0:43.82 chrome
41305 daemonna 20 0 40.7g 100068 76884 S 0.0 0.3 0:01.21 chrome
41359 daemonna 20 0 40.7g 98084 75524 S 0.0 0.3 0:00.56 chrome
42813 root 20 0 0 0 0 I 0.0 0.0 0:02.20 kworker/u24:6-btrfs-endio-write
43623 root 20 0 0 0 0 I 0.0 0.0 0:00.75 kworker/9:1-events
44189 root 20 0 0 0 0 I 0.0 0.0 0:02.10 kworker/u24:8-btrfs-endio-write
44746 root 20 0 0 0 0 I 0.0 0.0 0:01.22 kworker/7:2-events
47396 daemonna 20 0 44.8g 356224 116384 S 0.0 1.1 11:13.99 chrome
48388 daemonna 20 0 24.8g 169852 97828 S 0.0 0.5 0:05.64 chromium-browse
48722 root 20 0 0 0 0 I 0.0 0.0 0:01.69 kworker/u24:0-btrfs-endio-write
49935 root 20 0 0 0 0 I 0.0 0.0 0:01.46 kworker/u24:2-btrfs-endio-write
52166 daemonna 20 0 24.7g 127988 89052 S 0.0 0.4 0:01.43 chromium-browse
54989 root 20 0 0 0 0 I 0.0 0.0 0:01.08 kworker/u24:4-blkcg_punt_bio
55933 daemonna 20 0 24.7g 167360 87472 S 0.0 0.5 0:06.47 chromium-browse
55948 daemonna 20 0 24.7g 151568 86964 S 0.0 0.5 0:10.32 chromium-browse
56011 daemonna 20 0 24.7g 55804 40392 S 0.0 0.2 0:00.03 chromium-browse
56498 root 0 -20 0 0 0 I 0.0 0.0 0:05.66 kworker/u25:3-i915_flip
57423 root 20 0 0 0 0 I 0.0 0.0 0:00.42 kworker/2:0-events
58683 root 20 0 0 0 0 I 0.0 0.0 0:00.70 kworker/u24:3-btrfs-endio-write
58942 daemonna 20 0 846236 44264 35108 S 0.0 0.1 0:00.18 gnome-calendar
59008 daemonna 20 0 46000 7220 6516 S 0.0 0.0 0:00.00 obexd
59044 daemonna 39 19 1189780 53312 19648 S 0.0 0.2 0:01.78 tracker-miner-f
59092 daemonna 20 0 223296 3748 3172 S 0.0 0.0 0:00.02 bash
59440 root 20 0 0 0 0 I 0.0 0.0 0:00.27 kworker/6:0-events
59638 daemonna 10 -10 596432 204564 142252 S 0.0 0.6 0:48.20 steam
59653 daemonna 20 0 272628 22008 3904 S 0.0 0.1 0:00.00 steam
59654 daemonna 20 0 859036 159488 137956 S 0.0 0.5 0:07.97 steamwebhelper
59720 daemonna 20 0 451240 53292 43792 S 0.0 0.2 0:00.01 steamwebhelper
59721 daemonna 20 0 451240 53748 44224 S 0.0 0.2 0:00.02 steamwebhelper
59723 daemonna 20 0 451240 14180 4648 S 0.0 0.0 0:00.00 steamwebhelper
59738 daemonna 20 0 805080 191580 128436 S 0.0 0.6 0:52.27 steamwebhelper
59758 daemonna 20 0 525952 90260 65304 S 0.0 0.3 0:01.10 steamwebhelper
59869 daemonna 20 0 4831172 119436 75984 S 0.0 0.4 0:01.13 steamwebhelper
59875 daemonna 20 0 5079444 335456 239944 S 0.0 1.0 1:21.04 steamwebhelper
60115 daemonna 20 0 4921392 183948 103304 S 0.0 0.6 0:32.77 steamwebhelper
60171 daemonna 20 0 556416 59792 49764 S 0.0 0.2 0:00.48 steamwebhelper
61115 root 0 -20 0 0 0 I 0.0 0.0 0:03.39 kworker/u25:0-rb_allocator
62127 root 20 0 0 0 0 I 0.0 0.0 0:00.64 kworker/0:1-events
62377 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/4:0-events
63187 root 20 0 0 0 0 I 0.0 0.0 0:00.09 kworker/10:2-events
63307 root 20 0 0 0 0 I 0.0 0.0 0:00.39 kworker/u24:5-btrfs-endio-write
63326 root 20 0 0 0 0 I 0.0 0.0 0:01.50 kworker/5:1-events
63387 root 20 0 0 0 0 I 0.0 0.0 0:00.24 kworker/u24:10-btrfs-endio-write
63407 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/11:0-events
63452 daemonna 20 0 40.8g 435104 115776 S 0.0 1.3 3:23.28 chrome
64331 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/9:2
64409 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/1:0
64419 root 20 0 0 0 0 I 0.0 0.0 0:00.09 kworker/u24:9-btrfs-endio-write
64727 root 20 0 0 0 0 I 0.0 0.0 0:00.07 kworker/11:1-events
65067 root 20 0 0 0 0 I 0.0 0.0 0:00.02 kworker/8:1-events
65068 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/10:0-mm_percpu_wq
65226 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/0:2-events
65553 root 20 0 0 0 0 I 0.0 0.0 0:00.02 kworker/1:1-events
65650 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/2:1-events
65705 root 20 0 0 0 0 I 0.0 0.0 0:00.01 kworker/8:0-events
65768 root 20 0 0 0 0 I 0.0 0.0 0:00.17 kworker/5:0-events
65855 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/6:1-events
66019 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/7:0-events
66043 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/3:0
66251 root 20 0 17704 7160 6236 S 0.0 0.0 0:00.00 systemd-userwor
66292 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/10:1-mm_percpu_wq
66293 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/10:3-events
66298 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/0:0-events
66328 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/1:2
66405 root 20 0 17704 7328 6408 S 0.0 0.0 0:00.00 systemd-userwor
66465 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/5:2
66523 root 20 0 0 0 0 I 0.0 0.0 0:00.52 kworker/0:3-events
66551 root 20 0 17704 7160 6236 S 0.0 0.0 0:00.00 systemd-userwor
66567 daemonna 20 0 40.7g 66400 50404 S 0.0 0.2 0:00.03 chrome
66643 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/8:2
66678 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/u25:1-rb_allocator
66784 daemonna 20 0 223032 3436 3156 S 0.0 0.0 0:00.00 top.sh
top - 15:25:29 up 6:39, 1 user, load average: 0.20, 0.36, 0.56
Tasks: 466 total, 1 running, 465 sleeping, 0 stopped, 0 zombie
%Cpu(s): 0.6 us, 0.3 sy, 0.0 ni, 99.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st
MiB Mem : 31938.8 total, 13270.3 free, 6226.0 used, 12442.5 buff/cache
MiB Swap: 8192.0 total, 8192.0 free, 0.0 used. 23849.3 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
59875 daemonna 20 0 5079444 335456 239944 S 3.0 1.0 1:21.10 steamwebhelper
8326 daemonna 20 0 38.7g 270644 118664 S 2.0 0.8 1:34.22 code
59638 daemonna 10 -10 596432 204564 142252 S 1.5 0.6 0:48.23 steam
59738 daemonna 20 0 805080 191580 128436 S 1.5 0.6 0:52.30 steamwebhelper
5152 daemonna 20 0 16.6g 104744 69288 S 1.0 0.3 3:26.72 chromium-browse
2612 daemonna 20 0 6519024 261016 123516 S 0.5 0.8 15:15.12 gnome-shell
3523 root 20 0 261612 30620 8780 S 0.5 0.1 0:05.30 sssd_kcm
5517 daemonna 20 0 28.8g 252988 97752 S 0.5 0.8 2:10.85 chromium-browse
8302 daemonna 20 0 16.8g 111476 81108 S 0.5 0.3 0:30.01 code
8411 daemonna 20 0 20.3g 176212 65808 S 0.5 0.5 0:08.34 code
8443 daemonna 20 0 20.3g 87940 61884 S 0.5 0.3 0:10.90 code
60115 daemonna 20 0 4921392 184212 103304 S 0.5 0.6 0:32.78 steamwebhelper
1 root 20 0 173364 17836 11060 S 0.0 0.1 0:02.21 systemd
2 root 20 0 0 0 0 S 0.0 0.0 0:00.04 kthreadd
3 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 rcu_gp
4 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 rcu_par_gp
5 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 netns
7 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/0:0H-events_highpri
10 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 mm_percpu_wq
11 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tasks_kthread
12 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tasks_rude_kthread
13 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tasks_trace_kthread
14 root 20 0 0 0 0 S 0.0 0.0 0:00.15 ksoftirqd/0
15 root 20 0 0 0 0 I 0.0 0.0 0:29.57 rcu_preempt
16 root rt 0 0 0 0 S 0.0 0.0 0:00.01 migration/0
17 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/0
18 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/1
19 root rt 0 0 0 0 S 0.0 0.0 0:00.16 migration/1
20 root 20 0 0 0 0 S 0.0 0.0 0:00.11 ksoftirqd/1
22 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/1:0H-events_highpri
23 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/2
24 root rt 0 0 0 0 S 0.0 0.0 0:00.16 migration/2
25 root 20 0 0 0 0 S 0.0 0.0 0:00.08 ksoftirqd/2
27 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/2:0H-kblockd
28 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/3
29 root rt 0 0 0 0 S 0.0 0.0 0:00.16 migration/3
30 root 20 0 0 0 0 S 0.0 0.0 0:00.07 ksoftirqd/3
32 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/3:0H-events_highpri
33 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/4
34 root rt 0 0 0 0 S 0.0 0.0 0:00.17 migration/4
35 root 20 0 0 0 0 S 0.0 0.0 0:00.06 ksoftirqd/4
37 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/4:0H-events_highpri
38 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/5
39 root rt 0 0 0 0 S 0.0 0.0 0:00.16 migration/5
40 root 20 0 0 0 0 S 0.0 0.0 0:08.48 ksoftirqd/5
42 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/5:0H-events_highpri
43 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/6
44 root rt 0 0 0 0 S 0.0 0.0 0:00.16 migration/6
45 root 20 0 0 0 0 S 0.0 0.0 0:00.06 ksoftirqd/6
47 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/6:0H-events_highpri
48 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/7
49 root rt 0 0 0 0 S 0.0 0.0 0:00.17 migration/7
50 root 20 0 0 0 0 S 0.0 0.0 0:00.08 ksoftirqd/7
52 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/7:0H-events_highpri
53 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/8
54 root rt 0 0 0 0 S 0.0 0.0 0:00.17 migration/8
55 root 20 0 0 0 0 S 0.0 0.0 0:00.07 ksoftirqd/8
57 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/8:0H-events_highpri
58 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/9
59 root rt 0 0 0 0 S 0.0 0.0 0:00.17 migration/9
60 root 20 0 0 0 0 S 0.0 0.0 0:00.19 ksoftirqd/9
62 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/9:0H-events_highpri
63 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/10
64 root rt 0 0 0 0 S 0.0 0.0 0:00.17 migration/10
65 root 20 0 0 0 0 S 0.0 0.0 0:00.06 ksoftirqd/10
67 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/10:0H-events_highpri
68 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/11
69 root rt 0 0 0 0 S 0.0 0.0 0:00.17 migration/11
70 root 20 0 0 0 0 S 0.0 0.0 0:00.06 ksoftirqd/11
72 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/11:0H-events_highpri
73 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kdevtmpfs
74 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 inet_frag_wq
75 root 20 0 0 0 0 S 0.0 0.0 0:00.01 kauditd
76 root 20 0 0 0 0 S 0.0 0.0 0:00.00 oom_reaper
77 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 writeback
78 root 20 0 0 0 0 S 0.0 0.0 0:00.19 kcompactd0
79 root 25 5 0 0 0 S 0.0 0.0 0:00.00 ksmd
80 root 39 19 0 0 0 S 0.0 0.0 0:00.00 khugepaged
81 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 cryptd
82 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kintegrityd
83 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kblockd
84 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 blkcg_punt_bio
86 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 tpm_dev_wq
87 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 ata_sff
88 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 md
89 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 edac-poller
92 root -51 0 0 0 0 S 0.0 0.0 0:00.00 watchdogd
93 root 0 -20 0 0 0 I 0.0 0.0 0:00.42 kworker/0:1H-kblockd
94 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kswapd0
102 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kthrotld
107 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/123-aerdrv
108 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/123-pcie-dpc
109 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/124-aerdrv
110 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/124-pcie-dpc
111 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/125-aerdrv
112 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/125-pcie-dpc
113 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/126-aerdrv
114 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/126-pcie-dpc
124 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 acpi_thermal_pm
125 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_0
126 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 scsi_tmf_0
128 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 dm_bufio_cache
129 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 mld
130 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 ipv6_addrconf
135 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kstrp
148 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 zswap-shrink
253 root 0 -20 0 0 0 I 0.0 0.0 0:00.45 kworker/2:1H-kblockd
292 root 0 -20 0 0 0 I 0.0 0.0 0:00.34 kworker/1:1H-kblockd
301 root 0 -20 0 0 0 I 0.0 0.0 0:00.56 kworker/8:1H-kblockd
306 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 ipmi-msghandler
310 root 0 -20 0 0 0 I 0.0 0.0 0:00.27 kworker/3:1H-kblockd
312 root 0 -20 0 0 0 I 0.0 0.0 0:00.68 kworker/7:1H-events_highpri
313 root 0 -20 0 0 0 I 0.0 0.0 0:00.54 kworker/10:1H-kblockd
329 root 0 -20 0 0 0 I 0.0 0.0 0:00.80 kworker/6:1H-events_highpri
413 root 0 -20 0 0 0 I 0.0 0.0 0:00.27 kworker/11:1H-kblockd
458 root 0 -20 0 0 0 I 0.0 0.0 0:00.71 kworker/9:1H-kblockd
474 root -51 0 0 0 0 S 0.0 0.0 0:03.60 irq/74-ELAN0710:01
475 root 0 -20 0 0 0 I 0.0 0.0 0:00.25 kworker/4:1H-kblockd
476 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 nvme-wq
477 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 nvme-reset-wq
478 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 nvme-delete-wq
500 root -51 0 0 0 0 S 0.0 0.0 0:00.09 irq/18-alcor_sdmmc
501 root 0 -20 0 0 0 I 0.0 0.0 0:00.47 kworker/5:1H-events_highpri
502 root -51 0 0 0 0 S 0.0 0.0 0:00.01 card0-crtc0
503 root -51 0 0 0 0 S 0.0 0.0 0:00.00 card0-crtc1
504 root -51 0 0 0 0 S 0.0 0.0 0:00.00 card0-crtc2
514 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-worker
515 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-worker-hi
516 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-delalloc
517 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-flush_del
518 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-cache
519 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-fixup
520 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-endio
521 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-endio-met
522 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-endio-met
523 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-endio-rai
524 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-rmw
525 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-endio-wri
526 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-freespace
527 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-delayed-m
528 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 btrfs-qgroup-re
529 root 20 0 0 0 0 S 0.0 0.0 0:00.03 btrfs-cleaner
530 root 20 0 0 0 0 S 0.0 0.0 0:28.25 btrfs-transaction
641 root 20 0 116912 19932 18044 S 0.0 0.1 0:00.84 systemd-journal
656 root 20 0 37588 14624 8932 S 0.0 0.0 0:00.19 systemd-udevd
658 root 20 0 17356 7492 6568 S 0.0 0.0 0:00.07 systemd-userdbd
730 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/144-mei_me
737 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 cfg80211
741 root -51 0 0 0 0 S 0.0 0.0 0:02.77 irq/145-iwlwifi:default_queue
742 root -51 0 0 0 0 S 0.0 0.0 0:00.23 irq/146-iwlwifi:queue_1
743 root -51 0 0 0 0 S 0.0 0.0 0:00.31 irq/147-iwlwifi:queue_2
744 root -51 0 0 0 0 S 0.0 0.0 0:00.25 irq/148-iwlwifi:queue_3
745 root -51 0 0 0 0 S 0.0 0.0 0:00.25 irq/149-iwlwifi:queue_4
746 root -51 0 0 0 0 S 0.0 0.0 0:00.22 irq/150-iwlwifi:queue_5
747 root -51 0 0 0 0 S 0.0 0.0 0:00.23 irq/151-iwlwifi:queue_6
748 root -51 0 0 0 0 S 0.0 0.0 0:02.00 irq/152-iwlwifi:queue_7
749 root -51 0 0 0 0 S 0.0 0.0 0:00.45 irq/153-iwlwifi:queue_8
750 root -51 0 0 0 0 S 0.0 0.0 0:00.23 irq/154-iwlwifi:queue_9
751 root -51 0 0 0 0 S 0.0 0.0 0:00.14 irq/155-iwlwifi:queue_10
752 root -51 0 0 0 0 S 0.0 0.0 0:00.22 irq/156-iwlwifi:queue_11
753 root -51 0 0 0 0 S 0.0 0.0 0:00.15 irq/157-iwlwifi:queue_12
754 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/158-iwlwifi:exception
790 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 mmc_complete
841 root 20 0 0 0 0 S 0.0 0.0 0:00.00 jbd2/nvme0n1p2-8
842 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 ext4-rsv-conver
865 systemd+ 20 0 17656 8496 7512 S 0.0 0.0 0:15.55 systemd-oomd
866 systemd+ 20 0 26692 17648 12176 S 0.0 0.1 0:03.63 systemd-resolve
867 root 16 -4 18032 2388 1668 S 0.0 0.0 0:00.02 auditd
885 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 rpciod
886 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 xprtiod
888 dbus 20 0 11008 5044 3980 S 0.0 0.0 0:00.03 dbus-broker-lau
889 dbus 20 0 11280 7056 2508 S 0.0 0.0 0:03.14 dbus-broker
891 avahi 20 0 8664 4292 3920 S 0.0 0.0 0:00.23 avahi-daemon
892 root 20 0 9712 5228 4808 S 0.0 0.0 0:00.03 bluetoothd
907 root -2 0 229640 4680 4264 S 0.0 0.0 0:00.01 low-memory-moni
913 root 20 0 2764 1872 1724 S 0.0 0.0 0:00.00 mcelog
924 polkitd 20 0 2932548 29256 20552 S 0.0 0.1 0:04.80 polkitd
927 root 20 0 452452 7432 6704 S 0.0 0.0 0:00.03 power-profiles-
929 daemon 20 0 319772 9460 7336 S 0.0 0.0 0:32.81 rngd
932 rtkit 21 1 153976 1600 1360 S 0.0 0.0 0:00.20 rtkit-daemon
939 root 20 0 526564 7968 6780 S 0.0 0.0 0:00.06 accounts-daemon
943 root 20 0 448848 6652 6040 S 0.0 0.0 0:00.02 switcheroo-cont
949 root 20 0 17888 8652 7568 S 0.0 0.0 0:00.50 systemd-homed
950 root 20 0 53456 12808 9280 S 0.0 0.0 0:01.00 systemd-logind
954 root 20 0 17672 8388 7344 S 0.0 0.0 0:00.61 systemd-machine
957 root -2 0 0 0 0 S 0.0 0.0 0:00.00 psimon
958 root 20 0 458228 9984 9176 S 0.0 0.0 0:01.35 thermald
959 root 20 0 395420 14756 11740 S 0.0 0.0 0:01.13 udisksd
963 root 20 0 455964 9612 7756 S 0.0 0.0 0:03.62 upowerd
1043 avahi 20 0 8396 372 0 S 0.0 0.0 0:00.00 avahi-daemon
1079 root 39 19 4804 3040 2744 S 0.0 0.0 0:00.02 alsactl
1090 chrony 20 0 85092 3704 3092 S 0.0 0.0 0:00.05 chronyd
1097 root 20 0 467104 12944 10752 S 0.0 0.0 0:00.05 abrtd
1098 root 20 0 390416 12276 10372 S 0.0 0.0 0:00.06 ModemManager
1101 root 20 0 352228 42936 19856 S 0.0 0.1 0:00.32 firewalld
1169 root 20 0 1085056 26264 24216 S 0.0 0.1 0:00.15 abrt-dump-journ
1170 root 20 0 1068780 52468 50308 S 0.0 0.2 0:00.15 abrt-dump-journ
1171 root 20 0 1068664 50560 48456 S 0.0 0.2 0:00.15 abrt-dump-journ
1209 root 20 0 476136 22840 18832 S 0.0 0.1 0:03.12 NetworkManager
1225 root 20 0 247828 9472 7824 S 0.0 0.0 0:00.01 cupsd
1237 root 20 0 270860 3716 2852 S 0.0 0.0 0:00.01 gssproxy
1260 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 nvkm-disp
1263 root -51 0 0 0 0 S 0.0 0.0 0:00.00 card1-crtc0
1264 root -51 0 0 0 0 S 0.0 0.0 0:00.00 card1-crtc1
1265 root -51 0 0 0 0 S 0.0 0.0 0:00.00 card1-crtc2
1266 root -51 0 0 0 0 S 0.0 0.0 0:00.00 card1-crtc3
1273 root 20 0 16468 11640 9636 S 0.0 0.0 0:00.42 wpa_supplicant
1474 root 20 0 3420 1068 964 S 0.0 0.0 0:00.00 atd
1475 root 20 0 224436 3756 2904 S 0.0 0.0 0:00.02 crond
1476 root 20 0 453664 9080 7960 S 0.0 0.0 0:00.02 gdm
1496 root 20 0 233936 5596 4884 S 0.0 0.0 0:00.02 uresourced
1603 dnsmasq 20 0 10116 2480 2088 S 0.0 0.0 0:00.00 dnsmasq
1604 root 20 0 10012 372 0 S 0.0 0.0 0:00.00 dnsmasq
1653 dnsmasq 20 0 10116 2520 2128 S 0.0 0.0 0:00.00 dnsmasq
1655 root 20 0 10012 372 0 S 0.0 0.0 0:00.00 dnsmasq
1772 root 20 0 1214872 597152 27256 S 0.0 1.8 0:30.08 packagekitd
1921 root 20 0 618628 7632 6684 S 0.0 0.0 0:00.01 pcscd
2001 colord 20 0 532460 13764 10084 S 0.0 0.0 0:00.08 colord
2061 root 10 -10 0 0 0 S 0.0 0.0 0:00.00 krfcommd
2241 root 20 0 388368 12952 10612 S 0.0 0.0 0:00.02 gdm-session-wor
2261 daemonna 20 0 23340 14936 10700 S 0.0 0.0 0:02.50 systemd
2271 daemonna 20 0 176988 7044 8 S 0.0 0.0 0:00.00 (sd-pam)
2361 daemonna 20 0 602784 8088 6796 S 0.0 0.0 0:00.51 gnome-keyring-d
2459 daemonna 20 0 374744 5840 5360 S 0.0 0.0 0:00.00 gdm-wayland-ses
2462 daemonna 20 0 10508 4376 3956 S 0.0 0.0 0:00.02 dbus-broker-lau
2465 daemonna 20 0 7568 5436 2660 S 0.0 0.0 0:02.31 dbus-broker
2469 daemonna 20 0 514976 17912 15724 S 0.0 0.1 0:00.02 gnome-session-b
2550 daemonna 20 0 304252 4932 4488 S 0.0 0.0 0:00.00 gnome-session-c
2552 daemonna 20 0 463568 10504 8960 S 0.0 0.0 0:01.42 uresourced
2554 daemonna 20 0 663536 19728 16404 S 0.0 0.1 0:01.76 gnome-session-b
2559 daemonna 20 0 452852 8032 7084 S 0.0 0.0 0:00.03 gvfsd
2565 daemonna 20 0 379980 6352 5696 S 0.0 0.0 0:00.00 gvfsd-fuse
2578 daemonna 9 -11 332108 19728 8940 S 0.0 0.1 1:58.08 pipewire
2579 daemonna 9 -11 546728 18784 13520 S 0.0 0.1 0:01.52 wireplumber
3313 daemonna 20 0 308648 6676 6088 S 0.0 0.0 0:00.00 at-spi-bus-laun
3319 daemonna 20 0 10380 4164 3812 S 0.0 0.0 0:00.00 dbus-broker-lau
3321 daemonna 20 0 5000 2880 2572 S 0.0 0.0 0:00.01 dbus-broker
3410 daemonna 20 0 448516 4964 4536 S 0.0 0.0 0:00.00 xdg-permission-
3414 daemonna 20 0 586228 22748 19792 S 0.0 0.1 0:00.03 gnome-shell-cal
3428 daemonna 20 0 1288132 27832 23444 S 0.0 0.1 0:00.05 evolution-sourc
3436 daemonna 9 -11 270260 39796 6540 S 0.0 0.1 2:48.48 pipewire-pulse
3441 geoclue 20 0 1169228 25004 15460 S 0.0 0.1 0:02.02 geoclue
3445 daemonna 20 0 824168 36968 30260 S 0.0 0.1 0:00.05 goa-daemon
3446 daemonna 20 0 156384 6176 5212 S 0.0 0.0 0:00.05 dconf-service
3455 daemonna 20 0 1334540 32548 27800 S 0.0 0.1 0:00.08 evolution-calen
3494 daemonna 20 0 531568 9344 8152 S 0.0 0.0 0:01.25 goa-identity-se
3502 daemonna 20 0 885276 29364 25852 S 0.0 0.1 0:00.05 evolution-addre
3629 daemonna 20 0 534088 10596 9080 S 0.0 0.0 0:00.06 gvfs-udisks2-vo
3640 daemonna 20 0 448824 6420 5836 S 0.0 0.0 0:00.00 gvfs-mtp-volume
3646 daemonna 20 0 450816 7192 6380 S 0.0 0.0 0:00.00 gvfs-gphoto2-vo
3654 daemonna 20 0 448868 6260 5732 S 0.0 0.0 0:00.00 gvfs-goa-volume
3659 daemonna 20 0 528348 8108 7092 S 0.0 0.0 0:00.26 gvfs-afc-volume
3689 daemonna 20 0 3147128 28932 23088 S 0.0 0.1 0:01.05 gjs
3690 daemonna 20 0 161656 7228 6548 S 0.0 0.0 0:00.37 at-spi2-registr
3756 daemonna 20 0 531364 15992 6768 S 0.0 0.0 0:17.21 ibus-daemon
3758 daemonna 20 0 522876 6468 5880 S 0.0 0.0 0:00.35 gsd-a11y-settin
3761 daemonna 20 0 607604 32964 26320 S 0.0 0.1 0:00.53 gsd-color
3763 daemonna 20 0 540452 11500 10036 S 0.0 0.0 0:00.35 gsd-datetime
3767 daemonna 20 0 525832 7976 6796 S 0.0 0.0 0:00.69 gsd-housekeepin
3770 daemonna 20 0 593828 29680 23892 S 0.0 0.1 0:00.43 gsd-keyboard
3771 daemonna 20 0 738260 32616 26224 S 0.0 0.1 0:01.23 gsd-media-keys
3773 daemonna 20 0 668652 31548 24952 S 0.0 0.1 0:00.76 gsd-power
3779 daemonna 20 0 461964 11480 10132 S 0.0 0.0 0:00.35 gsd-print-notif
3780 daemonna 20 0 670232 6392 5788 S 0.0 0.0 0:00.34 gsd-rfkill
3782 daemonna 20 0 448652 6084 5560 S 0.0 0.0 0:00.36 gsd-screensaver
3786 daemonna 20 0 678996 11336 9588 S 0.0 0.0 0:01.28 gsd-sharing
3790 daemonna 20 0 610668 14160 11972 S 0.0 0.0 0:01.02 gsd-smartcard
3797 daemonna 20 0 531332 9196 8200 S 0.0 0.0 0:00.32 gsd-sound
3799 daemonna 20 0 598524 7240 6548 S 0.0 0.0 0:00.31 gsd-usb-protect
3803 daemonna 20 0 594368 30632 24460 S 0.0 0.1 0:00.44 gsd-wacom
3856 daemonna 20 0 449708 7092 6460 S 0.0 0.0 0:00.00 ibus-dconf
3857 daemonna 20 0 599736 36336 25088 S 0.0 0.1 0:06.66 ibus-extension-
3868 daemonna 20 0 449624 7612 6732 S 0.0 0.0 0:00.35 ibus-portal
3869 daemonna 20 0 3220484 27944 23008 S 0.0 0.1 0:00.04 gjs
3898 daemonna 20 0 1002652 70296 56500 S 0.0 0.2 0:00.26 evolution-alarm
3905 daemonna 20 0 1462032 258204 64496 S 0.0 0.8 0:05.16 gnome-software
3907 daemonna 20 0 232236 6388 5364 S 0.0 0.0 0:00.01 gsd-disk-utilit
3915 daemonna 20 0 304876 5280 4324 S 0.0 0.0 0:00.00 BluejeansHelper
3942 daemonna 20 0 524440 22460 17908 S 0.0 0.1 0:00.16 abrt-applet
4008 daemonna 20 0 375840 7028 6360 S 0.0 0.0 0:04.81 ibus-engine-sim
4014 daemonna 20 0 594136 18544 16268 S 0.0 0.1 0:00.01 gsd-printer
4033 daemonna 20 0 1099432 13916 11732 S 0.0 0.0 0:00.84 xdg-desktop-por
4047 daemonna 20 0 891584 6368 5740 S 0.0 0.0 0:00.40 xdg-document-po
4055 root 20 0 2624 1052 964 S 0.0 0.0 0:00.00 fusermount
4061 daemonna 20 0 2245728 137416 92688 S 0.0 0.4 0:46.93 xdg-desktop-por
4069 root 20 0 467668 12644 10624 S 0.0 0.0 0:00.06 abrt-dbus
4133 daemonna 20 0 594616 30552 24268 S 0.0 0.1 0:00.79 xdg-desktop-por
5101 daemonna 20 0 16.8g 306696 176320 S 0.0 0.9 6:07.29 chromium-browse
5106 daemonna 20 0 6120 3392 3052 S 0.0 0.0 0:07.64 cgroupify
5113 daemonna 20 0 16.0g 4972 4664 S 0.0 0.0 0:00.00 chrome_crashpad
5115 daemonna 20 0 16.0g 4712 4400 S 0.0 0.0 0:00.00 chrome_crashpad
5119 daemonna 20 0 16.5g 55104 43996 S 0.0 0.2 0:00.01 chromium-browse
5120 daemonna 20 0 16.5g 55188 44080 S 0.0 0.2 0:00.02 chromium-browse
5122 daemonna 20 0 16.5g 15016 3872 S 0.0 0.0 0:00.17 chromium-browse
5151 daemonna 20 0 17.5g 229612 95156 S 0.0 0.7 21:47.85 chromium-browse
5162 daemonna 20 0 16.5g 32556 19272 S 0.0 0.1 0:02.90 chromium-browse
5211 daemonna 20 0 1120408 109660 67460 S 0.0 0.3 5:15.65 Xwayland
5238 daemonna 20 0 1542160 68200 53892 S 0.0 0.2 0:00.71 gsd-xsettings
5262 daemonna 20 0 519140 29800 23932 S 0.0 0.1 0:00.09 ibus-x11
5316 daemonna 20 0 24.8g 310732 95832 S 0.0 1.0 2:04.96 chromium-browse
5317 daemonna 20 0 24.8g 276800 111900 S 0.0 0.8 2:22.18 chromium-browse
5373 daemonna 20 0 16.6g 62488 50864 S 0.0 0.2 1:22.56 chromium-browse
5388 daemonna 20 0 24.8g 294960 106000 S 0.0 0.9 8:24.07 chromium-browse
5670 daemonna 20 0 24.8g 162508 89780 S 0.0 0.5 0:10.72 chromium-browse
5803 daemonna 20 0 375408 6232 5624 S 0.0 0.0 0:00.00 gvfsd-metadata
5832 root 20 0 225716 816 496 S 0.0 0.0 0:00.29 gpg-agent
5834 root 20 0 78572 1408 1244 S 0.0 0.0 0:00.00 scdaemon
5849 root 20 0 225716 764 440 S 0.0 0.0 0:00.30 gpg-agent
5851 root 20 0 78572 1412 1244 S 0.0 0.0 0:00.00 scdaemon
5895 root 20 0 225716 940 612 S 0.0 0.0 0:00.29 gpg-agent
5902 root 20 0 78572 1388 1220 S 0.0 0.0 0:00.00 scdaemon
6029 root 20 0 225716 960 636 S 0.0 0.0 0:00.30 gpg-agent
6031 root 20 0 78572 1404 1240 S 0.0 0.0 0:00.00 scdaemon
6044 root 20 0 225716 976 652 S 0.0 0.0 0:00.29 gpg-agent
6046 root 20 0 78572 1332 1164 S 0.0 0.0 0:00.00 scdaemon
6059 root 20 0 225716 784 456 S 0.0 0.0 0:00.29 gpg-agent
6061 root 20 0 78572 1360 1192 S 0.0 0.0 0:00.00 scdaemon
6073 root 20 0 225716 764 436 S 0.0 0.0 0:00.29 gpg-agent
6075 root 20 0 78572 1272 1108 S 0.0 0.0 0:00.00 scdaemon
6092 root 20 0 225716 964 636 S 0.0 0.0 0:00.30 gpg-agent
6094 root 20 0 78572 1404 1240 S 0.0 0.0 0:00.00 scdaemon
6107 root 20 0 225716 956 636 S 0.0 0.0 0:00.29 gpg-agent
6109 root 20 0 78572 1428 1260 S 0.0 0.0 0:00.00 scdaemon
6122 root 20 0 225716 944 616 S 0.0 0.0 0:00.30 gpg-agent
6124 root 20 0 78572 1392 1220 S 0.0 0.0 0:00.00 scdaemon
6134 root 20 0 225716 896 572 S 0.0 0.0 0:00.29 gpg-agent
6136 root 20 0 78572 1372 1208 S 0.0 0.0 0:00.00 scdaemon
6149 root 20 0 225716 796 468 S 0.0 0.0 0:00.29 gpg-agent
6151 root 20 0 78572 1276 1108 S 0.0 0.0 0:00.00 scdaemon
6164 root 20 0 225716 760 436 S 0.0 0.0 0:00.29 gpg-agent
6166 root 20 0 78572 1356 1188 S 0.0 0.0 0:00.00 scdaemon
6179 root 20 0 225716 920 592 S 0.0 0.0 0:00.29 gpg-agent
6181 root 20 0 78572 1356 1188 S 0.0 0.0 0:00.00 scdaemon
6194 root 20 0 225716 776 452 S 0.0 0.0 0:00.29 gpg-agent
6196 root 20 0 78572 1428 1260 S 0.0 0.0 0:00.00 scdaemon
6211 root 20 0 225716 908 580 S 0.0 0.0 0:00.29 gpg-agent
6213 root 20 0 78572 1276 1104 S 0.0 0.0 0:00.00 scdaemon
8264 daemonna 20 0 20.7g 169852 116964 S 0.0 0.5 0:23.19 code
8269 daemonna 20 0 16.4g 46536 38680 S 0.0 0.1 0:00.01 code
8270 daemonna 20 0 16.4g 46404 38556 S 0.0 0.1 0:00.01 code
8272 daemonna 20 0 16.4g 7912 8 S 0.0 0.0 0:00.00 code
8285 daemonna 20 0 16.0g 1612 1452 S 0.0 0.0 0:00.00 chrome_crashpad
8308 daemonna 20 0 16.5g 64976 55864 S 0.0 0.2 0:01.21 code
8425 daemonna 20 0 28.7g 146580 99300 S 0.0 0.4 0:18.61 code
8505 daemonna 20 0 20.3g 74076 58292 S 0.0 0.2 0:05.29 code
8550 daemonna 20 0 225588 6692 3744 S 0.0 0.0 0:00.04 bash
8555 daemonna 20 0 20.3g 76776 58060 S 0.0 0.2 0:00.65 code
8624 daemonna 20 0 7944 5368 4312 S 0.0 0.0 0:00.06 ssh-agent
16654 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 dio/nvme0n1p3
18896 daemonna 20 0 527052 8724 7660 S 0.0 0.0 0:00.01 gvfsd-trash
18916 daemonna 20 0 601156 8748 7784 S 0.0 0.0 0:00.02 gvfsd-network
18972 daemonna 20 0 529188 8820 7840 S 0.0 0.0 0:00.01 gvfsd-dnssd
23948 root 20 0 0 0 0 I 0.0 0.0 0:01.66 kworker/3:3-events
30366 daemonna 20 0 24.7g 127660 86524 S 0.0 0.4 0:03.51 chromium-browse
32051 daemonna 20 0 24.7g 86196 68736 S 0.0 0.3 0:00.52 chromium-browse
32181 daemonna 20 0 24.7g 152484 93592 S 0.0 0.5 0:06.21 chromium-browse
32202 daemonna 20 0 24.7g 138956 89528 S 0.0 0.4 0:02.06 chromium-browse
32224 daemonna 20 0 24.7g 203840 98424 S 0.0 0.6 0:06.37 chromium-browse
32246 daemonna 20 0 24.7g 88356 69256 S 0.0 0.3 0:00.71 chromium-browse
32290 daemonna 20 0 24.7g 199520 97604 S 0.0 0.6 0:06.48 chromium-browse
32304 daemonna 20 0 24.7g 88772 70376 S 0.0 0.3 0:00.83 chromium-browse
32310 daemonna 20 0 24.7g 80756 64152 S 0.0 0.2 0:00.46 chromium-browse
32498 daemonna 20 0 32.8g 143656 88736 S 0.0 0.4 0:03.31 chromium-browse
32534 daemonna 20 0 24.7g 85840 67880 S 0.0 0.3 0:00.59 chromium-browse
32549 daemonna 20 0 24.7g 82344 64980 S 0.0 0.3 0:00.54 chromium-browse
33100 daemonna 20 0 767584 54468 43428 S 0.0 0.2 0:00.99 gnome-terminal-
33118 daemonna 20 0 224932 6032 3716 S 0.0 0.0 0:00.03 bash
40390 root 20 0 0 0 0 I 0.0 0.0 0:01.24 kworker/4:1-events
40644 daemonna 20 0 32.8g 386068 224640 S 0.0 1.2 4:18.14 chrome
40652 daemonna 20 0 6120 1504 1280 S 0.0 0.0 0:04.18 cgroupify
40653 daemonna 20 0 221604 992 900 S 0.0 0.0 0:00.00 cat
40654 daemonna 20 0 221604 912 824 S 0.0 0.0 0:00.00 cat
40659 daemonna 20 0 32.0g 3104 2848 S 0.0 0.0 0:00.00 chrome_crashpad
40661 daemonna 20 0 32.0g 1612 1448 S 0.0 0.0 0:00.00 chrome_crashpad
40667 daemonna 20 0 32.5g 60396 49484 S 0.0 0.2 0:00.02 chrome
40668 daemonna 20 0 32.5g 60144 49328 S 0.0 0.2 0:00.02 chrome
40670 daemonna 20 0 32.0g 3832 3508 S 0.0 0.0 0:00.00 nacl_helper
40673 daemonna 20 0 32.5g 16372 5452 S 0.0 0.1 0:00.52 chrome
40696 daemonna 20 0 33.0g 205104 110868 S 0.0 0.6 10:29.82 chrome
40697 daemonna 20 0 32.5g 115376 88136 S 0.0 0.4 1:26.21 chrome
40707 daemonna 20 0 32.5g 51248 36288 S 0.0 0.2 0:02.45 chrome
40727 daemonna 20 0 44.7g 125096 94672 S 0.0 0.4 0:04.37 chrome
40728 daemonna 20 0 40.7g 85604 67960 S 0.0 0.3 0:00.24 chrome
40755 daemonna 20 0 40.7g 139372 91968 S 0.0 0.4 0:01.93 chrome
40779 daemonna 20 0 40.7g 92740 73424 S 0.0 0.3 0:00.30 chrome
40808 daemonna 20 0 40.7g 85148 67680 S 0.0 0.3 0:00.22 chrome
40823 daemonna 20 0 40.7g 99040 80196 S 0.0 0.3 0:00.27 chrome
40830 daemonna 20 0 40.7g 195148 86660 S 0.0 0.6 0:31.98 chrome
40843 daemonna 20 0 40.7g 130408 82912 S 0.0 0.4 0:03.20 chrome
40999 daemonna 20 0 40.7g 140764 95320 S 0.0 0.4 0:04.08 chrome
41013 daemonna 20 0 44.7g 143460 95272 S 0.0 0.4 0:01.34 chrome
41019 daemonna 20 0 40.7g 158792 98404 S 0.0 0.5 0:05.45 chrome
41125 daemonna 20 0 40.7g 136100 92856 S 0.0 0.4 0:03.41 chrome
41131 daemonna 20 0 40.7g 104028 76884 S 0.0 0.3 0:00.76 chrome
41197 daemonna 20 0 32.6g 75868 64368 S 0.0 0.2 0:43.82 chrome
41305 daemonna 20 0 40.7g 100068 76884 S 0.0 0.3 0:01.21 chrome
41359 daemonna 20 0 40.7g 98084 75524 S 0.0 0.3 0:00.56 chrome
42813 root 20 0 0 0 0 I 0.0 0.0 0:02.20 kworker/u24:6-btrfs-endio-write
43623 root 20 0 0 0 0 I 0.0 0.0 0:00.75 kworker/9:1-events
44189 root 20 0 0 0 0 I 0.0 0.0 0:02.10 kworker/u24:8-btrfs-endio-write
44746 root 20 0 0 0 0 I 0.0 0.0 0:01.22 kworker/7:2-events
47396 daemonna 20 0 44.8g 356224 116384 S 0.0 1.1 11:13.99 chrome
48388 daemonna 20 0 24.8g 169852 97828 S 0.0 0.5 0:05.64 chromium-browse
48722 root 20 0 0 0 0 I 0.0 0.0 0:01.69 kworker/u24:0-btrfs-endio-write
49935 root 20 0 0 0 0 I 0.0 0.0 0:01.46 kworker/u24:2-events_unbound
52166 daemonna 20 0 24.7g 127988 89052 S 0.0 0.4 0:01.43 chromium-browse
54989 root 20 0 0 0 0 I 0.0 0.0 0:01.08 kworker/u24:4-blkcg_punt_bio
55933 daemonna 20 0 24.7g 167360 87472 S 0.0 0.5 0:06.47 chromium-browse
55948 daemonna 20 0 24.7g 151568 86964 S 0.0 0.5 0:10.32 chromium-browse
56011 daemonna 20 0 24.7g 55804 40392 S 0.0 0.2 0:00.03 chromium-browse
56498 root 0 -20 0 0 0 I 0.0 0.0 0:05.66 kworker/u25:3-i915_flip
57423 root 20 0 0 0 0 I 0.0 0.0 0:00.42 kworker/2:0-events
58683 root 20 0 0 0 0 I 0.0 0.0 0:00.70 kworker/u24:3-flush-btrfs-1
58942 daemonna 20 0 846236 44264 35108 S 0.0 0.1 0:00.18 gnome-calendar
59008 daemonna 20 0 46000 7220 6516 S 0.0 0.0 0:00.00 obexd
59044 daemonna 39 19 1189780 53312 19648 S 0.0 0.2 0:01.78 tracker-miner-f
59092 daemonna 20 0 223296 3748 3172 S 0.0 0.0 0:00.02 bash
59440 root 20 0 0 0 0 I 0.0 0.0 0:00.27 kworker/6:0-events
59653 daemonna 20 0 272628 22008 3904 S 0.0 0.1 0:00.00 steam
59654 daemonna 20 0 859036 159488 137956 S 0.0 0.5 0:07.97 steamwebhelper
59720 daemonna 20 0 451240 53292 43792 S 0.0 0.2 0:00.01 steamwebhelper
59721 daemonna 20 0 451240 53748 44224 S 0.0 0.2 0:00.02 steamwebhelper
59723 daemonna 20 0 451240 14180 4648 S 0.0 0.0 0:00.00 steamwebhelper
59758 daemonna 20 0 525952 90260 65304 S 0.0 0.3 0:01.10 steamwebhelper
59869 daemonna 20 0 4831172 119436 75984 S 0.0 0.4 0:01.13 steamwebhelper
60171 daemonna 20 0 556416 59792 49764 S 0.0 0.2 0:00.48 steamwebhelper
61115 root 0 -20 0 0 0 I 0.0 0.0 0:03.39 kworker/u25:0-rb_allocator
62127 root 20 0 0 0 0 I 0.0 0.0 0:00.64 kworker/0:1-events
62377 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/4:0-events
63187 root 20 0 0 0 0 I 0.0 0.0 0:00.09 kworker/10:2-events
63307 root 20 0 0 0 0 I 0.0 0.0 0:00.39 kworker/u24:5-btrfs-endio-write
63326 root 20 0 0 0 0 I 0.0 0.0 0:01.50 kworker/5:1-events
63387 root 20 0 0 0 0 I 0.0 0.0 0:00.24 kworker/u24:10-btrfs-endio-write
63407 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/11:0-events
63452 daemonna 20 0 40.8g 435104 115776 S 0.0 1.3 3:23.28 chrome
64331 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/9:2
64409 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/1:0
64419 root 20 0 0 0 0 I 0.0 0.0 0:00.09 kworker/u24:9-btrfs-endio-write
64727 root 20 0 0 0 0 I 0.0 0.0 0:00.07 kworker/11:1-events
65067 root 20 0 0 0 0 I 0.0 0.0 0:00.02 kworker/8:1-events
65068 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/10:0-mm_percpu_wq
65226 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/0:2-events
65553 root 20 0 0 0 0 I 0.0 0.0 0:00.02 kworker/1:1-events
65650 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/2:1-events
65705 root 20 0 0 0 0 I 0.0 0.0 0:00.01 kworker/8:0-events
65768 root 20 0 0 0 0 I 0.0 0.0 0:00.17 kworker/5:0-events
65855 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/6:1-events
65936 root 20 0 0 0 0 I 0.0 0.0 0:00.07 kworker/u24:1-btrfs-endio-write
66019 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/7:0-events
66043 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/3:0
66251 root 20 0 17704 7160 6236 S 0.0 0.0 0:00.00 systemd-userwor
66292 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/10:1-mm_percpu_wq
66293 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/10:3-events
66298 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/0:0-events
66328 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/1:2
66405 root 20 0 17704 7328 6408 S 0.0 0.0 0:00.00 systemd-userwor
66465 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/5:2
66523 root 20 0 0 0 0 I 0.0 0.0 0:00.52 kworker/0:3-events
66551 root 20 0 17704 7160 6236 S 0.0 0.0 0:00.00 systemd-userwor
66567 daemonna 20 0 40.7g 66400 50404 S 0.0 0.2 0:00.03 chrome
66643 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker/8:2
66678 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/u25:1-rb_allocator
66784 daemonna 20 0 223032 3436 3156 S 0.0 0.0 0:00.00 top.sh
66785 daemonna 20 0 226544 4520 3544 R 0.0 0.0 0:00.01 top
66790 daemonna 20 0 223028 3528 3216 S 0.0 0.0 0:00.00 cpuUsage.sh
66795 daemonna 20 0 221464 964 876 S 0.0 0.0 0:00.00 sleep
top - 15:25:31 up 6:39, 1 user, load average: 0.19, 0.36, 0.55
Tasks: 464 total, 2 running, 462 sleeping, 0 stopped, 0 zombie
%Cpu(s): 0.6 us, 0.2 sy, 0.0 ni, 99.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st
MiB Mem : 31938.8 total, 13299.3 free, 6207.3 used, 12432.3 buff/cache
MiB Swap: 8192.0 total, 8192.0 free, 0.0 used. 23878.3 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
59875 daemonna 20 0 5079444 335456 239944 S 2.5 1.0 1:21.15 steamwebhelper
59738 daemonna 20 0 805080 191580 128436 S 1.5 0.6 0:52.33 steamwebhelper
8326 daemonna 20 0 38.7g 260372 118656 S 1.0 0.8 1:34.24 code
59638 daemonna 10 -10 596432 204564 142252 S 1.0 0.6 0:48.25 steam
66785 daemonna 20 0 226544 4520 3544 R 1.0 0.0 0:00.03 top
963 root 20 0 455964 9612 7756 S 0.5 0.0 0:03.63 upowerd
2612 daemonna 20 0 6519024 261016 123516 S 0.5 0.8 15:15.13 gnome-shell
5101 daemonna 20 0 16.8g 306760 176320 S 0.5 0.9 6:07.30 chromium-browse
8302 daemonna 20 0 16.8g 111324 81100 S 0.5 0.3 0:30.02 code
40644 daemonna 20 0 32.8g 386068 224640 S 0.5 1.2 4:18.15 chrome
40728 daemonna 20 0 40.7g 85604 67960 S 0.5 0.3 0:00.25 chrome
1 root 20 0 173364 17836 11060 S 0.0 0.1 0:02.21 systemd
2 root 20 0 0 0 0 S 0.0 0.0 0:00.04 kthreadd
3 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 rcu_gp
4 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 rcu_par_gp
5 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 netns
7 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/0:0H-events_highpri
10 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 mm_percpu_wq
11 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tasks_kthread
12 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tasks_rude_kthread
13 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tasks_trace_kthread
14 root 20 0 0 0 0 S 0.0 0.0 0:00.15 ksoftirqd/0
15 root 20 0 0 0 0 I 0.0 0.0 0:29.57 rcu_preempt
16 root rt 0 0 0 0 S 0.0 0.0 0:00.01 migration/0
17 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/0
18 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/1
19 root rt 0 0 0 0 S 0.0 0.0 0:00.16 migration/1
20 root 20 0 0 0 0 S 0.0 0.0 0:00.11 ksoftirqd/1
22 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/1:0H-events_highpri
23 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/2
24 root rt 0 0 0 0 S 0.0 0.0 0:00.16 migration/2
25 root 20 0 0 0 0 S 0.0 0.0 0:00.08 ksoftirqd/2
27 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/2:0H-kblockd
28 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/3
29 root rt 0 0 0 0 S 0.0 0.0 0:00.16 migration/3
30 root 20 0 0 0 0 S 0.0 0.0 0:00.07 ksoftirqd/3
32 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/3:0H-events_highpri
33 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/4
34 root rt 0 0 0 0 S 0.0 0.0 0:00.17 migration/4
35 root 20 0 0 0 0 S 0.0 0.0 0:00.06 ksoftirqd/4
37 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/4:0H-events_highpri
38 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/5
39 root rt 0 0 0 0 S 0.0 0.0 0:00.16 migration/5
40 root 20 0 0 0 0 S 0.0 0.0 0:08.48 ksoftirqd/5
42 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker/5:0H-events_highpri
43 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/6
44 root rt 0 0 0 0 S 0.0 0.0 0:00.16 migration/6