You are not logged in.

#1 2024-07-24 02:31:17

rockzombie2
Member
Registered: 2018-10-19
Posts: 41

[SOLVED] Computer grinds to a halt - 100% RAM usage

I've been experiencing system slow downs on my arch installation when doing anything remotely intensive. This has included: opening too many chrome tabs, trying to start a video game or trying to start up Steam VR.

Typically, what will happen is I'll suddenly start experiencing my system slow down in the following ways: I have milliseconds showing in the clock in the system tray-- this will start skipping seconds and only updating every few seconds; if I'm on a discord call, the audio will start cutting out and being choppy; my mouse cursor will also start lagging; the system is generally slow to respond until the lagging subsides. Sometimes this happens after a few minutes when it's just a chrome tab, and sometimes I have to kill whatever process is taking up the most resources.

When I have htop open, I'll see that the memory usage is at 100%. I can see all of the cores being fully utilized as well. So this seems to be a RAM bottleneck. The problem is I didn't experience this before in my previous installation of arch. I also don't experience this when I'm booted into Windows. So I'm inclined to believe this is a linux bug.

Can I get some help troubleshooting this issue? Thank you.

EDIT: I have 16 gigs of RAM btw. Not a lot but should be sufficient for what I'm doing, I believe.

Last edited by rockzombie2 (2024-07-28 22:13:08)

Offline

#2 2024-07-24 05:56:26

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,180

Re: [SOLVED] Computer grinds to a halt - 100% RAM usage

should be sufficient for what I'm doing, I believe.

"should" …

What processes eat up the RAM and CPU?
Do you use zram or zswap or (worse) both at the same time?

Offline

#3 2024-07-26 01:54:02

rockzombie2
Member
Registered: 2018-10-19
Posts: 41

Re: [SOLVED] Computer grinds to a halt - 100% RAM usage

I don't think I'm using either zram or zwap.

It's hard to tell when the slow downs occur, I'll try to catch a screenshot if I can, but it seems to vary each time. Sometimes it'll be a bunch of chrome processes, other times it's a bunch of steam processes, from what I can recall.

I know that's not much to go off of so if there are any other specific steps you'd like me to check, please let me know.

Offline

#4 2024-07-26 05:46:57

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,180

Re: [SOLVED] Computer grinds to a halt - 100% RAM usage

I don't think know whether I'm using either zram or zwap.

https://wiki.archlinux.org/title/Zram
https://wiki.archlinux.org/title/Zswap - this is also enabled by default
Both will show up in the system journal.

Just run "top" and sort by memory consumption (shift+M)

Offline

#5 2024-07-28 02:49:06

rockzombie2
Member
Registered: 2018-10-19
Posts: 41

Re: [SOLVED] Computer grinds to a halt - 100% RAM usage

I don't know why you're nit-picking of whether I think or know whether I'm using zram or zswap. I did a quick investigation of each on and checked to see if I was using them and I don't think I am, but I could be wrong since I only briefly looked into it. If you have some method to confirm it, I'm happy to try it.

I grabbed a screenshot of htop during one instance of a slowdown, which I've attached.

https://drive.google.com/file/d/1I27QxT … sp=sharing

I don't see anything related to zram or zswap when I run journalctl. If there's a specific log file you want me to look into I can.

Offline

#6 2024-07-28 06:47:46

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,180

Re: [SOLVED] Computer grinds to a halt - 100% RAM usage

If you have some method to confirm it, I'm happy to try it.

sudo journalctl -b | grep -iE 'zram|zswap'
cat /sys/module/zswap/parameters/enabled # did you read the linked wikis?
swapon

I grabbed a screenshot of htop during one instance of a slowdown

You're clearly OOM and there's no swap (according to htop), most likely zswap is thrashing => add some swapfile. zswap is designed to work in conjunction with physical swap, not instead and if "don't see anything related to zram or zswap when I run journalctl" you're most likely only looking at the session journal and as mentioned, zswap has to be explicitly disabled and that'd show up in the kernel commandline unless you had manually disabled it at runtime… which you'd probably remenber.

This is why I'm nitpicking: you're asserting data you don't actually have.

Your screenshot has htop showing threads and DSPGAME.EXE is taking up the entire first page, so there's no way telling what besides DSPGAME.EXE is consuming your  RAM from that screenshot, generally please don't post pictures of text, post the text.
You can redirect a dump of top or htop into a file.

Offline

#7 2024-07-28 09:30:19

Head_on_a_Stick
Member
From: The Wirral
Registered: 2014-02-20
Posts: 9,003
Website

Re: [SOLVED] Computer grinds to a halt - 100% RAM usage

https://www.reddit.com/r/Dyson_Sphere_P … ring_game/?

EDIT: is the game any good? I'm tempted.

Last edited by Head_on_a_Stick (2024-07-28 09:35:23)


Jin, Jîyan, Azadî

Offline

#8 2024-07-28 17:40:16

rockzombie2
Member
Registered: 2018-10-19
Posts: 41

Re: [SOLVED] Computer grinds to a halt - 100% RAM usage

Head_on_a_Stick wrote:

https://www.reddit.com/r/Dyson_Sphere_P … ring_game/?

EDIT: is the game any good? I'm tempted.

I think it's such an awesome game. I like it better than Factorio because there's verticality/3D space to your builds; it feels intuitive, you're end game is to build a dyson sphere(s), and fighting off the dark swarm feels fun too, so it's not just a sandbox game (although it can be).

The slow down I'm experiencing only occurs when starting up typically, then it runs fine after that.

chris@nzxt ~> doas journalctl -b | grep -iE 'zram|zswap'
doas (chris@nzxt) password: 
chris@nzxt ~ [0|1]> cat /sys/module/zswap/parameters/enabled
Y
chris@nzxt ~> swapon

It looks like I got an error signal from the first command, probably because 'zram|zswap' was not found. So it looks like zswap is enabled?

I will try to get a dump of htop during a slowdown again.

Last edited by rockzombie2 (2024-07-28 17:41:27)

Offline

#9 2024-07-28 18:16:41

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,180

Re: [SOLVED] Computer grinds to a halt - 100% RAM usage

zswap is enabled, there's no swap, incl. no zram device
add a swpfile (regular swapfile will do, you can create a swap partition, but don't use zram - it contradicts the idea of zswap) and figure what (else) is eating your RAM at this point.
You can perhaps make this more deterministic by disabling zswap, but that's kinda pointless - i don't think that it itself is the problem.

Offline

#10 2024-07-28 19:33:42

rockzombie2
Member
Registered: 2018-10-19
Posts: 41

Re: [SOLVED] Computer grinds to a halt - 100% RAM usage

Okay well this might explain why I'm experiencing this issue now and not on my previous arch installation. The wiki page says that ZFS, the file system I switched to, does not support swap files.

I don't know if I can create a swap partition now without having to redo my ZFS system. I'm planning to upgrade my PC soon, practically building a new PC but keeping the hard drives. I'll be able to add more hard drives then so maybe I can create a swap partition before adding the rest of the hard drive partition to the zpool.

Following the instructions on the wiki, I see

chris@nzxt ~> swapon --show
chris@nzxt ~> free -h
               total        used        free      shared  buff/cache   available
Mem:            15Gi        14Gi       580Mi       2.8Gi       3.5Gi       1.0Gi
Swap:             0B          0B          0B

Offline

#11 2024-07-28 19:37:22

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,180

Re: [SOLVED] Computer grinds to a halt - 100% RAM usage

https://wiki.archlinux.org/title/ZFS#Swap_volume
Is the free output while running the game? You've used most of your RAM already?

Offline

#12 2024-07-28 20:04:27

rockzombie2
Member
Registered: 2018-10-19
Posts: 41

Re: [SOLVED] Computer grinds to a halt - 100% RAM usage

The free output is while I'm basically running idle. I just have discord, chrome, steam, spotify and bitcoin-qt running.

I tried capturing the output of htop but it still only seems to capture the top viewable results. I'll paste the output of 'ps auxf'. I hope it's helpful. I'm looking into setting up the ZVOL now.

USER         PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root           2  0.0  0.0      0     0 ?        S    Jul19   0:10 [kthreadd]
root           3  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [pool_workqueue_release]
root           4  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-rcu_g]
root           5  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-rcu_p]
root           6  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-slub_]
root           7  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-netns]
root           9  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/0:0H-events_highpri]
root          12  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-mm_pe]
root          14  0.0  0.0      0     0 ?        I    Jul19   0:00  \_ [rcu_tasks_kthread]
root          15  0.0  0.0      0     0 ?        I    Jul19   0:00  \_ [rcu_tasks_rude_kthread]
root          16  0.0  0.0      0     0 ?        I    Jul19   0:00  \_ [rcu_tasks_trace_kthread]
root          17  0.1  0.0      0     0 ?        S    Jul19  17:58  \_ [ksoftirqd/0]
root          18  0.0  0.0      0     0 ?        I    Jul19   4:05  \_ [rcu_preempt]
root          19  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [rcub/0]
root          20  0.0  0.0      0     0 ?        S    Jul19   1:01  \_ [migration/0]
root          21  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [idle_inject/0]
root          22  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [cpuhp/0]
root          23  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [cpuhp/1]
root          24  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [idle_inject/1]
root          25  0.0  0.0      0     0 ?        S    Jul19   0:53  \_ [migration/1]
root          26  0.1  0.0      0     0 ?        S    Jul19  15:29  \_ [ksoftirqd/1]
root          28  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/1:0H-events_highpri]
root          29  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [cpuhp/2]
root          30  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [idle_inject/2]
root          31  0.0  0.0      0     0 ?        S    Jul19   0:51  \_ [migration/2]
root          32  0.1  0.0      0     0 ?        S    Jul19  15:06  \_ [ksoftirqd/2]
root          34  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/2:0H-kblockd]
root          35  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [cpuhp/3]
root          36  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [idle_inject/3]
root          37  0.0  0.0      0     0 ?        S    Jul19   0:54  \_ [migration/3]
root          38  0.1  0.0      0     0 ?        S    Jul19  15:06  \_ [ksoftirqd/3]
root          40  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/3:0H-events_highpri]
root          41  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [cpuhp/4]
root          42  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [idle_inject/4]
root          43  0.0  0.0      0     0 ?        S    Jul19   1:11  \_ [migration/4]
root          44  0.1  0.0      0     0 ?        S    Jul19  16:07  \_ [ksoftirqd/4]
root          46  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/4:0H-events_highpri]
root          47  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [cpuhp/5]
root          48  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [idle_inject/5]
root          49  0.0  0.0      0     0 ?        S    Jul19   0:53  \_ [migration/5]
root          50  0.1  0.0      0     0 ?        S    Jul19  15:39  \_ [ksoftirqd/5]
root          52  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/5:0H-events_highpri]
root          53  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [cpuhp/6]
root          54  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [idle_inject/6]
root          55  0.0  0.0      0     0 ?        S    Jul19   0:53  \_ [migration/6]
root          56  0.1  0.0      0     0 ?        S    Jul19  15:22  \_ [ksoftirqd/6]
root          58  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/6:0H-kblockd]
root          59  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [cpuhp/7]
root          60  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [idle_inject/7]
root          61  0.0  0.0      0     0 ?        S    Jul19   0:52  \_ [migration/7]
root          62  0.1  0.0      0     0 ?        S    Jul19  18:24  \_ [ksoftirqd/7]
root          64  0.0  0.0      0     0 ?        I<   Jul19   0:01  \_ [kworker/7:0H-kblockd]
root          65  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [kdevtmpfs]
root          66  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-inet_]
root          67  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [kauditd]
root          69  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [khungtaskd]
root          70  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [oom_reaper]
root          72  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-write]
root          73  0.1  0.0      0     0 ?        S    Jul19  14:12  \_ [kcompactd0]
root          74  0.0  0.0      0     0 ?        SN   Jul19   0:00  \_ [ksmd]
root          75  0.0  0.0      0     0 ?        SN   Jul19   0:27  \_ [khugepaged]
root          76  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-kinte]
root          77  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-kbloc]
root          78  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-blkcg]
root          79  0.0  0.0      0     0 ?        S    Jul19   0:04  \_ [irq/9-acpi]
root          81  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-tpm_d]
root          82  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-ata_s]
root          83  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-edac-]
root          84  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-devfr]
root          85  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [watchdogd]
root          86  0.0  0.0      0     0 ?        I<   Jul19   0:01  \_ [kworker/3:1H-kblockd]
root          87  0.3  0.0      0     0 ?        S    Jul19  50:31  \_ [kswapd0]
root          89  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-kthro]
root          90  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [irq/125-pciehp]
root          91  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-acpi_]
root          92  0.0  0.0      0     0 ?        S    Jul19   0:03  \_ [hwrng]
root          93  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [scsi_eh_0]
root          94  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-scsi_]
root          95  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [scsi_eh_1]
root          96  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-scsi_]
root          97  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [scsi_eh_2]
root          98  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-scsi_]
root          99  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [scsi_eh_3]
root         100  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-scsi_]
root         101  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [scsi_eh_4]
root         102  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-scsi_]
root         103  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [scsi_eh_5]
root         104  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-scsi_]
root         109  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-mld]
root         111  0.0  0.0      0     0 ?        I<   Jul19   0:01  \_ [kworker/0:1H-kblockd]
root         112  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-ipv6_]
root         119  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-kstrp]
root         124  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-zswap]
root         126  0.0  0.0      0     0 ?        I<   Jul19   0:01  \_ [kworker/6:1H-kblockd]
root         127  0.0  0.0      0     0 ?        I<   Jul19   0:02  \_ [kworker/2:1H-kblockd]
root         163  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/7:1H-events_highpri]
root         165  0.0  0.0      0     0 ?        I<   Jul19   0:07  \_ [kworker/1:1H-kblockd]
root         194  0.0  0.0      0     0 ?        I<   Jul19   0:01  \_ [kworker/5:1H-kblockd]
root         201  0.0  0.0      0     0 ?        I<   Jul19   0:01  \_ [kworker/4:1H-kblockd]
root         209  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-crypt]
root         214  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-nvme-]
root         215  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-nvme-]
root         219  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-nvme-]
root         220  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-nvme-]
root         223  0.0  0.0      0     0 ?        S<   Jul19   0:00  \_ [spl_system_task]
root         224  0.0  0.0      0     0 ?        S<   Jul19   0:00  \_ [spl_delay_taskq]
root         225  0.0  0.0      0     0 ?        S<   Jul19   0:05  \_ [spl_dynamic_tas]
root         226  0.0  0.0      0     0 ?        S<   Jul19   0:17  \_ [spl_kmem_cache]
root         236  0.0  0.0      0     0 ?        S<   Jul19   0:00  \_ [zvol_tq-0]
root         237  0.0  0.0      0     0 ?        S<   Jul19   0:00  \_ [zvol_tq-1]
root         238  0.0  0.0      0     0 ?        S    Jul19   1:51  \_ [arc_prune]
root         239  0.0  0.0      0     0 ?        S    Jul19   0:59  \_ [arc_evict]
root         240  0.0  0.0      0     0 ?        DN   Jul19   0:05  \_ [arc_reap]
root         241  0.0  0.0      0     0 ?        S    Jul19   0:06  \_ [dbu_evict]
root         242  0.0  0.0      0     0 ?        SN   Jul19   4:47  \_ [dbuf_evict]
root         243  0.0  0.0      0     0 ?        SN   Jul19   0:00  \_ [z_vdev_file]
root         246  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [l2arc_feed]
root        2745  0.0  0.0      0     0 ?        S<   Jul19   0:31  \_ [z_null_iss]
root        2746  0.0  0.0      0     0 ?        S<   Jul19   1:45  \_ [z_null_int]
root        2747  0.0  0.0      0     0 ?        S<   Jul19   0:00  \_ [z_rd_iss]
root        2748  0.1  0.0      0     0 ?        S<   Jul19  16:49  \_ [z_rd_int_0]
root        2749  0.1  0.0      0     0 ?        S<   Jul19  16:49  \_ [z_rd_int_1]
root        2750  0.0  0.0      0     0 ?        S<   Jul19  10:37  \_ [z_wr_iss]
root        2751  0.0  0.0      0     0 ?        S<   Jul19   0:59  \_ [z_wr_iss_h]
root        2752  0.0  0.0      0     0 ?        S<   Jul19   2:54  \_ [z_wr_int_0]
root        2753  0.0  0.0      0     0 ?        S<   Jul19   2:54  \_ [z_wr_int_1]
root        2754  0.0  0.0      0     0 ?        S<   Jul19   0:11  \_ [z_wr_int_h]
root        2755  0.0  0.0      0     0 ?        S<   Jul19   0:00  \_ [z_fr_iss_0]
root        2756  0.0  0.0      0     0 ?        S<   Jul19   0:00  \_ [z_fr_iss_1]
root        2757  0.0  0.0      0     0 ?        S<   Jul19   0:00  \_ [z_fr_int]
root        2758  0.0  0.0      0     0 ?        S<   Jul19   0:00  \_ [z_cl_iss]
root        2759  0.0  0.0      0     0 ?        S<   Jul19   0:00  \_ [z_cl_int]
root        2760  0.0  0.0      0     0 ?        S<   Jul19   0:00  \_ [z_ioctl_iss]
root        2761  0.0  0.0      0     0 ?        S<   Jul19   0:06  \_ [z_ioctl_int]
root        2762  0.0  0.0      0     0 ?        S<   Jul19   0:01  \_ [z_trim_iss]
root        2763  0.0  0.0      0     0 ?        S<   Jul19   0:15  \_ [z_trim_int]
root        2764  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [z_zvol]
root        2765  0.0  0.0      0     0 ?        S<   Jul19   0:01  \_ [z_metaslab]
root        2766  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [z_prefetch]
root        2767  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [z_upgrade]
root        2778  0.0  0.0      0     0 ?        SN   Jul19   0:26  \_ [dp_sync_taskq]
root        2779  0.0  0.0      0     0 ?        SN   Jul19   0:26  \_ [dp_sync_taskq]
root        2780  0.0  0.0      0     0 ?        SN   Jul19   0:26  \_ [dp_sync_taskq]
root        2781  0.0  0.0      0     0 ?        SN   Jul19   0:26  \_ [dp_sync_taskq]
root        2782  0.0  0.0      0     0 ?        SN   Jul19   0:26  \_ [dp_sync_taskq]
root        2783  0.0  0.0      0     0 ?        SN   Jul19   0:26  \_ [dp_sync_taskq]
root        2784  0.0  0.0      0     0 ?        SN   Jul19   0:00  \_ [dp_zil_clean_ta]
root        2785  0.0  0.0      0     0 ?        SN   Jul19   0:00  \_ [dp_zil_clean_ta]
root        2786  0.0  0.0      0     0 ?        SN   Jul19   0:00  \_ [dp_zil_clean_ta]
root        2787  0.0  0.0      0     0 ?        SN   Jul19   0:00  \_ [dp_zil_clean_ta]
root        2788  0.0  0.0      0     0 ?        SN   Jul19   0:00  \_ [dp_zil_clean_ta]
root        2789  0.0  0.0      0     0 ?        SN   Jul19   0:00  \_ [dp_zil_clean_ta]
root        2790  0.0  0.0      0     0 ?        SN   Jul19   0:00  \_ [dp_zil_clean_ta]
root        2791  0.0  0.0      0     0 ?        SN   Jul19   0:00  \_ [dp_zil_clean_ta]
root        2792  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [z_zrele]
root        2793  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [z_unlinked_drai]
root        2864  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [txg_quiesce]
root        2865  0.0  0.0      0     0 ?        S    Jul19  10:46  \_ [txg_sync]
root        2866  0.0  0.0      0     0 ?        S    Jul19   0:02  \_ [mmp]
root        2879  0.0  0.0      0     0 ?        SN   Jul19   0:00  \_ [z_indirect_cond]
root        2880  0.0  0.0      0     0 ?        SN   Jul19   0:00  \_ [z_livelist_dest]
root        2881  0.0  0.0      0     0 ?        SN   Jul19   0:00  \_ [z_livelist_cond]
root        2882  0.0  0.0      0     0 ?        SN   Jul19   0:00  \_ [z_checkpoint_di]
root        2883  0.0  0.0      0     0 ?        S<   Jul19   0:11  \_ [vdev_autotrim]
root        2908  0.0  0.0      0     0 ?        S<   Jul19   0:00  \_ [spl_system_task]
root        2988  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [psimon]
root        3003  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [psimon]
root        3205  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [nv_queue]
root        3206  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [nv_queue]
root        3208  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [irq/146-mei_me]
root        3277  0.4  0.0      0     0 ?        R    Jul19  57:42  \_ [nvidia-modeset/kthread_q]
root        3278  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [nvidia-modeset/deferred_close_kthread_q]
root        3279  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [UVM global queue]
root        3280  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [UVM deferred release queue]
root        3281  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [UVM Tools Event Queue]
root        3299  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-cfg80]
root        3305  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-iprt-]
root        3309  0.0  0.0      0     0 ?        S    Jul19   0:02  \_ [irq/148-iwlwifi]
root        3312  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [iprt-VBoxTscThread]
root        3334  0.0  0.0      0     0 ?        I<   Jul19   0:00  \_ [kworker/R-ttm]
root        3336  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [card1-crtc0]
root        3337  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [card1-crtc1]
root        3338  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [card1-crtc2]
root        3752  0.0  0.0      0     0 ?        S    Jul19   0:00  \_ [psimon]
root        5616  0.0  0.0      0     0 ?        S<   Jul19   0:00  \_ [krfcommd]
root     1763961  1.9  0.0      0     0 ?        S    Jul23 133:49  \_ [irq/151-nvidia]
root     1763962  0.0  0.0      0     0 ?        S    Jul23   0:00  \_ [nvidia]
root     1763963  0.0  0.0      0     0 ?        S    Jul23   1:20  \_ [nv_queue]
root      314366  0.0  0.0      0     0 ?        I<   Jul26   0:30  \_ [kworker/u17:1-rb_allocator]
root     3017781  0.0  0.0      0     0 ?        I    12:51   0:07  \_ [kworker/2:0-events]
root      814812  0.0  0.0      0     0 ?        I    13:18   0:02  \_ [kworker/5:0-events]
root     2420182  0.0  0.0      0     0 ?        I    13:41   0:00  \_ [kworker/4:2-events]
root     3168123  0.0  0.0      0     0 ?        I    13:52   0:03  \_ [kworker/7:2-events]
root       41760  0.0  0.0      0     0 ?        I    14:06   0:00  \_ [kworker/1:0-events]
root      106951  0.1  0.0      0     0 ?        I    14:07   0:08  \_ [kworker/3:2-events]
root      314902  0.0  0.0      0     0 ?        I    14:10   0:00  \_ [kworker/u16:1-events_unbound]
root      558079  0.1  0.0      0     0 ?        I    14:14   0:09  \_ [kworker/0:2-events]
root     1991943  0.0  0.0      0     0 ?        I    14:35   0:00  \_ [kworker/u16:3-events_power_efficient]
root     3567730  0.0  0.0      0     0 ?        I    14:58   0:00  \_ [kworker/4:1-events]
root      127108  0.2  0.0      0     0 ?        I    15:09   0:07  \_ [kworker/3:1-events]
root      161605  0.0  0.0      0     0 ?        I    15:10   0:00  \_ [kworker/1:1-events]
root     1127285  0.0  0.0      0     0 ?        I    15:24   0:00  \_ [kworker/0:0]
root     1173323  0.0  0.0      0     0 ?        I    15:25   0:00  \_ [kworker/2:2-events]
root     1623928  0.0  0.0      0     0 ?        I    15:32   0:00  \_ [kworker/6:1-events]
root     1674727  0.0  0.0      0     0 ?        I<   15:33   0:00  \_ [kworker/u17:2-hci0]
root     1674844  0.0  0.0      0     0 ?        I    15:33   0:00  \_ [kworker/7:0-events]
root     1677600  0.0  0.0      0     0 ?        I    15:33   0:00  \_ [kworker/u16:2-events_unbound]
root     2024142  0.0  0.0      0     0 ?        I    15:38   0:00  \_ [kworker/6:2]
root     2341826  0.0  0.0      0     0 ?        I    15:43   0:00  \_ [kworker/5:2-events]
root     2577107  0.0  0.0      0     0 ?        I    15:47   0:00  \_ [kworker/3:0-events]
root     2614108  0.0  0.0      0     0 ?        S<   15:47   0:00  \_ [z_trim_iss]
root     2874234  0.0  0.0      0     0 ?        S<   15:51   0:00  \_ [z_trim_iss]
root     2913878  0.0  0.0      0     0 ?        I    15:52   0:00  \_ [kworker/6:0]
root     2919449  0.0  0.0      0     0 ?        I    15:52   0:00  \_ [kworker/3:3-events]
root     2970072  0.0  0.0      0     0 ?        I    15:53   0:00  \_ [kworker/1:2-events]
root     2974151  0.0  0.0      0     0 ?        I    15:53   0:00  \_ [kworker/u16:0-events_unbound]
root     2981420  0.0  0.0      0     0 ?        I    15:53   0:00  \_ [kworker/u16:4-events_unbound]
root     3003902  0.0  0.0      0     0 ?        S<   15:53   0:00  \_ [z_trim_iss]
root     3009316  0.0  0.0      0     0 ?        S<   15:53   0:00  \_ [z_metaslab]
root     3010544  0.0  0.0      0     0 ?        I    15:54   0:00  \_ [kworker/5:1-events]
root     3025677  0.0  0.0      0     0 ?        S<   15:54   0:00  \_ [z_wr_iss]
root     3044803  0.0  0.0      0     0 ?        S<   15:54   0:00  \_ [z_wr_iss_h]
root     3052881  0.0  0.0      0     0 ?        S<   15:54   0:00  \_ [z_wr_int_0]
root     3058308  0.0  0.0      0     0 ?        S<   15:54   0:00  \_ [z_wr_iss]
root     3060808  0.0  0.0      0     0 ?        S<   15:54   0:00  \_ [z_wr_iss_h]
root     3063796  0.0  0.0      0     0 ?        S<   15:54   0:00  \_ [z_wr_iss]
root     3074950  0.0  0.0      0     0 ?        S<   15:55   0:00  \_ [z_wr_iss]
root     3074953  0.0  0.0      0     0 ?        S<   15:55   0:00  \_ [z_wr_int_1]
root     3077761  0.0  0.0      0     0 ?        S<   15:55   0:00  \_ [z_rd_int_0]
root     3077767  0.0  0.0      0     0 ?        S<   15:55   0:00  \_ [z_rd_int_1]
root     3080298  0.0  0.0      0     0 ?        S<   15:55   0:00  \_ [z_wr_iss]
root     3080299  0.0  0.0      0     0 ?        S<   15:55   0:00  \_ [z_wr_int_1]
root     3080300  0.0  0.0      0     0 ?        S<   15:55   0:00  \_ [z_wr_int_0]
root     3080306  0.0  0.0      0     0 ?        S<   15:55   0:00  \_ [z_metaslab]
root     3080307  0.0  0.0      0     0 ?        S<   15:55   0:00  \_ [z_metaslab]
root           1  0.0  0.0  22056  6168 ?        Ss   Jul19   0:11 /sbin/init
root        2958  0.0  0.0 116444  4764 ?        Ss   Jul19   0:28 /usr/lib/systemd/systemd-journald
root        2967  0.0  0.0  16872  1152 ?        Ss   Jul19   0:01 /usr/lib/systemd/systemd-userdbd
root     2782778  0.0  0.0  17264  3840 ?        S    15:50   0:00  \_ systemd-userwork: waiting...
root     2782779  0.0  0.0  17264  4576 ?        S    15:50   0:00  \_ systemd-userwork: waiting...
root     2797802  0.0  0.0  17264  4596 ?        S    15:50   0:00  \_ systemd-userwork: waiting...
root        3002  0.0  0.0  37256  4472 ?        Ss   Jul19   0:01 /usr/lib/systemd/systemd-udevd
systemd+    3380  0.0  0.0  91264  2048 ?        Ssl  Jul19   0:02 /usr/lib/systemd/systemd-timesyncd
dbus        3385  0.0  0.0   9364  1200 ?        Ss   Jul19   0:01 /usr/bin/dbus-broker-launch --scope system --audit
dbus        3386  0.0  0.0   6040  2296 ?        S    Jul19   0:56  \_ dbus-broker --log 4 --controller 9 --machine-id bc8da29fc4d54e53a2e4835d3c115d88 --max-bytes 536870912 --max-fds 4096 --max-matches 131072 --audit
root        3387  0.0  0.0 414688  7180 ?        Ssl  Jul19   2:17 /usr/bin/NetworkManager --no-daemon
root        3389  0.0  0.0  12300  1408 ?        Ss   Jul19   0:00 /usr/lib/bluetooth/bluetoothd
dhcpcd      3390  0.0  0.0   8124  1280 ?        Ss   Jul19   0:02 dhcpcd: [manager] [ip4] [ip6]
root        3406  0.0  0.0   8572  1588 ?        S    Jul19   0:01  \_ dhcpcd: [privileged proxy]
dhcpcd      3787  0.0  0.0   8104  1132 ?        S    Jul19   0:00  |   \_ dhcpcd: [BPF ARP] enp0s31f6 192.168.1.64
dhcpcd      3408  0.0  0.0   7956   820 ?        S    Jul19   0:00  \_ dhcpcd: [network proxy]
dhcpcd      3409  0.0  0.0   7948   692 ?        S    Jul19   0:00  \_ dhcpcd: [control proxy]
root        3391  0.0  0.0  17640  2572 ?        Ss   Jul19   0:01 /usr/lib/systemd/systemd-logind
root        3392  0.0  0.0 241196  2560 ?        Ssl  Jul19   0:00 /usr/bin/zed -F
root        3735  0.0  0.0  18544  2944 ?        Ss   Jul19   0:44 /usr/bin/wpa_supplicant -u -s -O /run/wpa_supplicant
root        3740  0.0  0.0   7952  1036 ?        Ss   Jul19   0:00 login -- chris
chris       3771  0.0  0.0 161304  2176 tty1     Ss   Jul19   0:00  \_ -fish
chris    1763943  0.0  0.0   7420   640 tty1     S+   Jul23   0:00      \_ /bin/sh /usr/bin/startx
chris    1763958  0.0  0.0   4012   512 tty1     S+   Jul23   0:00          \_ xinit /home/chris/.xinitrc -- /etc/X11/xinit/xserverrc :0 vt1 -keeptty -auth /tmp/serverauth.QW8zRgICVH
root     1763959 26.0  2.0 25745868 340824 tty1  Rl   Jul23 1799:04              \_ /usr/lib/Xorg -nolisten tcp :0 vt1 -keeptty -auth /tmp/serverauth.QW8zRgICVH
chris    1763966  6.6  0.0  51312  4700 tty1     R    Jul23 457:57              \_ dwm
chris    1763973  4.6  0.0  23304  8412 tty1     S    Jul23 322:33                  \_ picom
chris    1763974  0.0  0.0   4604  1404 tty1     S    Jul23   1:10                  \_ xscreensaver --log xscreensaver.log
chris    1763980  0.0  0.0   8188  1912 tty1     S    Jul23   0:01                  |   \_ xscreensaver-systemd --verbose
chris    1763976  0.0  0.0   7420   652 tty1     S    Jul23   0:00                  \_ sh /home/chris/.xinitrc
chris    3390162  2.8  0.0 377068  5840 tty1     Sl   Jul26  93:48                  |   \_ volumeicon
chris    1764014 12.9  0.0   7420  1036 tty1     R    Jul23 896:38                  \_ sh /home/chris/.xinitrc
chris    1764015  2.8  0.0 618072  9280 tty1     Sl   Jul23 195:23                  \_ nm-applet
chris    1764016  0.0  0.0   7420   780 tty1     S    Jul23   0:00                  \_ sh /home/chris/.xinitrc
chris    1764022  2.2  1.4 8434544 233660 tty1   Sl   Jul23 155:19                  |   \_ /home/chris/.local/share/spotify-launcher/install/usr/share/spotify/spotify
chris    1764345  0.0  0.0 510292 14848 tty1     S    Jul23   0:00                  |       \_ /home/chris/.local/share/spotify-launcher/install/usr/share/spotify/spotify --type=zygote --no-zygote-sandbox --no-sandbox --enable-crash-reporter=, --change-stack-guard-on-fork=enable --enable-chrome-runtime --user-data-dir=/home/chris/.cache/spotify --log-severity=disable --user-agent-product=Chrome/125.0.6422.112 Spotify/1.2.42.290
chris    1764700  1.4  1.2 1446544 208136 tty1   Sl   Jul23  96:50                  |       |   \_ /home/chris/.local/share/spotify-launcher/install/usr/share/spotify/spotify --type=gpu-process --no-sandbox --enable-crash-reporter=, --change-stack-guard-on-fork=enable --enable-chrome-runtime --user-data-dir=/home/chris/.cache/spotify --log-severity=disable --user-agent-product=Chrome/125.0.6422.112 Spotify/1.2.42.290 --gpu-preferences=WAAAAAAAAAAgAAAEAAAAAAAAAAAAAAAAAABgAAEAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAGAAAAAAAAAAYAAAAAAAAAAgAAAAAAAAACAAAAAAAAAAIAAAAAAAAAA== --shared-files --field-trial-handle=3,i,1177158561573982969,9917651907220150071,262144 --disable-features=BackForwardCache,PartitionAllocUnretainedDanglingPtr --variations-seed-version
chris    1764347  0.0  0.0 510288 15224 tty1     S    Jul23   0:00                  |       \_ /home/chris/.local/share/spotify-launcher/install/usr/share/spotify/spotify --type=zygote --no-sandbox --enable-crash-reporter=, --change-stack-guard-on-fork=enable --enable-chrome-runtime --user-data-dir=/home/chris/.cache/spotify --log-severity=disable --user-agent-product=Chrome/125.0.6422.112 Spotify/1.2.42.290
chris    1764766  0.0  0.1 1028268 18800 tty1    Sl   Jul23   0:02                  |       |   \_ /home/chris/.local/share/spotify-launcher/install/usr/share/spotify/spotify --type=utility --utility-sub-type=storage.mojom.StorageService --lang=en-US --service-sandbox-type=utility --no-sandbox --enable-crash-reporter=, --change-stack-guard-on-fork=enable --enable-chrome-runtime --user-data-dir=/home/chris/.cache/spotify --log-severity=disable --user-agent-product=Chrome/125.0.6422.112 Spotify/1.2.42.290 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,1177158561573982969,9917651907220150071,262144 --disable-features=BackForwardCache,PartitionAllocUnretainedDanglingPtr --variations-seed-version
chris    1764983  0.2  1.8 51773708 304272 tty1  Sl   Jul23  14:24                  |       |   \_ /home/chris/.local/share/spotify-launcher/install/usr/share/spotify/spotify --type=renderer --enable-crash-reporter=, --change-stack-guard-on-fork=enable --enable-chrome-runtime --user-data-dir=/home/chris/.cache/spotify --log-severity=disable --user-agent-product=Chrome/125.0.6422.112 Spotify/1.2.42.290 --no-sandbox --autoplay-policy=no-user-gesture-required --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=6 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=373758517557 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,1177158561573982969,9917651907220150071,262144 --disable-features=BackForwardCache,PartitionAllocUnretainedDanglingPtr --variations-seed-version
chris    3833508  0.0  0.1 880880 22840 tty1     Sl   Jul24   0:00                  |       |   \_ /home/chris/.local/share/spotify-launcher/install/usr/share/spotify/spotify --type=utility --utility-sub-type=media.mojom.CdmServiceBroker --lang=en-US --service-sandbox-type=cdm --no-sandbox --enable-crash-reporter=, --change-stack-guard-on-fork=enable --enable-chrome-runtime --user-data-dir=/home/chris/.cache/spotify --log-severity=disable --user-agent-product=Chrome/125.0.6422.112 Spotify/1.2.42.290 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,1177158561573982969,9917651907220150071,262144 --disable-features=BackForwardCache,PartitionAllocUnretainedDanglingPtr --variations-seed-version
chris    1764709  0.0  0.2 1253212 38164 tty1    Sl   Jul23   1:51                  |       \_ /home/chris/.local/share/spotify-launcher/install/usr/share/spotify/spotify --type=utility --utility-sub-type=network.mojom.NetworkService --lang=en-US --service-sandbox-type=none --no-sandbox --enable-crash-reporter=, --change-stack-guard-on-fork=enable --enable-chrome-runtime --user-data-dir=/home/chris/.cache/spotify --log-severity=disable --user-agent-product=Chrome/125.0.6422.112 Spotify/1.2.42.290 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,1177158561573982969,9917651907220150071,262144 --disable-features=BackForwardCache,PartitionAllocUnretainedDanglingPtr --variations-seed-version
chris    1765190  3.2  1.9 34468604 322904 ?     Ssl  Jul23 221:50                  \_ /usr/lib/chromium/chromium
chris    1765225  0.0  0.0 33980004 13244 ?      S    Jul23   0:00                  |   \_ /usr/lib/chromium/chromium --type=zygote --no-zygote-sandbox --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable
chris    1765348  4.9  6.8 34321208 1121876 ?    Sl   Jul23 340:45                  |   |   \_ /usr/lib/chromium/chromium --type=gpu-process --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --gpu-preferences=WAAAAAAAAAAgAAAEAAAAAAAAAAAAAAAAAABgAAEAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAGAAAAAAAAAAYAAAAAAAAAAgAAAAAAAAACAAAAAAAAAAIAAAAAAAAAA== --shared-files --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    1765462  0.0  0.1 34094600 26976 ?      S    Jul23   0:00                  |   |       \_ /usr/lib/chromium/chromium --type=broker
chris    1765226  0.0  0.0 33979996 12864 ?      S    Jul23   0:00                  |   \_ /usr/lib/chromium/chromium --type=zygote --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable
chris    1765248  0.0  0.0 33980024 13684 ?      S    Jul23   0:10                  |   |   \_ /usr/lib/chromium/chromium --type=zygote --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable
chris    1765414  0.0  0.1 34042724 27648 ?      Sl   Jul23   0:25                  |   |       \_ /usr/lib/chromium/chromium --type=utility --utility-sub-type=storage.mojom.StorageService --lang=en-US --service-sandbox-type=utility --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    1765582  0.0  0.4 1188884932 71024 ?    Sl   Jul23   1:44                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --extension-process --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=13 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=373759593074 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    1765693  0.0  0.4 1186981036 66472 ?    Sl   Jul23   0:25                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --extension-process --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=5 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=373759656462 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    1765767  0.0  0.5 1186988336 85896 ?    Sl   Jul23   3:19                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --extension-process --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=6 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=373759716735 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    1765809  0.0  0.2 1186944212 34488 ?    Sl   Jul23   0:04                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --extension-process --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=7 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=373759763942 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    1765815  0.0  0.2 1186944084 41212 ?    Sl   Jul23   0:19                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --extension-process --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=8 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=373759779669 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris     144796  0.0  0.3 1186955776 63352 ?    Sl   Jul27   0:09                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=8187 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=717599521740 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris     145539  0.0  0.3 1186948256 57076 ?    Sl   Jul27   0:07                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --extension-process --init-isolate-as-foreground --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=8188 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=717600484312 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris     315494  0.0  0.9 1188845980 156808 ?   Sl   Jul27   0:49                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --pdf-renderer --lang=en-US --js-flags=--jitless --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=8198 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=717801195851 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    2428027  0.0  0.5 1186948336 90724 ?    Sl   Jul27   0:32                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=8271 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=720326957438 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    2772842  0.0  0.5 1190796616 89204 ?    Sl   Jul27   0:26                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=8281 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=720791204893 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    3560131  0.1  0.4 1187018744 77752 ?    Sl   Jul27   1:34                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --extension-process --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=8307 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=721777215752 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    3567015  0.2  1.5 1187032008 257120 ?   Sl   Jul27   2:27                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=4865 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=721785596715 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    3567406  0.0  0.5 1186977116 89500 ?    Sl   Jul27   0:09                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=8310 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=721787201302 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    3757042  0.0  0.5 1186944496 92048 ?    Sl   Jul27   0:03                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=8325 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=722077199407 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    3757710  0.0  0.7 1186955228 115812 ?   Sl   Jul27   0:10                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=8327 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=722077996907 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris     748278  0.0  1.2 1186966428 200924 ?   Sl   Jul27   0:30                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=8378 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=723493826508 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    2199523  0.0  1.2 1187001776 202488 ?   Sl   Jul27   0:52                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=8428 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=725018240944 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    2292154  0.0  0.1 1186944032 27108 ?    Sl   Jul27   0:01                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=8435 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=725105129283 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    2485704  0.0  0.1 1186945056 27884 ?    Sl   Jul27   0:03                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=8439 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=725289741494 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    2487162  0.0  0.1 1186944096 27088 ?    Sl   Jul27   0:01                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=8441 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=725291247759 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    1509786  0.5  2.2 1192694028 362308 ?   Sl   13:28   0:44                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9162 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=778933663787 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    1564040  0.0  0.8 1186955036 132056 ?   Sl   13:29   0:05                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9165 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=778980985133 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    3873007  0.4  1.0 1188865452 166636 ?   Sl   14:01   0:28                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --extension-process --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9189 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=780926092308 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris     142585  6.9  3.4 1188976620 565340 ?   Sl   14:08   7:27                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9198 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=781315685310 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris     148466  2.3  2.6 1188929584 424716 ?   Sl   14:08   2:27                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9203 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=781321656179 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris     168694  0.0  0.2 34045216 38688 ?      Sl   14:08   0:00                  |   |       \_ /usr/lib/chromium/chromium --type=utility --utility-sub-type=media.mojom.CdmServiceBroker --lang=en-US --service-sandbox-type=cdm --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris     282329  0.2  1.3 1192727612 226820 ?   Sl   14:10   0:13                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9206 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=781438490688 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris     357713  2.1  5.2 1198450868 860344 ?   Sl   14:11   2:14                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9207 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=781503262821 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris     558294  0.2  1.1 1188882332 193264 ?   Sl   14:14   0:12                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9214 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=781678176615 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris     636875  0.0  0.3 1186944396 61348 ?    Sl   14:15   0:00                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9219 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=781747659496 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    1385409  1.7  1.5 1188883692 255700 ?   Sl   14:26   1:31                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9252 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=782413729730 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    1615940  0.3  1.5 1192743728 245236 ?   Sl   14:30   0:15                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9259 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=782624067090 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    1766965  0.1  0.6 1188883460 100972 ?   Sl   14:32   0:04                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9262 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=782753782853 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    1852582  1.2  1.9 1194628944 321420 ?   Sl   14:33   0:59                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9265 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=782829678062 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    3496753  1.4  1.4 1188926992 242828 ?   Sl   14:57   0:48                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9286 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=784275807377 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    3573421  0.0  0.3 1186952944 63420 ?    Sl   14:58   0:01                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --extension-process --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9288 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=784344353162 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris     705220  0.1  0.7 1186963416 125812 ?   Sl   15:18   0:03                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9293 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=785519809375 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    1049920  0.1  0.8 1186946620 131376 ?   Sl   15:23   0:02                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9298 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=785830904253 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    1051349  0.3  0.6 1186966684 108944 ?   Sl   15:23   0:06                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9299 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=785832431979 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    1053630  0.1  0.7 1186966684 117824 ?   Sl   15:23   0:03                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9301 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=785834580793 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    2322717  0.5  0.7 1186987732 129704 ?   Sl   15:43   0:04                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9309 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=787001915384 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    2505041  0.2  0.5 1186947180 87036 ?    Sl   15:46   0:01                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9314 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=787175901240 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    2521679  0.4  0.9 1186956928 158808 ?   Sl   15:46   0:02                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9315 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=787191593394 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    2938873  0.0  0.1 42411036 27112 ?      Sl   15:52   0:00                  |   |       \_ /usr/lib/chromium/chromium --type=utility --utility-sub-type=data_decoder.mojom.DataDecoderService --lang=en-US --service-sandbox-type=service --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    2942153  3.9  1.3 1186960668 213832 ?   Sl   15:52   0:05                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9319 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=787588017542 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    2943788  0.1  0.4 1186946880 78124 ?    Sl   15:52   0:00                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9320 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=787590190418 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    3010482  0.0  0.3 1186894904 50516 ?    Sl   15:54   0:00                  |   |       \_ /usr/lib/chromium/chromium --type=renderer --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=9322 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=787654073831 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    1765370  0.1  0.3 34022928 60196 ?      Sl   Jul23   8:19                  |   \_ /usr/lib/chromium/chromium --type=utility --utility-sub-type=network.mojom.NetworkService --lang=en-US --service-sandbox-type=none --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    1766043  0.0  0.1 34059140 21156 ?      Sl   Jul23   0:19                  |   \_ /usr/lib/chromium/chromium --type=utility --utility-sub-type=audio.mojom.AudioService --lang=en-US --service-sandbox-type=none --crashpad-handler-pid=1765217 --enable-crash-reporter=,Arch Linux --change-stack-guard-on-fork=enable --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3718905585341261330,9021037626951152422,262144 --variations-seed-version
chris    2394554  2.9  1.2 1325924 201440 ?      Ssl  Jul24 157:10                  \_ cool-retro-term
chris    2394991  0.0  0.0 160988  2008 pts/0    Ss   Jul24   0:00                  |   \_ /usr/bin/fish
chris    2396295  4.1  0.0  11868  4992 pts/0    S+   Jul24 221:54                  |       \_ htop
chris    2477208  0.0  0.4 1408320 78896 ?       Ssl  Jul27   0:07                  \_ nautilus
chris    2421546  2.6  0.5 1236760 92876 ?       Ssl  15:44   0:16                  \_ cool-retro-term
chris    2421825  0.0  0.0 235504  6016 pts/1    Ssl  15:44   0:00                  |   \_ /usr/bin/fish
chris    3084572  0.0  0.0  11312  3288 pts/1    R+   15:55   0:00                  |       \_ ps auxf
chris    2806714  3.2  0.5 1296276 94612 ?       Ssl  15:50   0:08                  \_ cool-retro-term
chris    2806976  0.0  0.0 160988  4276 pts/2    Ss   15:50   0:00                      \_ /usr/bin/fish
chris    2808400  6.1  0.0  11648  5728 pts/2    R+   15:50   0:16                          \_ htop
ntp         3741  0.0  0.0  76892  1360 ?        Ssl  Jul19   0:23 /usr/bin/ntpd -g -u ntp:ntp
chris       3754  0.0  0.0  21336  3192 ?        Ss   Jul19   0:00 /usr/lib/systemd/systemd --user
chris       3756  0.0  0.0  23032  2212 ?        S    Jul19   0:00  \_ (sd-pam)
chris       3842  0.0  0.0   9080   896 ?        Ss   Jul19   0:00  \_ /usr/bin/dbus-broker-launch --scope user
chris       3843  0.0  0.0   5140  1644 ?        S    Jul19   0:01  |   \_ dbus-broker --log 4 --controller 10 --machine-id bc8da29fc4d54e53a2e4835d3c115d88 --max-bytes 100000000000000 --max-fds 25000000000000 --max-matches 5000000000
chris       3889  0.0  0.0 321640  3940 ?        Ssl  Jul19   0:00  \_ /usr/lib/gvfsd
chris     587475  0.0  0.0 543356  4368 ?        Sl   Jul19   0:00  |   \_ /usr/lib/gvfsd-trash --spawner :1.5 /org/gtk/gvfs/exec_spaw/0
chris     587626  0.0  0.0 469972  4468 ?        Sl   Jul19   0:00  |   \_ /usr/lib/gvfsd-network --spawner :1.5 /org/gtk/gvfs/exec_spaw/1
chris     973802  0.0  0.0 395876  2744 ?        Sl   Jul20   0:00  |   \_ /usr/lib/gvfsd-recent --spawner :1.5 /org/gtk/gvfs/exec_spaw/3
chris       3896  0.0  0.0 455964  1024 ?        Sl   Jul19   0:00  \_ /usr/lib/gvfsd-fuse /run/user/1000/gvfs -f
chris       3904  0.0  0.0 382036  2660 ?        Ssl  Jul19   0:00  \_ /usr/lib/at-spi-bus-launcher
chris       3964  0.0  0.0   8952   512 ?        S    Jul19   0:00  |   \_ /usr/bin/dbus-broker-launch --config-file=/usr/share/defaults/at-spi2/accessibility.conf --scope user
chris       3969  0.0  0.0   4060   876 ?        S    Jul19   0:01  |       \_ dbus-broker --log 4 --controller 9 --machine-id bc8da29fc4d54e53a2e4835d3c115d88 --max-bytes 100000000000000 --max-fds 6400000 --max-matches 5000000000
chris       4273  0.0  0.0 826548  5060 ?        Ssl  Jul19   0:01  \_ /usr/lib/xdg-desktop-portal
chris       4336  0.0  0.0 680564  2364 ?        Ssl  Jul19   0:00  \_ /usr/lib/xdg-document-portal
root        4368  0.0  0.0   2532   452 ?        Ss   Jul19   0:00  |   \_ fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/1000/doc
chris       4352  0.0  0.0 305600  1008 ?        Ssl  Jul19   0:00  \_ /usr/lib/xdg-permission-store
chris       4480  0.1  0.2 209100 41064 ?        S<sl Jul19  20:36  \_ /usr/bin/pipewire
chris       4482  0.0  0.0 846792 14384 ?        S<sl Jul19   0:24  \_ /usr/bin/wireplumber
chris       5232  0.6  0.6 203032 106000 ?       S<Lsl Jul19  81:14  \_ /usr/bin/pipewire-pulse
chris     587333  0.0  0.0 432352  3692 ?        Ssl  Jul19   0:02  \_ /usr/lib/gvfs-udisks2-volume-monitor
chris     587385  0.0  0.0 308380  1460 ?        Ssl  Jul19   0:00  \_ /usr/lib/gvfs-gphoto2-volume-monitor
chris     587412  0.0  0.0 305860   896 ?        Ssl  Jul19   0:00  \_ /usr/lib/gvfs-goa-volume-monitor
chris     587429  0.0  0.0 386584   884 ?        Ssl  Jul19   0:06  \_ /usr/lib/gvfs-afc-volume-monitor
chris     587449  0.0  0.0 306488  1408 ?        Ssl  Jul19   0:00  \_ /usr/lib/gvfs-mtp-volume-monitor
chris     589853  0.0  0.0 229032  3008 ?        Ssl  Jul19   0:00  \_ /usr/lib/dconf-service
chris    2209203  0.0  0.0 232740   844 ?        Ssl  Jul20   0:00  \_ /usr/lib/gvfsd-metadata
chris     973769  0.0  0.1 806620 18848 ?        SNsl Jul20   0:03  \_ /usr/lib/tracker-miner-fs-3
chris    1764010  1.2  0.0 235116  1664 ?        Ssl  Jul23  87:01  \_ /usr/lib/at-spi2-registryd --use-gnome-session
chris    3413323  0.0  0.2 778180 41324 ?        Ssl  Jul24   0:10  \_ /usr/lib/xdg-desktop-portal-gtk
chris     501927  0.0  0.0  80848  1352 ?        Ssl  Jul27   0:00  \_ /usr/bin/gamemoded
polkitd     3852  0.0  0.0 384796  4332 ?        Ssl  Jul19   0:03 /usr/lib/polkit-1/polkitd --no-debug
chris       3854  0.0  0.0 573664  1920 ?        Sl   Jul19   0:21 spotifyd
rtkit       4445  0.0  0.0  23180   564 ?        SNsl Jul19   0:02 /usr/lib/rtkit-daemon
root        5193  0.0  0.0 316844  5120 ?        Ssl  Jul19   1:00 /usr/lib/upowerd
root        8398  0.0  0.0 469392  5660 ?        Ssl  Jul19   2:19 /usr/lib/udisks2/udisksd
chris    2493832  0.0  0.0 33567404 824 ?        Sl   Jul21   0:00 /usr/lib/chromium/chrome_crashpad_handler --monitor-self --monitor-self-annotation=ptype=crashpad-handler --database=/home/chris/.config/chromium/Crash Reports --annotation=channel=Arch Linux --annotation=lsb-release=Arch Linux --annotation=plat=Linux --annotation=prod=Chrome_Linux --annotation=ver=126.0.6478.182 --initial-client-fd=2 --shared-client-connection
chris    2493836  0.0  0.0 33559192 960 ?        S    Jul21   0:00 /usr/lib/chromium/chrome_crashpad_handler --no-periodic-tasks --monitor-self-annotation=ptype=crashpad-handler --database=/home/chris/.config/chromium/Crash Reports --annotation=channel=Arch Linux --annotation=lsb-release=Arch Linux --annotation=plat=Linux --annotation=prod=Chrome_Linux --annotation=ver=126.0.6478.182 --initial-client-fd=4 --shared-client-connection
chris    1764002  0.0  0.0  73280  3908 ?        S    Jul23   0:00 xbindkeys
chris    1765217  0.0  0.0 33567404 676 ?        Sl   Jul23   0:00 /usr/lib/chromium/chrome_crashpad_handler --monitor-self --monitor-self-annotation=ptype=crashpad-handler --database=/home/chris/.config/chromium/Crash Reports --annotation=channel=Arch Linux --annotation=lsb-release=Arch Linux --annotation=plat=Linux --annotation=prod=Chrome_Linux --annotation=ver=126.0.6478.182 --initial-client-fd=4 --shared-client-connection
chris    1765219  0.0  0.0 33559192 636 ?        S    Jul23   0:00 /usr/lib/chromium/chrome_crashpad_handler --no-periodic-tasks --monitor-self-annotation=ptype=crashpad-handler --database=/home/chris/.config/chromium/Crash Reports --annotation=channel=Arch Linux --annotation=lsb-release=Arch Linux --annotation=plat=Linux --annotation=prod=Chrome_Linux --annotation=ver=126.0.6478.182 --initial-client-fd=5 --shared-client-connection
chris    1827402  0.0  0.0  85928  1012 ?        S    Jul23   0:00 /usr/bin/fish
chris    1828348  5.2  0.5 1187249900 96968 ?    Sl   Jul23 363:52  \_ /opt/discord/Discord
chris    1828451  0.0  0.0 33841416 9728 ?       S    Jul23   0:00      \_ /opt/discord/Discord --type=zygote --no-zygote-sandbox
chris    1828962  3.4  1.2 34134360 203472 ?     Sl   Jul23 236:50      |   \_ /opt/discord/Discord --type=gpu-process --crashpad-handler-pid=1828822 --enable-crash-reporter=19c723a6-8cb3-42a5-aa97-4b64289c9709,no_channel --user-data-dir=/home/chris/.config/discord --gpu-preferences=WAAAAAAAAAAgAAAEAAAAAAAAAAAAAAAAAABgAAEAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAGAAAAAAAAAAYAAAAAAAAAAgAAAAAAAAACAAAAAAAAAAIAAAAAAAAAA== --shared-files --field-trial-handle=3,i,3042602874788828306,14806886878727250054,262144 --enable-features=kWebSQLAccess --disable-features=HardwareMediaKeyHandling,IntensiveWakeUpThrottling,MediaSessionService,SpareRendererForSitePerProcess,UseEcoQoSForBackgroundProcess,WinRetrieveSuggestionsOnlyOnDemand --variations-seed-version
chris    1829084  0.0  0.1 33956216 23308 ?      S    Jul23   0:00      |       \_ /opt/discord/Discord --type=broker
chris    1828453  0.0  0.0 33841408 9600 ?       S    Jul23   0:00      \_ /opt/discord/Discord --type=zygote
chris    1828482  0.0  0.0 33841436 9512 ?       S    Jul23   0:00      |   \_ /opt/discord/Discord --type=zygote
chris    1828987  0.0  0.1 33925128 26076 ?      Sl   Jul23   2:54      \_ /opt/discord/Discord --type=utility --utility-sub-type=network.mojom.NetworkService --lang=en-US --service-sandbox-type=none --crashpad-handler-pid=1828822 --enable-crash-reporter=19c723a6-8cb3-42a5-aa97-4b64289c9709,no_channel --user-data-dir=/home/chris/.config/discord --secure-schemes=disclip,sentry-ipc --bypasscsp-schemes=sentry-ipc --cors-schemes=sentry-ipc --fetch-schemes=disclip,sentry-ipc --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3042602874788828306,14806886878727250054,262144 --enable-features=kWebSQLAccess --disable-features=HardwareMediaKeyHandling,IntensiveWakeUpThrottling,MediaSessionService,SpareRendererForSitePerProcess,UseEcoQoSForBackgroundProcess,WinRetrieveSuggestionsOnlyOnDemand --variations-seed-version
chris    1833807  6.1  3.2 1204757712 525848 ?   Sl   Jul23 424:44      \_ /opt/discord/Discord --type=renderer --crashpad-handler-pid=1828822 --enable-crash-reporter=19c723a6-8cb3-42a5-aa97-4b64289c9709,no_channel --user-data-dir=/home/chris/.config/discord --secure-schemes=disclip,sentry-ipc --bypasscsp-schemes=sentry-ipc --cors-schemes=sentry-ipc --fetch-schemes=disclip,sentry-ipc --app-path=/opt/discord/resources/app.asar --no-sandbox --no-zygote --autoplay-policy=no-user-gesture-required --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=6 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=373853871835 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3042602874788828306,14806886878727250054,262144 --enable-features=kWebSQLAccess --disable-features=HardwareMediaKeyHandling,IntensiveWakeUpThrottling,MediaSessionService,SpareRendererForSitePerProcess,UseEcoQoSForBackgroundProcess,WinRetrieveSuggestionsOnlyOnDemand --variations-seed-version --enable-node-leakage-in-renderers
chris    1834623  0.0  0.0 33981784 13804 ?      Sl   Jul23   0:12      \_ /opt/discord/Discord --type=utility --utility-sub-type=audio.mojom.AudioService --lang=en-US --service-sandbox-type=none --crashpad-handler-pid=1828822 --enable-crash-reporter=19c723a6-8cb3-42a5-aa97-4b64289c9709,no_channel --user-data-dir=/home/chris/.config/discord --secure-schemes=disclip,sentry-ipc --bypasscsp-schemes=sentry-ipc --cors-schemes=sentry-ipc --fetch-schemes=disclip,sentry-ipc --shared-files=v8_context_snapshot_data:100 --field-trial-handle=3,i,3042602874788828306,14806886878727250054,262144 --enable-features=kWebSQLAccess --disable-features=HardwareMediaKeyHandling,IntensiveWakeUpThrottling,MediaSessionService,SpareRendererForSitePerProcess,UseEcoQoSForBackgroundProcess,WinRetrieveSuggestionsOnlyOnDemand --variations-seed-version
chris    1828822  0.0  0.0 33575652 840 ?        Sl   Jul23   0:00 /opt/discord/chrome_crashpad_handler --monitor-self-annotation=ptype=crashpad-handler --no-rate-limit --database=/home/chris/.config/discord/Crashpad --url=https://f.a.k/e --annotation=_productName=discord --annotation=_version=0.0.61 --annotation=lsb-release=Arch Linux --annotation=plat=Linux --annotation=prod=Electron --annotation=ver=30.2.0 --initial-client-fd=44 --shared-client-connection
chris     816461  0.0  0.0  85940  1004 ?        S    Jul23   0:00 /usr/bin/fish
chris     817950  5.0  6.0 5508532 983232 ?      SLl  Jul23 348:32  \_ bitcoin-qt
root     1446816  0.0  0.1 104052 17128 ?        Ss   Jul24   0:00 /usr/bin/dirmngr --homedir /etc/pacman.d/gnupg --supervised
root     1466398  0.0  0.0 154896   600 ?        SLs  Jul24   0:02 /usr/bin/gpg-agent --homedir /etc/pacman.d/gnupg --supervised
chris    1369373  0.0  0.0  85936   640 ?        S    Jul27   0:00 /usr/bin/fish
chris    1370460  0.0  0.0   7684   724 ?        S    Jul27   0:00  \_ bash /home/chris/.local/share/Steam/steam.sh
chris    1372101  0.0  0.0  21548   512 ?        S    Jul27   0:00      \_ /home/chris/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/usr/bin/srt-logger --exec-fallback --filename=console-linux.txt -t steam
chris    1372166 13.2  1.1 743412 190112 ?       Sl   Jul27 139:42      \_ /home/chris/.local/share/Steam/ubuntu12_32/steam -srt-logger-opened
chris    1373317  0.0  0.0 316668  1152 ?        Sl   Jul27   0:00          \_ steam-runtime-launcher-service --alongside-steam
chris    1382619  0.0  0.0  21556   896 ?        Ss   Jul27   0:00          \_ /home/chris/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/usr/bin/steam-runtime-supervisor --exit-with-parent --subreaper --terminate-idle-timeout=1 --terminate-timeout=5 --lock-create --lock-verbose --lock-wait --lock-file /home/chris/.local/share/Steam/ubuntu12_64/steam-runtime-sniper.lock -- /home/chris/.local/share/Steam/ubuntu12_64/steam-runtime-sniper/_v2-entry-point -- /home/chris/.local/share/Steam/ubuntu12_64/steamwebhelper_sniper_wrap.sh -lang=en_US -cachedir=/home/chris/.local/share/Steam/config/htmlcache -steampid=1372166 -buildid=1721173382 -steamid=0 -logdir=/home/chris/.local/share/Steam/logs -uimode=7 -startcount=1 -userdatadir=/home/chris/.local/share/Steam/config/cefdata -steamuniverse=Public -realm=Global -clientui=/home/chris/.local/share/Steam/clientui -steampath=/home/chris/.local/share/Steam/ubuntu12_32/steam -launcher=0 -use_safe_shutdown_workaround -use_xcomposite_workaround -no-restart-on-ui-mode-change --valve-enable-site-isolation --enable-smooth-scrolling --disable-gpu-compositing --disable-gpu --password-store=basic --log-file=/home/chris/.local/share/Steam/logs/cef_log.txt --disable-quick-menu --disable-features=SpareRendererForSitePerProcess,DcheckIsFatal
chris    1382631  0.0  0.0  21548   640 ?        S    Jul27   0:00              \_ /home/chris/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/usr/bin/srt-logger --exec-fallback --filename=webhelper-linux.txt --identifier=steamwebhelper
chris    1382655  0.0  0.0   4628   492 ?        S    Jul27   0:00              \_ /home/chris/.local/share/Steam/ubuntu12_64/steam-runtime-sniper/pressure-vessel/libexec/steam-runtime-tools-0/srt-bwrap --args 21 /usr/lib/pressure-vessel/from-host/bin/pressure-vessel-adverb --generate-locales --fd 13 --regenerate-ld.so-cache /var/pressure-vessel/ldso --add-ld.so-path /usr/lib/pressure-vessel/overrides/lib/x86_64-linux-gnu --add-ld.so-path /usr/lib/pressure-vessel/overrides/lib/i386-linux-gnu --set-ld-library-path /usr/lib/pressure-vessel/overrides/lib/x86_64-linux-gnu/aliases:/usr/lib/pressure-vessel/overrides/lib/i386-linux-gnu/aliases --overrides-path /usr/lib/pressure-vessel/overrides --exit-with-parent --subreaper --assign-fd=1=3 --assign-fd=2=4 --shell=none --terminal=none -- /home/chris/.local/share/Steam/ubuntu12_64/steam-runtime-sniper/pressure-vessel/bin/steam-runtime-launcher-interface-0 container-runtime /home/chris/.local/share/Steam/ubuntu12_64/steamwebhelper_sniper_wrap.sh -lang=en_US -cachedir=/home/chris/.local/share/Steam/config/htmlcache -steampid=1372166 -buildid=1721173382 -steamid=0 -logdir=/home/chris/.local/share/Steam/logs -uimode=7 -startcount=1 -userdatadir=/home/chris/.local/share/Steam/config/cefdata -steamuniverse=Public -realm=Global -clientui=/home/chris/.local/share/Steam/clientui -steampath=/home/chris/.local/share/Steam/ubuntu12_32/steam -launcher=0 -use_safe_shutdown_workaround -use_xcomposite_workaround -no-restart-on-ui-mode-change --valve-enable-site-isolation --enable-smooth-scrolling --disable-gpu-compositing --disable-gpu --password-store=basic --log-file=/home/chris/.local/share/Steam/logs/cef_log.txt --disable-quick-menu --disable-features=SpareRendererForSitePerProcess,DcheckIsFatal
chris    1383706  0.0  0.0  30096   896 ?        Ss   Jul27   0:00                  \_ /usr/lib/pressure-vessel/from-host/bin/pressure-vessel-adverb --generate-locales --fd 13 --regenerate-ld.so-cache /var/pressure-vessel/ldso --add-ld.so-path /usr/lib/pressure-vessel/overrides/lib/x86_64-linux-gnu --add-ld.so-path /usr/lib/pressure-vessel/overrides/lib/i386-linux-gnu --set-ld-library-path /usr/lib/pressure-vessel/overrides/lib/x86_64-linux-gnu/aliases:/usr/lib/pressure-vessel/overrides/lib/i386-linux-gnu/aliases --overrides-path /usr/lib/pressure-vessel/overrides --exit-with-parent --subreaper --assign-fd=1=3 --assign-fd=2=4 --shell=none --terminal=none -- /home/chris/.local/share/Steam/ubuntu12_64/steam-runtime-sniper/pressure-vessel/bin/steam-runtime-launcher-interface-0 container-runtime /home/chris/.local/share/Steam/ubuntu12_64/steamwebhelper_sniper_wrap.sh -lang=en_US -cachedir=/home/chris/.local/share/Steam/config/htmlcache -steampid=1372166 -buildid=1721173382 -steamid=0 -logdir=/home/chris/.local/share/Steam/logs -uimode=7 -startcount=1 -userdatadir=/home/chris/.local/share/Steam/config/cefdata -steamuniverse=Public -realm=Global -clientui=/home/chris/.local/share/Steam/clientui -steampath=/home/chris/.local/share/Steam/ubuntu12_32/steam -launcher=0 -use_safe_shutdown_workaround -use_xcomposite_workaround -no-restart-on-ui-mode-change --valve-enable-site-isolation --enable-smooth-scrolling --disable-gpu-compositing --disable-gpu --password-store=basic --log-file=/home/chris/.local/share/Steam/logs/cef_log.txt --disable-quick-menu --disable-features=SpareRendererForSitePerProcess,DcheckIsFatal
chris    1383774  2.4  1.4 2752572 239112 ?      Sl   Jul27  26:06                      \_ ./steamwebhelper -lang=en_US -cachedir=/home/chris/.local/share/Steam/config/htmlcache -steampid=1372166 -buildid=1721173382 -steamid=0 -logdir=/home/chris/.local/share/Steam/logs -uimode=7 -startcount=1 -userdatadir=/home/chris/.local/share/Steam/config/cefdata -steamuniverse=Public -realm=Global -clientui=/home/chris/.local/share/Steam/clientui -steampath=/home/chris/.local/share/Steam/ubuntu12_32/steam -launcher=0 -use_safe_shutdown_workaround -use_xcomposite_workaround -no-restart-on-ui-mode-change --valve-enable-site-isolation --enable-smooth-scrolling --disable-gpu-compositing --disable-gpu --password-store=basic --log-file=/home/chris/.local/share/Steam/logs/cef_log.txt --disable-quick-menu --disable-features=SpareRendererForSitePerProcess,DcheckIsFatal
chris    1383831  0.0  0.0 338880 12032 ?        S    Jul27   0:00                      |   \_ /home/chris/.local/share/Steam/ubuntu12_64/steamwebhelper --type=zygote --no-zygote-sandbox --user-agent-product=Valve Steam Client --lang=en_US.UTF-8 --user-data-dir=/home/chris/.local/share/Steam/config/cefdata --log-file=/home/chris/.local/share/Steam/logs/cef_log.txt --crashpad-handler-pid=1383801 --buildid=1721173382 --steamid=0
chris    1384176  0.8  1.1 966800 189104 ?       Sl   Jul27   8:57                      |   |   \_ /home/chris/.local/share/Steam/ubuntu12_64/steamwebhelper --type=gpu-process --user-agent-product=Valve Steam Client --lang=en_US.UTF-8 --user-data-dir=/home/chris/.local/share/Steam/config/cefdata --crashpad-handler-pid=1383801 --buildid=1721173382 --steamid=0 --gpu-preferences=WAAAAAAAAAAgAAAIAAAAAAAAAAAAAAAAAABgAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAIAAAAAAAAAABAAAAAAAAAAgAAAAAAAAACAAAAAAAAAAIAAAAAAAAAA== --use-gl=disabled --log-file=/home/chris/.local/share/Steam/logs/cef_log.txt --shared-files --field-trial-handle=0,i,6985311983152078638,7088146014406085754,131072 --disable-features=BackForwardCache,DcheckIsFatal,SpareRendererForSitePerProcess
chris    1384180  0.0  0.0 413036 12468 ?        S    Jul27   0:00                      |   |       \_ /home/chris/.local/share/Steam/ubuntu12_64/steamwebhelper --type=broker
chris    1383833  0.0  0.0 338872 12032 ?        S    Jul27   0:00                      |   \_ /home/chris/.local/share/Steam/ubuntu12_64/steamwebhelper --type=zygote --user-agent-product=Valve Steam Client --lang=en_US.UTF-8 --user-data-dir=/home/chris/.local/share/Steam/config/cefdata --log-file=/home/chris/.local/share/Steam/logs/cef_log.txt --crashpad-handler-pid=1383801 --buildid=1721173382 --steamid=0
chris    1383857  0.0  0.0 338900 12004 ?        S    Jul27   0:00                      |   |   \_ /home/chris/.local/share/Steam/ubuntu12_64/steamwebhelper --type=zygote --user-agent-product=Valve Steam Client --lang=en_US.UTF-8 --user-data-dir=/home/chris/.local/share/Steam/config/cefdata --log-file=/home/chris/.local/share/Steam/logs/cef_log.txt --crashpad-handler-pid=1383801 --buildid=1721173382 --steamid=0
chris    1384213  0.0  0.0 708492 14568 ?        Sl   Jul27   0:00                      |   |       \_ /home/chris/.local/share/Steam/ubuntu12_64/steamwebhelper --type=utility --utility-sub-type=storage.mojom.StorageService --lang=en-US --service-sandbox-type=utility --user-agent-product=Valve Steam Client --lang=en_US.UTF-8 --user-data-dir=/home/chris/.local/share/Steam/config/cefdata --crashpad-handler-pid=1383801 --buildid=1721173382 --steamid=0 --log-file=/home/chris/.local/share/Steam/logs/cef_log.txt --shared-files=v8_context_snapshot_data:100 --field-trial-handle=0,i,6985311983152078638,7088146014406085754,131072 --disable-features=BackForwardCache,DcheckIsFatal,SpareRendererForSitePerProcess
chris    1384274  3.2  3.5 50701016 575212 ?     Sl   Jul27  34:21                      |   |       \_ /home/chris/.local/share/Steam/ubuntu12_64/steamwebhelper --type=renderer --user-agent-product=Valve Steam Client --user-data-dir=/home/chris/.local/share/Steam/config/cefdata --crashpad-handler-pid=1383801 --buildid=1721173382 --steamid=0 --first-renderer-process --log-file=/home/chris/.local/share/Steam/logs/cef_log.txt --disable-gpu-compositing --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=7 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=724247466548 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=0,i,6985311983152078638,7088146014406085754,131072 --disable-features=BackForwardCache,DcheckIsFatal,SpareRendererForSitePerProcess
chris    2956094  0.0  0.1 49288528 18212 ?      Sl   Jul27   0:00                      |   |       \_ /home/chris/.local/share/Steam/ubuntu12_64/steamwebhelper --type=renderer --user-agent-product=Valve Steam Client --user-data-dir=/home/chris/.local/share/Steam/config/cefdata --crashpad-handler-pid=1383801 --buildid=1721173382 --steamid=0 --log-file=/home/chris/.local/share/Steam/logs/cef_log.txt --disable-gpu-compositing --lang=en-US --num-raster-threads=4 --enable-main-frame-before-activation --renderer-client-id=20 --time-ticks-at-unix-epoch=-1721408787680769 --launch-time-ticks=725873113866 --shared-files=v8_context_snapshot_data:100 --field-trial-handle=0,i,6985311983152078638,7088146014406085754,131072 --disable-features=BackForwardCache,DcheckIsFatal,SpareRendererForSitePerProcess
chris    1384175  0.0  0.1 1056588 22048 ?       Sl   Jul27   0:04                      |   \_ /home/chris/.local/share/Steam/ubuntu12_64/steamwebhelper --type=utility --utility-sub-type=network.mojom.NetworkService --lang=en-US --service-sandbox-type=none --user-agent-product=Valve Steam Client --lang=en_US.UTF-8 --user-data-dir=/home/chris/.local/share/Steam/config/cefdata --crashpad-handler-pid=1383801 --buildid=1721173382 --steamid=0 --log-file=/home/chris/.local/share/Steam/logs/cef_log.txt --shared-files=v8_context_snapshot_data:100 --field-trial-handle=0,i,6985311983152078638,7088146014406085754,131072 --disable-features=BackForwardCache,DcheckIsFatal,SpareRendererForSitePerProcess
chris    2552142  0.0  0.0 712888 13184 ?        Sl   Jul27   0:00                      |   \_ /home/chris/.local/share/Steam/ubuntu12_64/steamwebhelper --type=utility --utility-sub-type=audio.mojom.AudioService --lang=en-US --service-sandbox-type=none --user-agent-product=Valve Steam Client --lang=en_US.UTF-8 --user-data-dir=/home/chris/.local/share/Steam/config/cefdata --crashpad-handler-pid=1383801 --buildid=1721173382 --steamid=0 --log-file=/home/chris/.local/share/Steam/logs/cef_log.txt --shared-files=v8_context_snapshot_data:100 --field-trial-handle=0,i,6985311983152078638,7088146014406085754,131072 --disable-features=BackForwardCache,DcheckIsFatal,SpareRendererForSitePerProcess
chris    1383801  0.0  0.0 393692 12032 ?        Sl   Jul27   0:00                      \_ /home/chris/.local/share/Steam/ubuntu12_64/steamwebhelper --monitor-self-annotation=ptype=crashpad-handler --type=crashpad-handler --max-uploads=5 --max-db-size=20 --max-db-age=5 --database=/tmp/dumps --url=https://crash.steampowered.com/submit --annotation=lsb-release=Steam Runtime 3 (sniper) --annotation=platform=linux64 --annotation=product=cefwebhelper --annotation=version=1721173382 --initial-client-fd=7 --shared-client-connection

EDIT: I'm seeing from this answer (https://superuser.com/questions/282867/ … not-add-up) that the reason why the memory usage is so high is that it's including cached + buffered memory as well.

EDIT 2: Although I just realized that the free command shows that the cache/buffer size is only 3.5 gigs so I still don't think it adds up.

Last edited by rockzombie2 (2024-07-28 20:20:46)

Offline

#13 2024-07-28 20:25:08

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,180

Re: [SOLVED] Computer grinds to a halt - 100% RAM usage

basically running idle. I just have discord, chrome, steam, spotify and bitcoin-qt

sarcasm.jpg

electron and bitcoin miners are notorious memory/resource hogs - and they're eating away your RAM, yes.

Offline

#14 2024-07-28 21:31:38

rockzombie2
Member
Registered: 2018-10-19
Posts: 41

Re: [SOLVED] Computer grinds to a halt - 100% RAM usage

Steam and spotify aren't doing anything so they're basically idle. Bitcoin-qt is just a node, it's not actually mining anything, so I also consider that idle. I am on a call in discord and I have a bunch of tabs open in chrome so I could see that using some ram.

Either way, I added the zvol and suddenly I have 8 gigs of swap showing up in htop. I notice I was able to start up some of my games much smoother than before, ie. not 100% ram usage with this zvol set up.

Here comes the kicker. I went to start up Steam VR since I experienced a lot of slowdowns with that. This time it ran mostly smoothly and I was able to launch a VR game, which is further than I've made it in the past. I left to use the bathroom and when I came back, I saw that my computer had frozen.

I had posted about my system freezing in the past (https://bbs.archlinux.org/viewtopic.php?id=295340) but I haven't experienced freezes since then, but also this was before I switched to ZFS, I believe.

So I restarted, but now I don't see anything showing up on the monitor; a black screen. I tried plugging in my hdmi cable into the motherboard but nothing shows up either. The monitors work because I was able to switch to my work laptop (plugged into my monitors) and it displays just fine. I reboot once again and blindly select Windows (left most option in rEFInd) and it displays on my screen after loading.

I tried blindly logging into my Arch linux install, but I can't recall exactly if it's the second or third option in rEFInd. I try both but with no success. I have to first decrypt the zpool then login to the shell, then startx. I tried doing this blind but couldn't get anything to show on screen.

So here we are. I'm stuck in Windows for the time being. However, since this is outside the scope of this thread, I could potentially mark this issue as solved and open a seperate thread for my black bios screen issue, which might not actually be arch related. sad

Offline

#15 2024-07-28 21:49:20

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,180

Re: [SOLVED] Computer grinds to a halt - 100% RAM usage

they're basically idle

at a combined 10+ GB of RAM… it doesn't matter that you're not really doing anything with them, they're /that/ inefficient.
Doesn't matter, you were running OOM, you added some swap, you're no longer running OOM and the system therefore works as intended.

Please always remember to mark resolved threads by editing your initial posts subject - so others will know that there's no task left, but maybe a solution to find.
Thanks.


Wrt the other situation:
You're not even getting output at the bootloader? Does the BIOS post? Can you enter the UEFI config?
Is the VR device still attached?

Also, cc. 3rd link below. Mandatory.
Disable it (it's NOT the BIOS setting!) and reboot windows and linux twice for voodo reasons.

Offline

#16 2024-07-28 22:19:23

rockzombie2
Member
Registered: 2018-10-19
Posts: 41

Re: [SOLVED] Computer grinds to a halt - 100% RAM usage

I turned off Fast Start already. I'm not getting the bios splashscreen, nor the output from the bootloader. I'm not sure how to check if the BIOS is posting, but I assume so because I can boot into WIndows. I don't know how to enter the UEFI config and I'm not sure if I knew if I could do so blind. The VR device is still attached, although I tried to boot with only one monitor plugged into the motherboard but it still didn't show me anything.

Checking my motherboard manual, I tried taking a screwdriver to clear the CMOS/reset BIOS because I didn't have a jumper. That didn't seem to work, although I couldn't tell because I still am not seeing anything before Windows loads.

If you have any suggestions for this issue, I'd greatly appreciate it. Right now, my backup plan is to keep using Windows until I do my PC upgrade. I'll be getting a new motherboard so that could "fix" the issue...

Offline

#17 2024-07-29 06:04:27

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,180

Re: [SOLVED] Computer grinds to a halt - 100% RAM usage

I'm not getting the bios splashscreen

Did you do anything else in the meantime?
The UEFI might have gotten shredded, but rather not by adding some zfs volume.
You could try to update/reinstall it from windows (you might lose refind/the other boot entries, but once the firmware returns to sanity could re-add them from the install iso)

Offline

Board footer

Powered by FluxBB