You are not logged in.

#1 2026-01-26 08:00:01

kennyisalive
Member
Registered: 2026-01-26
Posts: 29

[Solved] SSH client works only by sudo

Hi!
When I try to connect via SSH, I get the error:

ssh_askpass: exec(/usr/lib/ssh/ssh-askpass): No such file or directory

But if I do the same thing via sudo, everything works.

Last edited by kennyisalive (Yesterday 14:52:18)

Offline

#2 2026-01-26 11:48:07

WorMzy
Administrator
From: Scotland
Registered: 2010-06-16
Posts: 13,331
Website

Re: [Solved] SSH client works only by sudo

Have you set an SSH_ASKPASS environment variable?

$ env | grep SSH_ASKPASS

Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD

Making lemonade from lemons since 2015.

Offline

#3 2026-01-26 13:45:19

kennyisalive
Member
Registered: 2026-01-26
Posts: 29

Re: [Solved] SSH client works only by sudo

WorMzy wrote:

Have you set an SSH_ASKPASS environment variable?

$ env | grep SSH_ASKPASS

No, hahe not. And by sudo and root user have not to, but under sudo ssh-client works well

Offline

#4 2026-01-26 14:11:05

Lone_Wolf
Administrator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 14,801

Re: [Solved] SSH client works only by sudo

$ pkgfile /usr/lib/ssh/ssh-askpass
extra/x11-ssh-askpass
$

Is x11-ssh-askpass installed ?


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.

clean chroot building not flexible enough ?
Try clean chroot manager by graysky

Online

#5 2026-01-26 14:54:40

kennyisalive
Member
Registered: 2026-01-26
Posts: 29

Re: [Solved] SSH client works only by sudo

Lone_Wolf wrote:
$ pkgfile /usr/lib/ssh/ssh-askpass
extra/x11-ssh-askpass
$

Is x11-ssh-askpass installed ?

No, i am using wayland. Is it workong forXorg only?

Offline

#6 2026-01-26 15:13:12

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 73,365

Re: [Solved] SSH client works only by sudo

type ssh
ps aux | grep ssh
printenv | grep -i ssh

There're various askpass implementation, the immediate question is what triggers its invocation.
Did you copy somebodies dotfiles?

Offline

#7 2026-01-27 05:44:10

kennyisalive
Member
Registered: 2026-01-26
Posts: 29

Re: [Solved] SSH client works only by sudo

seth wrote:
type ssh
ps aux | grep ssh
printenv | grep -i ssh

There're various askpass implementation, the immediate question is what triggers its invocation.
Did you copy somebodies dotfiles?

 │   ~  type ssh                                                                                                          
ssh is /usr/sbin/ssh
  │   ~  ps aux | grep ssh                                                                                                  
root        8163  0.0  0.0   9096  6452 ?        Ss   янв26   0:00 sshd: /usr/bin/sshd -D [listener] 0 of 10-100 startups
mt          8623  0.0  0.0   8980  4604 ?        Ss   янв26   0:00 ssh-agent
mt        534718  0.0  0.0   6760  4244 pts/1    S+   08:38   0:00 grep --color=auto --exclude-dir=.bzr --exclude-dir=CVS --exclude-dir=.git --exclude-dir=.hg --exclude-dir=.svn --exclude-dir=.idea --exclude-dir=.tox --exclude-dir=.venv --exclude-dir=venv ssh
  │   ~  printenv | grep -i ssh                                                                                              
P9K_SSH=0
_P9K_SSH_TTY=/dev/pts/1

here is output. I understand about various askpass implementation. I was try gnome-keyring and seahorse and it working, but I don't like GUI dialog box. In cli it was worked fine before some updates. And I can't find askpass implementation for Waykand.

Offline

#8 2026-01-27 08:00:57

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 73,365

Re: [Solved] SSH client works only by sudo

You've an agent running but apparently not exporting the interface - how are you starting the session?
https://wiki.archlinux.org/title/SSH_keys#SSH_agents

Offline

#9 2026-01-27 15:06:52

kennyisalive
Member
Registered: 2026-01-26
Posts: 29

Re: [Solved] SSH client works only by sudo

seth wrote:

You've an agent running but apparently not exporting the interface - how are you starting the session?
https://wiki.archlinux.org/title/SSH_keys#SSH_agents

ssh-agent:
SSH_AUTH_SOCK=/home/mt/.ssh/agent/s.qvqa1Ip262.agent.HrHlgN3EXv
; export SSH_AUTH_SOCK;
SSH_AGENT_PID=773838; export SSH_AGENT_PID;
echo Agent pid 773838;

Offline

#10 2026-01-27 16:25:08

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 73,365

Re: [Solved] SSH client works only by sudo

That neither answers

how are you starting the session

nor does it apply to the context of your previous environment query.

Offline

#11 2026-01-27 19:37:24

kennyisalive
Member
Registered: 2026-01-26
Posts: 29

Re: [Solved] SSH client works only by sudo

seth wrote:

That neither answers

how are you starting the session

nor does it apply to the context of your previous environment query.

I don't quite understand the question. Which session exactly? If it's a GUI session, then the display manager launches sway. If it's an SSH session, then just ssh username@servename.

Offline

#12 2026-01-27 20:38:32

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 73,365

Re: [Solved] SSH client works only by sudo

*What* displaymanager?
And how do you start the ssh agent?

Edit: also maybe better

grep -i ask ~/.ssh/config

Last edited by seth (2026-01-27 22:32:13)

Offline

#13 2026-01-28 08:12:18

kennyisalive
Member
Registered: 2026-01-26
Posts: 29

Re: [Solved] SSH client works only by sudo

seth wrote:

*What* displaymanager?
And how do you start the ssh agent?

Edit: also maybe better

grep -i ask ~/.ssh/config

Ly Display manager.

seth wrote:

And how do you start the ssh agent?


As I understood from the ssh-agent documentation you sent me earlier, ssh-agent is required when using SSH keys. But these connections work for me without sudo. The only problem is with password-based SSH connections.

grep -i ask ~/.ssh/config

Output is empty

Offline

#14 2026-01-28 09:08:55

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 73,365

Re: [Solved] SSH client works only by sudo

Ly Display manager.

quelle surprise… cut that out for the moment.

the ssh-agent documentation you sent me earlier, ssh-agent is required

The point is that ssh-agent shows up in  the output of #7 *before* I linked you the wiki  and the pending question is what starts that and why and how.
What kind of script do you let ly usually start?

(loginctl session-status; ps fax) | curl -F 'file=@-' 0x0.st

Offline

#15 2026-02-09 06:16:50

kennyisalive
Member
Registered: 2026-01-26
Posts: 29

Re: [Solved] SSH client works only by sudo

seth wrote:

Ly Display manager.

quelle surprise… cut that out for the moment.

the ssh-agent documentation you sent me earlier, ssh-agent is required

The point is that ssh-agent shows up in  the output of #7 *before* I linked you the wiki  and the pending question is what starts that and why and how.
What kind of script do you let ly usually start?

(loginctl session-status; ps fax) | curl -F 'file=@-' 0x0.st

Sorry for the late reply. I didn't quite understand the question. Ly starts as a service via systemd. Then it starts sway. Of the ssh services, only sshd is autostarted in systemd.

(loginctl session-status; ps fax) | curl -F 'file=@-' 0x0.st

yielded no output.

Offline

#16 2026-02-09 10:29:39

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 73,365

Re: [Solved] SSH client works only by sudo

You'd either get an error or a url ?
"No output" isn't really an option (unless you're using a lesser shell like fish where the syntax doesn't work?)

Offline

#17 2026-02-09 19:26:01

loqs
Member
Registered: 2014-03-06
Posts: 18,796

Re: [Solved] SSH client works only by sudo

Does the first half of seth's command produce any output?:

(loginctl session-status; ps fax)

Offline

#18 2026-02-09 20:11:18

kennyisalive
Member
Registered: 2026-01-26
Posts: 29

Re: [Solved] SSH client works only by sudo

I ran it by sudo:

c1 - mt (1000)
  Since: Mon 2026-02-09 09:08:50 MSK; 7h ago
  State: active
 Leader: 1005 (lemurs)
   Seat: seat0; vc2
    TTY: tty2
 Remote: no
Service: lemurs
   Type: wayland
  Class: user
   Idle: no
   Unit: session-c1.scope
         ├─  1005 /usr/bin/lemurs
         ├─  1246 sway
         ├─  1288 nextcloud --background
         ├─  1289 localsend --hidden
         ├─  1369 /usr/lib/firefox/firefox
         ├─  1378 /usr/lib/firefox/crashhelper 1369 9 /tmp/ 11
         ├─  1691 Xwayland :0 -rootless -core -terminate 10 -listenfd 36 -listenfd 37 -displayfd 122 -wm 119
         ├─  1720 /usr/lib/firefox/firefox -contentproc -ipcHandle 0 -signalPipe 1 -initialChannelId {0f8ce272-d93b-4a52-acdf-f0e6fb31ce4c} -parentPid 1369 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 1 forkserver
         ├─  1863 "/usr/lib/firefox/firefox -contentproc -parentBuildID 20260203190549 -prefsHandle 0:50108 -prefMapHandle 1:285540 -sandboxReporter 2 -chrootClient 3 -ipcHandle 4 -initialChannelId {476359df-4ef8-4e8c-a05f-29ff85c9be9c} -parentPid 1369 -crashReporter 5 -crashHelper 6 -appDir /usr/lib/firefox/browser 2 socket"
         ├─  1909 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50173 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {adb7e928-f402-4521-ac3c-5363646dfdc0} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 3 tab"
         ├─  1910 /usr/lib/thunderbird/thunderbird
         ├─  1920 "/usr/lib/firefox/firefox -contentproc -parentBuildID 20260203190549 -prefsHandle 0:50173 -prefMapHandle 1:285540 -sandboxReporter 2 -chrootClient 3 -ipcHandle 4 -initialChannelId {348c8767-92ce-4f27-b63f-ac9d8660c7ce} -parentPid 1369 -crashReporter 5 -crashHelper 6 -appDir /usr/lib/firefox/browser 4 rdd"
         ├─  1985 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50211 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {e8fb1aa1-8206-4ee7-832b-51a0d1be8957} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 5 tab"
         ├─  2109 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {f503bb8b-8ae8-4000-a860-ad5137156f91} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 6 tab"
         ├─  2116 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {f3ce1d99-82e1-428e-bed3-6681649abf56} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 7 tab"
         ├─  2130 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {25343b84-4baf-4f87-9750-9435d01466a2} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 8 tab"
         ├─  2141 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {5919d4ec-7a68-4593-9102-b8e6d977e25a} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 9 tab"
         ├─  2165 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {6630a9ff-30c1-4970-b512-e34deb78022b} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 10 tab"
         ├─  2175 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {bb33abd7-59cc-4a66-b7e6-70322f19f269} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 11 tab"
         ├─  2202 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {51486e3e-9b45-4e46-b28e-1d645619d58d} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 12 tab"
         ├─  2216 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {7c2e2564-f521-4058-a978-6e1739313817} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 13 tab"
         ├─  2239 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {2e219140-e4c1-4d21-ad59-9ae9926be7fc} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 14 tab"
         ├─  2282 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {658394d1-0e93-4427-94a3-b365f59acb4b} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 15 tab"
         ├─  2314 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {4dda8295-6985-4465-bd16-d9491468ac06} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 16 tab"
         ├─  2338 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {2084f4d3-ecb8-4d50-9339-a161ce8ff43f} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 17 tab"
         ├─  2366 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {23ad14d2-b2f6-470c-9c73-a1cbc836cad0} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 18 tab"
         ├─  2391 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {5faba93e-a0ee-42b3-8302-a0e646046530} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 19 tab"
         ├─  2407 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {dd96595f-d0b7-4d5a-b7c7-7ba9d4bdd3bb} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 20 tab"
         ├─  2438 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {9b558b2f-eb33-4992-87dc-1c5ca4e581b8} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 21 tab"
         ├─  2638 Telegram
         ├─  2736 "/usr/lib/firefox/firefox -contentproc -parentBuildID 20260203190549 -sandboxingKind 0 -prefsHandle 0:62165 -prefMapHandle 1:285540 -sandboxReporter 2 -chrootClient 3 -ipcHandle 4 -initialChannelId {f214c41a-27d9-4f31-854b-79018527631b} -parentPid 1369 -crashReporter 5 -crashHelper 6 -appDir /usr/lib/firefox/browser 22 utility"
         ├─  2753 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:49910 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {ecd1d1ab-8735-4abc-b8f5-96e3191dbdb8} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 24 tab"
         ├─  3091 remmina
         ├─  3093 /usr/bin/python /usr/bin/blueman-applet
         ├─  3218 /usr/bin/python /usr/bin/blueman-tray
         ├─  4664 localsend --hidden
         ├─  4709 swaybg -o "*" -i /home/mt/Pictures/wallpapers/desktop/arch5.png -m fill
         ├─  4710 waybar -b bar-0
         ├─  9616 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:49962 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {780c3fc3-e23c-44f5-aa2d-c793f82c618f} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 39 tab"
         ├─ 10645 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:49962 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {94dadee2-4697-4178-8528-40d98ba81729} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 40 tab"
         ├─ 10704 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:49962 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {24eef25d-5c35-421d-8190-358d28b4d11e} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 41 tab"
         ├─ 27399 /usr/lib/wine/../../bin/wineserver
         ├─ 27405 "C:\\windows\\system32\\services.exe"
         ├─ 27408 "C:\\windows\\system32\\winedevice.exe"
         ├─ 27418 "C:\\windows\\system32\\svchost.exe" -k LocalServiceNetworkRestricted
         ├─ 27423 "C:\\windows\\system32\\plugplay.exe"
         ├─ 27436 "C:\\Program Files (x86)\\AnyDesk-116242bd\\AnyDesk-116242bd.exe" --service
         ├─ 27476 "C:\\windows\\system32\\explorer.exe" /desktop
         ├─ 27504 "C:\\windows\\system32\\rpcss.exe"
         ├─ 27552 "C:\\Program Files (x86)\\AnyDesk-116242bd\\AnyDesk-116242bd.exe" --control
         ├─131963 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50230 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {f2db255a-c476-4d3c-98c4-0ae755475730} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 129 tab"
         ├─132063 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50230 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {0a0efd61-852f-4b1e-9f93-6d297fb5d3cd} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 131 tab"
         ├─132130 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50230 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {a64222f8-ebdd-4809-9fd6-6060a3c8775b} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 132 tab"
         ├─132193 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50230 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {e035ffdc-5a05-4755-be02-4d5dd635c144} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 133 tab"
         ├─132899 alacritty
         ├─132908 /usr/bin/zsh
         ├─132912 /usr/bin/zsh
         ├─132942 /usr/bin/zsh
         ├─132944 /usr/bin/zsh
         ├─132945 /usr/share/zsh-theme-powerlevel10k/gitstatus/usrbin/gitstatusd -G v1.5.4 -s -1 -u -1 -d -1 -c -1 -m -1 -v FATAL -t 24
         ├─133268 sudo ssh root@pve5
         ├─133285 sudo ssh root@pve5
         ├─133286 ssh root@pve5
         ├─177276 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50310 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {a3f76a16-8c96-4291-9ae4-1a16615bf685} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 134 tab"
         ├─177918 alacritty
         ├─177927 /usr/bin/zsh
         ├─177931 /usr/bin/zsh
         ├─177961 /usr/bin/zsh
         ├─177963 /usr/bin/zsh
         ├─177964 /usr/share/zsh-theme-powerlevel10k/gitstatus/usrbin/gitstatusd -G v1.5.4 -s -1 -u -1 -d -1 -c -1 -m -1 -v FATAL -t 24
         ├─178012 /bin/bash
         ├─178352 sudo su
         ├─178367 sudo su
         ├─178368 su
         ├─178370 zsh
         ├─178387 zsh
         ├─178388 curl -F file=@- 0x0.st
         └─178389 loginctl session-status

фев 09 13:49:29 dwarch sudo[116632]:       mt : TTY=pts/0 ; PWD=/home/mt ; USER=root ; COMMAND=/usr/bin/ssh adminko@s-docreg
фев 09 13:49:29 dwarch sudo[116632]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=1000)
фев 09 14:10:13 dwarch sudo[116632]: pam_unix(sudo:session): session closed for user root
фев 09 14:20:38 dwarch Telegram[2638]: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55b9ed6e4e80 with focusing surface 0x55b9e598b460
фев 09 14:24:39 dwarch sudo[133268]:       mt : TTY=pts/0 ; PWD=/home/mt ; USER=root ; COMMAND=/usr/bin/ssh root@pve5
фев 09 14:24:39 dwarch sudo[133268]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=1000)
фев 09 16:37:11 dwarch sudo[178352]:       mt : TTY=pts/2 ; PWD=/home/mt ; USER=root ; COMMAND=/usr/bin/su
фев 09 16:37:11 dwarch sudo[178352]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=1000)
фев 09 16:37:11 dwarch su[178368]: (to root) root on pts/3
фев 09 16:37:11 dwarch su[178368]: pam_unix(su:session): session opened for user root(uid=0) by mt(uid=0)
    PID TTY      STAT   TIME COMMAND
      2 ?        S      0:00 [kthreadd]
      3 ?        S      0:00  \_ [pool_workqueue_release]
      4 ?        I<     0:00  \_ [kworker/R-rcu_gp]
      5 ?        I<     0:00  \_ [kworker/R-sync_wq]
      6 ?        I<     0:00  \_ [kworker/R-kvfree_rcu_reclaim]
      7 ?        I<     0:00  \_ [kworker/R-slub_flushwq]
      8 ?        I<     0:00  \_ [kworker/R-netns]
     10 ?        I<     0:00  \_ [kworker/0:0H-events_highpri]
     13 ?        I<     0:00  \_ [kworker/R-mm_percpu_wq]
     15 ?        S      0:00  \_ [ksoftirqd/0]
     16 ?        I      1:06  \_ [rcu_preempt]
     17 ?        S      0:00  \_ [rcub/0]
     18 ?        S      0:00  \_ [rcu_exp_par_gp_kthread_worker/0]
     19 ?        S      0:00  \_ [rcu_exp_gp_kthread_worker]
     20 ?        S      0:00  \_ [migration/0]
     21 ?        S      0:00  \_ [idle_inject/0]
     22 ?        S      0:00  \_ [cpuhp/0]
     23 ?        S      0:00  \_ [cpuhp/2]
     24 ?        S      0:00  \_ [idle_inject/2]
     25 ?        S      0:00  \_ [migration/2]
     26 ?        S      0:00  \_ [ksoftirqd/2]
     28 ?        I<     0:00  \_ [kworker/2:0H-events_highpri]
     29 ?        S      0:00  \_ [cpuhp/4]
     30 ?        S      0:00  \_ [idle_inject/4]
     31 ?        S      0:08  \_ [migration/4]
     32 ?        S      0:00  \_ [ksoftirqd/4]
     34 ?        I<     0:00  \_ [kworker/4:0H-events_highpri]
     35 ?        S      0:00  \_ [cpuhp/5]
     36 ?        S      0:00  \_ [idle_inject/5]
     37 ?        S      0:05  \_ [migration/5]
     38 ?        S      0:00  \_ [ksoftirqd/5]
     40 ?        I<     0:00  \_ [kworker/5:0H-events_highpri]
     41 ?        S      0:00  \_ [cpuhp/6]
     42 ?        S      0:00  \_ [idle_inject/6]
     43 ?        S      0:04  \_ [migration/6]
     44 ?        S      0:00  \_ [ksoftirqd/6]
     46 ?        I<     0:00  \_ [kworker/6:0H-events_highpri]
     47 ?        S      0:00  \_ [cpuhp/7]
     48 ?        S      0:00  \_ [idle_inject/7]
     49 ?        S      0:03  \_ [migration/7]
     50 ?        S      0:00  \_ [ksoftirqd/7]
     52 ?        I<     0:00  \_ [kworker/7:0H-events_highpri]
     53 ?        S      0:00  \_ [cpuhp/8]
     54 ?        S      0:00  \_ [idle_inject/8]
     55 ?        S      0:03  \_ [migration/8]
     56 ?        S      0:00  \_ [ksoftirqd/8]
     58 ?        I<     0:00  \_ [kworker/8:0H-events_highpri]
     59 ?        S      0:00  \_ [cpuhp/9]
     60 ?        S      0:00  \_ [idle_inject/9]
     61 ?        S      0:02  \_ [migration/9]
     62 ?        S      0:00  \_ [ksoftirqd/9]
     64 ?        I<     0:00  \_ [kworker/9:0H-events_highpri]
     65 ?        S      0:00  \_ [cpuhp/10]
     66 ?        S      0:00  \_ [idle_inject/10]
     67 ?        S      0:03  \_ [migration/10]
     68 ?        S      0:01  \_ [ksoftirqd/10]
     70 ?        I<     0:00  \_ [kworker/10:0H-events_highpri]
     71 ?        S      0:00  \_ [cpuhp/11]
     72 ?        S      0:00  \_ [idle_inject/11]
     73 ?        S      0:02  \_ [migration/11]
     74 ?        S      0:00  \_ [ksoftirqd/11]
     76 ?        I<     0:00  \_ [kworker/11:0H-events_highpri]
     77 ?        S      0:00  \_ [cpuhp/1]
     78 ?        S      0:00  \_ [idle_inject/1]
     79 ?        S      0:00  \_ [migration/1]
     80 ?        S      0:00  \_ [ksoftirqd/1]
     82 ?        I<     0:00  \_ [kworker/1:0H-events_highpri]
     83 ?        S      0:00  \_ [cpuhp/3]
     84 ?        S      0:00  \_ [idle_inject/3]
     85 ?        S      0:00  \_ [migration/3]
     86 ?        S      0:00  \_ [ksoftirqd/3]
     88 ?        I<     0:00  \_ [kworker/3:0H-events_highpri]
     89 ?        S      0:00  \_ [kdevtmpfs]
     90 ?        I<     0:00  \_ [kworker/R-inet_frag_wq]
     91 ?        I      0:00  \_ [rcu_tasks_kthread]
     92 ?        I      0:00  \_ [rcu_tasks_rude_kthread]
     93 ?        I      0:00  \_ [rcu_tasks_trace_kthread]
     94 ?        S      0:00  \_ [kauditd]
     95 ?        S      0:00  \_ [khungtaskd]
     96 ?        S      0:00  \_ [oom_reaper]
     98 ?        I<     0:00  \_ [kworker/R-writeback]
     99 ?        S      0:01  \_ [kcompactd0]
    100 ?        SN     0:00  \_ [ksmd]
    101 ?        SN     0:02  \_ [khugepaged]
    102 ?        I<     0:00  \_ [kworker/R-kblockd]
    103 ?        I<     0:00  \_ [kworker/R-blkcg_punt_bio]
    104 ?        I<     0:00  \_ [kworker/R-kintegrityd]
    106 ?        S      2:24  \_ [irq/9-acpi]
    108 ?        I<     0:00  \_ [kworker/R-tpm_dev_wq]
    109 ?        I<     0:00  \_ [kworker/R-ata_sff]
    110 ?        I<     0:00  \_ [kworker/R-edac-poller]
    111 ?        I<     0:00  \_ [kworker/R-devfreq_wq]
    112 ?        S      0:00  \_ [watchdogd]
    114 ?        I<     0:00  \_ [kworker/R-quota_events_unbound]
    115 ?        I<     0:02  \_ [kworker/8:1H-i915_cleanup]
    117 ?        S      0:01  \_ [kswapd0]
    118 ?        I<     0:00  \_ [kworker/R-kthrotld]
    119 ?        S      0:00  \_ [irq/123-pciehp]
    121 ?        S      0:00  \_ [irq/124-pciehp]
    125 ?        I<     0:00  \_ [kworker/R-acpi_thermal_pm]
    126 ?        I      0:01  \_ [kworker/4:1-mm_percpu_wq]
    131 ?        S      0:01  \_ [hwrng]
    132 ?        I<     0:00  \_ [kworker/R-hfi-updates]
    134 ?        I<     0:00  \_ [kworker/R-mld]
    135 ?        I<     0:00  \_ [kworker/7:1H-kblockd]
    136 ?        I<     0:00  \_ [kworker/R-ipv6_addrconf]
    137 ?        I<     0:00  \_ [kworker/R-kstrp]
    144 ?        I<     0:00  \_ [kworker/R-zswap-shrink]
    146 ?        I<     0:03  \_ [kworker/0:1H-kblockd]
    178 ?        I<     0:02  \_ [kworker/10:1H-i915_cleanup]
    215 ?        I<     0:01  \_ [kworker/11:1H-i915_cleanup]
    238 ?        I<     0:00  \_ [kworker/1:1H-i915_cleanup]
    240 ?        I<     0:03  \_ [kworker/2:1H-i915_cleanup]
    241 ?        I<     0:01  \_ [kworker/4:1H-kblockd]
    243 ?        I<     0:00  \_ [kworker/3:1H-i915_cleanup]
    244 ?        I<     0:00  \_ [kworker/5:1H-kblockd]
    245 ?        I<     0:00  \_ [kworker/6:1H-kblockd]
    246 ?        I<     0:04  \_ [kworker/9:1H-i915_cleanup]
    249 ?        I<     0:00  \_ [kworker/R-nvme-wq]
    250 ?        I<     0:00  \_ [kworker/R-nvme-reset-wq]
    251 ?        I<     0:00  \_ [kworker/R-nvme-delete-wq]
    252 ?        I<     0:00  \_ [kworker/R-nvme-auth-wq]
    255 ?        I<     0:00  \_ [kworker/R-ktpacpid]
    260 ?        I<     0:00  \_ [kworker/R-kdmflush/253:0]
    261 ?        I<     0:00  \_ [kworker/R-kdmflush/253:1]
    262 ?        I<     0:00  \_ [kworker/R-kdmflush/253:2]
    269 ?        I<     0:00  \_ [kworker/R-ttm]
    273 ?        S      0:00  \_ [card1-crtc0]
    274 ?        S      0:00  \_ [card1-crtc1]
    275 ?        S      0:00  \_ [card1-crtc2]
    276 ?        S      0:00  \_ [card1-crtc3]
    327 ?        S      0:00  \_ [jbd2/dm-1-8]
    328 ?        I<     0:00  \_ [kworker/R-ext4-rsv-conversion]
    394 ?        S      0:00  \_ [psimon]
    412 ?        I<     0:00  \_ [kworker/R-iprt-VBoxWQueue]
    415 ?        S      0:00  \_ [iprt-VBoxTscThread]
    426 ?        S      0:00  \_ [psimon]
    544 ?        S      0:00  \_ [irq/56-SYNA8016:00]
    692 ?        I<     0:00  \_ [kworker/R-cfg80211]
    725 ?        S      0:00  \_ [irq/175-mei_me]
    726 ?        S      0:01  \_ [irq/176-iwlwifi:default_queue]
    727 ?        S      0:00  \_ [irq/177-iwlwifi:queue_1]
    728 ?        S      0:00  \_ [irq/178-iwlwifi:queue_2]
    729 ?        S      0:00  \_ [irq/179-iwlwifi:queue_3]
    730 ?        S      0:00  \_ [irq/180-iwlwifi:queue_4]
    731 ?        S      0:00  \_ [irq/181-iwlwifi:queue_5]
    732 ?        S      0:00  \_ [irq/182-iwlwifi:queue_6]
    733 ?        S      0:00  \_ [irq/183-iwlwifi:queue_7]
    734 ?        S      0:00  \_ [irq/184-iwlwifi:queue_8]
    735 ?        S      0:00  \_ [irq/185-iwlwifi:queue_9]
    736 ?        S      0:00  \_ [irq/186-iwlwifi:queue_10]
    737 ?        S      0:00  \_ [irq/187-iwlwifi:queue_11]
    738 ?        S      0:00  \_ [irq/188-iwlwifi:queue_12]
    739 ?        S      0:00  \_ [irq/189-iwlwifi:exception]
    751 ?        I<     0:00  \_ [kworker/R-nfc0_nci_cmd_wq]
    752 ?        I<     0:00  \_ [kworker/R-nfc0_nci_rx_wq]
    753 ?        I<     0:00  \_ [kworker/R-nfc0_nci_tx_wq]
    754 ?        S      0:00  \_ [irq/190-nxp-nci_i2c]
    793 ?        S      0:04  \_ [jbd2/dm-2-8]
    794 ?        I<     0:00  \_ [kworker/R-ext4-rsv-conversion]
    819 ?        S      0:00  \_ [irq/16-processor_thermal_device_pci]
    872 ?        I<     0:00  \_ [kworker/R-USBC000:00-con1]
    920 ?        I<     0:00  \_ [kworker/R-USBC000:00-con2]
    925 ?        S      0:00  \_ [irq/125-AudioDSP]
   1024 ?        S      0:00  \_ [irq/126-pciehp]
   1025 ?        S      0:00  \_ [irq/127-pciehp]
   1026 ?        S      0:00  \_ [irq/128-pciehp]
   1232 ?        S      0:00  \_ [psimon]
   1674 ?        S<     0:00  \_ [krfcommd]
  19450 ?        I      0:00  \_ [kworker/1:0-mm_percpu_wq]
  90891 ?        I      0:00  \_ [kworker/10:2-mm_percpu_wq]
 117396 ?        I      0:00  \_ [kworker/7:0-events]
 119257 ?        I      0:00  \_ [kworker/2:1-events]
 119442 ?        I      0:00  \_ [kworker/0:1-events]
 121014 ?        I      0:00  \_ [kworker/9:2-mm_percpu_wq]
 129524 ?        I      0:00  \_ [kworker/8:2-i915-unordered]
 131435 ?        I      0:00  \_ [kworker/11:2-mm_percpu_wq]
 131799 ?        I      0:00  \_ [kworker/5:2-mm_percpu_wq]
 137506 ?        I      0:00  \_ [kworker/1:1]
 149672 ?        I<     0:04  \_ [kworker/u49:0-rb_allocator]
 151142 ?        I      0:00  \_ [kworker/2:2-events]
 154040 ?        I<     0:03  \_ [kworker/u49:1-hci0]
 156264 ?        I      0:05  \_ [kworker/u48:1-events_power_efficient]
 157073 ?        I      0:00  \_ [kworker/6:0-events]
 160804 ?        I      0:00  \_ [kworker/7:2-events]
 167237 ?        I      0:00  \_ [kworker/0:2]
 167571 ?        I<     0:01  \_ [kworker/u49:3-hci0]
 169279 ?        I      0:00  \_ [kworker/9:0-events]
 170638 ?        I      0:00  \_ [kworker/11:1-events]
 172326 ?        I      0:00  \_ [kworker/5:0-events]
 172665 ?        I      0:00  \_ [kworker/6:1-events]
 173007 ?        I      0:00  \_ [kworker/4:0]
 173254 ?        I      0:00  \_ [kworker/3:2-events]
 173683 ?        I      0:00  \_ [kworker/10:1-events]
 174231 ?        I      0:01  \_ [kworker/u48:0-events_unbound]
 175032 ?        I      0:00  \_ [kworker/8:0-events]
 175033 ?        I<     0:00  \_ [kworker/u49:2-i915_flip]
 175483 ?        I      0:00  \_ [kworker/3:3-events]
 176218 ?        I      0:00  \_ [kworker/u48:3-flush-253:2]
 176388 ?        I      0:00  \_ [kworker/11:0-events]
 176721 ?        I      0:00  \_ [kworker/6:2-events]
 176722 ?        I      0:00  \_ [kworker/6:3-events]
 177078 ?        I      0:00  \_ [kworker/8:1-events]
 177509 ?        I      0:00  \_ [kworker/2:0]
 178285 ?        I      0:00  \_ [kworker/3:0-events]
      1 ?        Ss     0:03 /sbin/init
    374 ?        Ss     0:01  \_ /usr/lib/systemd/systemd-journald
    389 ?        Ss     0:00  \_ /usr/lib/systemd/systemd-userdbd
 177048 ?        S      0:00  |   \_ systemd-userwork: waiting...
 177049 ?        S      0:00  |   \_ systemd-userwork: waiting...
 177191 ?        S      0:00  |   \_ systemd-userwork: waiting...
    413 ?        Ss     0:00  \_ /usr/lib/systemd/systemd-udevd
    425 ?        Ss     0:27  \_ /usr/lib/systemd/systemd-resolved
    798 ?        Ss     0:00  \_ /usr/bin/mount.ntfs /dev/nvme0n1p3 /windows -o rw,nosuid,nodev,user_id=0,group_id=0,allow_other,blksize=4096
    924 ?        Ss     0:00  \_ /usr/bin/dbus-broker-launch --scope system --audit
    927 ?        S      0:03  |   \_ dbus-broker --log 10 --controller 9 --machine-id 8cc33bce363743a581696964c4f664d1 --max-bytes 536870912 --max-fds 4096 --max-matches 131072 --audit
    929 ?        Ssl    1:00  \_ /usr/bin/NetworkManager --no-daemon
    930 ?        Ss     0:02  \_ /usr/lib/bluetooth/bluetoothd
    931 ?        Ssl    0:00  \_ /usr/lib/boltd
    935 ?        Ss     0:15  \_ /usr/lib/systemd/systemd-logind
    946 ?        Ssl    0:00  \_ /usr/lib/polkit-1/polkitd --no-debug --log-level=notice
    999 ?        Ss     0:00  \_ /usr/bin/wpa_supplicant -u -s -O /run/wpa_supplicant
   1000 ?        Ss     0:00  \_ /usr/bin/cupsd -l
   1001 ?        Ss     0:00  \_ sshd: /usr/bin/sshd -D [listener] 0 of 10-100 startups
   1004 tty1     Ss+    0:00  \_ /usr/bin/agetty --noreset --noclear --issue-file=/etc/issue:/etc/issue.d:/run/issue.d:/usr/lib/issue.d - linux
   1005 tty2     Ssl+   0:00  \_ /usr/bin/lemurs
   1246 tty2     Sl+   11:20  |   \_ sway
   1288 ?        SLsl   0:24  |       \_ nextcloud --background
   1289 ?        Ssl    0:00  |       \_ localsend --hidden
   1910 ?        SLsl   4:10  |       \_ /usr/lib/thunderbird/thunderbird
   2638 ?        Ssl    0:43  |       \_ Telegram
   2642 ?        Ss     0:00  |       \_ bwrap --args 42 -- Telegram
   2705 ?        S      0:00  |       |   \_ bwrap --args 42 -- Telegram
   2706 ?        Sl     2:41  |       |       \_ Telegram
   3091 ?        SLsl   0:55  |       \_ remmina
   3093 ?        Ssl    0:17  |       \_ /usr/bin/python /usr/bin/blueman-applet
   4664 ?        Ssl    0:00  |       \_ localsend --hidden
   4709 tty2     Sl+    0:00  |       \_ swaybg -o * -i /home/mt/Pictures/wallpapers/desktop/arch5.png -m fill
   4710 tty2     Sl+    5:36  |       \_ waybar -b bar-0
 132899 ?        Ssl    0:00  |       \_ alacritty
 132908 pts/0    Ss     0:00  |       |   \_ /usr/bin/zsh
 133268 pts/0    S+     0:00  |       |       \_ sudo ssh root@pve5
 133285 pts/1    Ss     0:00  |       |           \_ sudo ssh root@pve5
 133286 pts/1    S+     0:00  |       |               \_ ssh root@pve5
 177918 ?        Ssl    0:00  |       \_ alacritty
 177927 pts/2    Ss     0:00  |           \_ /usr/bin/zsh
 178012 pts/2    S      0:00  |               \_ /bin/bash
 178352 pts/2    S+     0:00  |                   \_ sudo su
 178367 pts/3    Ss     0:00  |                       \_ sudo su
 178368 pts/3    S      0:00  |                           \_ su
 178370 pts/3    S      0:00  |                               \_ zsh
 178387 pts/3    R+     0:00  |                                   \_ ps fax
 178388 pts/3    S+     0:00  |                                   \_ curl -F file=@- 0x0.st
   1234 ?        Ss     0:00  \_ /usr/lib/systemd/systemd --user
   1236 ?        S      0:00  |   \_ (sd-pam)
   1293 ?        Ss     0:00  |   \_ /usr/bin/dbus-broker-launch --scope user
   1314 ?        S      0:01  |   |   \_ dbus-broker --log 11 --controller 10 --machine-id 8cc33bce363743a581696964c4f664d1 --max-bytes 100000000000000 --max-fds 25000000000000 --max-matches 5000000000
   1316 ?        Ssl    0:00  |   \_ /usr/lib/gvfsd
  50473 ?        Sl     0:00  |   |   \_ /usr/lib/gvfsd-computer --spawner :1.5 /org/gtk/gvfs/exec_spaw/0
  50490 ?        Sl     0:00  |   |   \_ /usr/lib/gvfsd-network --spawner :1.5 /org/gtk/gvfs/exec_spaw/1
 126820 ?        Sl     0:00  |   |   \_ /usr/lib/gvfsd-trash --spawner :1.5 /org/gtk/gvfs/exec_spaw/2
   1333 ?        Sl     0:00  |   \_ /usr/lib/gvfsd-fuse /run/user/1000/gvfs -f
   1374 ?        Ssl    0:00  |   \_ /usr/lib/at-spi-bus-launcher
   1404 ?        S      0:00  |   |   \_ /usr/bin/dbus-broker-launch --config-file=/usr/share/defaults/at-spi2/accessibility.conf --scope user
   1405 ?        S      0:00  |   |       \_ dbus-broker --log 10 --controller 9 --machine-id 8cc33bce363743a581696964c4f664d1 --max-bytes 100000000000000 --max-fds 6400000 --max-matches 5000000000
   1411 ?        Ssl    0:00  |   \_ /usr/lib/xdg-desktop-portal
   1419 ?        Ssl    0:00  |   \_ /usr/lib/xdg-permission-store
   1433 ?        Ssl    0:00  |   \_ /usr/lib/xdg-document-portal
   1439 ?        Ss     0:00  |   |   \_ fusermount3 -o rw,nosuid,nodev,fsname=portal,auto_unmount,subtype=portal -- /run/user/1000/doc
   1443 ?        Ssl    0:00  |   \_ /usr/lib/xdg-desktop-portal-gtk
   1451 ?        Ssl    0:00  |   \_ /usr/lib/at-spi2-registryd --use-gnome-session
   1461 ?        S<sl   0:00  |   \_ /usr/bin/pipewire
   1462 ?        S<sl   0:00  |   \_ /usr/bin/wireplumber
   1526 ?        Ssl    0:00  |   \_ /usr/lib/gvfsd-metadata
   1535 ?        S<sl   0:13  |   \_ /usr/bin/pulseaudio --daemonize=no --log-target=journal
   1882 ?        Sl     0:00  |   |   \_ /usr/lib/pulse/gsettings-helper
   1889 ?        Ssl    0:00  |   \_ /usr/bin/gnome-keyring-daemon --start --foreground --components=secrets
   1894 ?        SLsl   0:00  |   \_ /usr/bin/gnome-keyring-daemon --foreground --components=pkcs11,secrets --control-directory=/run/user/1000/keyring
   2500 ?        Ssl    0:49  |   \_ /usr/bin/dunst
   2691 ?        Ssl    0:00  |   \_ /usr/lib/flatpak-session-helper
   2697 ?        Ss     0:00  |   \_ server --sh -n /run/user/1000/.flatpak-helper/pkcs11-flatpak-2691 --provider p11-kit-trust.so pkcs11:model=p11-kit-trust?write-protected=yes
   3220 ?        Ssl    0:00  |   \_ /usr/lib/dconf-service
   5727 ?        Ss     0:01  |   \_ /usr/lib/gnupg/keyboxd --supervised
   5729 ?        SLsl   0:03  |   \_ /usr/bin/gpg-agent --supervised
   5731 ?        SLl    0:00  |   |   \_ scdaemon --multi-server
  50441 ?        Ssl    0:00  |   \_ /usr/lib/gvfs-udisks2-volume-monitor
   1369 ?        Sl    54:27  \_ /usr/lib/firefox/firefox
   1720 ?        S      0:00  |   \_ /usr/lib/firefox/firefox -contentproc -ipcHandle 0 -signalPipe 1 -initialChannelId {0f8ce272-d93b-4a52-acdf-f0e6fb31ce4c} -parentPid 1369 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 1 forkserver
   1863 ?        Sl     0:00  |       \_ /usr/lib/firefox/firefox -contentproc -parentBuildID 20260203190549 -prefsHandle 0:50108 -prefMapHandle 1:285540 -sandboxReporter 2 -chrootClient 3 -ipcHandle 4 -initialChannelId {476359df-4ef8-4e8c-a05f-29ff85c9be9c} -parentPid 1369 -crashReporter 5 -crashHelper 6 -appDir /usr/lib/firefox/browser 2 socket
   1909 ?        Sl     3:13  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50173 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {adb7e928-f402-4521-ac3c-5363646dfdc0} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 3 tab
   1920 ?        Sl     0:00  |       \_ /usr/lib/firefox/firefox -contentproc -parentBuildID 20260203190549 -prefsHandle 0:50173 -prefMapHandle 1:285540 -sandboxReporter 2 -chrootClient 3 -ipcHandle 4 -initialChannelId {348c8767-92ce-4f27-b63f-ac9d8660c7ce} -parentPid 1369 -crashReporter 5 -crashHelper 6 -appDir /usr/lib/firefox/browser 4 rdd
   1985 ?        Sl     0:41  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50211 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {e8fb1aa1-8206-4ee7-832b-51a0d1be8957} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 5 tab
   2109 ?        Sl    11:06  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {f503bb8b-8ae8-4000-a860-ad5137156f91} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 6 tab
   2116 ?        Sl     0:42  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {f3ce1d99-82e1-428e-bed3-6681649abf56} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 7 tab
   2130 ?        Sl     0:03  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {25343b84-4baf-4f87-9750-9435d01466a2} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 8 tab
   2141 ?        Sl     1:10  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {5919d4ec-7a68-4593-9102-b8e6d977e25a} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 9 tab
   2165 ?        Sl     1:22  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {6630a9ff-30c1-4970-b512-e34deb78022b} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 10 tab
   2175 ?        Sl     1:06  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {bb33abd7-59cc-4a66-b7e6-70322f19f269} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 11 tab
   2202 ?        Sl     2:07  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {51486e3e-9b45-4e46-b28e-1d645619d58d} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 12 tab
   2216 ?        Sl     0:20  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {7c2e2564-f521-4058-a978-6e1739313817} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 13 tab
   2239 ?        Sl     1:00  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {2e219140-e4c1-4d21-ad59-9ae9926be7fc} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 14 tab
   2282 ?        Sl     0:33  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {658394d1-0e93-4427-94a3-b365f59acb4b} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 15 tab
   2314 ?        Sl     1:08  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {4dda8295-6985-4465-bd16-d9491468ac06} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 16 tab
   2338 ?        Sl     0:30  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {2084f4d3-ecb8-4d50-9339-a161ce8ff43f} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 17 tab
   2366 ?        Sl     0:20  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {23ad14d2-b2f6-470c-9c73-a1cbc836cad0} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 18 tab
   2391 ?        Sl     0:19  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {5faba93e-a0ee-42b3-8302-a0e646046530} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 19 tab
   2407 ?        Sl     0:25  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {dd96595f-d0b7-4d5a-b7c7-7ba9d4bdd3bb} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 20 tab
   2438 ?        Sl     2:20  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {9b558b2f-eb33-4992-87dc-1c5ca4e581b8} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 21 tab
   2736 ?        Sl     0:00  |       \_ /usr/lib/firefox/firefox -contentproc -parentBuildID 20260203190549 -sandboxingKind 0 -prefsHandle 0:62165 -prefMapHandle 1:285540 -sandboxReporter 2 -chrootClient 3 -ipcHandle 4 -initialChannelId {f214c41a-27d9-4f31-854b-79018527631b} -parentPid 1369 -crashReporter 5 -crashHelper 6 -appDir /usr/lib/firefox/browser 22 utility
   2753 ?        Sl     1:38  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:49910 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {ecd1d1ab-8735-4abc-b8f5-96e3191dbdb8} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 24 tab
   9616 ?        Sl     0:17  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:49962 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {780c3fc3-e23c-44f5-aa2d-c793f82c618f} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 39 tab
  10645 ?        Sl     0:58  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:49962 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {94dadee2-4697-4178-8528-40d98ba81729} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 40 tab
  10704 ?        Sl     0:34  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:49962 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {24eef25d-5c35-421d-8190-358d28b4d11e} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 41 tab
 131963 ?        Sl     0:45  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50230 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {f2db255a-c476-4d3c-98c4-0ae755475730} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 129 tab
 132063 ?        Sl     0:10  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50230 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {0a0efd61-852f-4b1e-9f93-6d297fb5d3cd} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 131 tab
 132130 ?        Sl     0:06  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50230 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {a64222f8-ebdd-4809-9fd6-6060a3c8775b} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 132 tab
 132193 ?        Sl     0:00  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50230 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {e035ffdc-5a05-4755-be02-4d5dd635c144} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 133 tab
 177276 ?        Sl     0:00  |       \_ /usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50310 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parentBuildID 20260203190549 -sandboxReporter 3 -chrootClient 4 -ipcHandle 5 -initialChannelId {a3f76a16-8c96-4291-9ae4-1a16615bf685} -parentPid 1369 -crashReporter 6 -crashHelper 7 -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appDir /usr/lib/firefox/browser 134 tab
   1378 ?        Sl     0:00  \_ /usr/lib/firefox/crashhelper 1369 9 /tmp/ 11
   1454 ?        SNsl   0:00  \_ /usr/lib/rtkit-daemon
   1691 tty2     Sl+    0:35  \_ Xwayland :0 -rootless -core -terminate 10 -listenfd 36 -listenfd 37 -displayfd 122 -wm 119
   1984 ?        Ssl    0:03  \_ /usr/lib/upowerd
   2700 ?        S      0:00  \_ bwrap --args 44 -- xdg-dbus-proxy --args=43
   2701 ?        Sl     0:00  |   \_ xdg-dbus-proxy --args=43
   3218 ?        Sl     0:44  \_ /usr/bin/python /usr/bin/blueman-tray
  27399 ?        Ss     1:40  \_ /usr/lib/wine/../../bin/wineserver
  27405 ?        Ssl    0:00  \_ C:\windows\system32\services.exe
  27408 ?        Ssl    0:02  \_ C:\windows\system32\winedevice.exe
  27416 ?        Ssl    0:09  \_ /usr/lib/udisks2/udisksd
  27418 ?        Ssl    0:00  \_ C:\windows\system32\svchost.exe -k LocalServiceNetworkRestricted
  27423 ?        Ssl    0:00  \_ C:\windows\system32\plugplay.exe
  27436 ?        Ssl    0:35  \_ C:\Program Files (x86)\AnyDesk-116242bd\AnyDesk-116242bd.exe --service
  27476 ?        Ssl    0:00  \_ C:\windows\system32\explorer.exe /desktop
  27504 ?        Ssl    0:00  \_ C:\windows\system32\rpcss.exe
  27552 ?        Ssl    0:00  \_ C:\Program Files (x86)\AnyDesk-116242bd\AnyDesk-116242bd.exe --control
 132912 pts/0    S      0:00  \_ /usr/bin/zsh
 132945 pts/0    Sl     0:00  |   \_ /usr/share/zsh-theme-powerlevel10k/gitstatus/usrbin/gitstatusd -G v1.5.4 -s -1 -u -1 -d -1 -c -1 -m -1 -v FATAL -t 24
 132942 pts/0    S      0:00  \_ /usr/bin/zsh
 132944 pts/0    S      0:00  \_ /usr/bin/zsh
 177931 pts/2    S      0:00  \_ /usr/bin/zsh
 177964 pts/2    Sl     0:00  |   \_ /usr/share/zsh-theme-powerlevel10k/gitstatus/usrbin/gitstatusd -G v1.5.4 -s -1 -u -1 -d -1 -c -1 -m -1 -v FATAL -t 24
 177961 pts/2    S      0:00  \_ /usr/bin/zsh
 177963 pts/2    S      0:00  \_ /usr/bin/zsh

Offline

#19 2026-02-09 20:35:16

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 73,365

Re: [Solved] SSH client works only by sudo

I ran it by sudo:

 177918 ?        Ssl    0:00  |       \_ alacritty
 177927 pts/2    Ss     0:00  |           \_ /usr/bin/zsh
 178012 pts/2    S      0:00  |               \_ /bin/bash
 178352 pts/2    S+     0:00  |                   \_ sudo su
 178367 pts/3    Ss     0:00  |                       \_ sudo su
 178368 pts/3    S      0:00  |                           \_ su
 178370 pts/3    S      0:00  |                               \_ zsh
 178387 pts/3    R+     0:00  |                                   \_ ps fax
 178388 pts/3    S+     0:00  |                                   \_ curl -F file=@- 0x0.st

Why?
Stop doing that altogether.
What is the output when running "loginctl session-status" NOT using sudo?
Also post the complete output of "printenv"

You're not using ly but lemurs - the idea was to run sway manually, https://wiki.archlinux.org/title/Sway#Manually

However:

   1234 ?        Ss     0:00  \_ /usr/lib/systemd/systemd --user
…
   1889 ?        Ssl    0:00  |   \_ /usr/bin/gnome-keyring-daemon --start --foreground --components=secrets
   1894 ?        SLsl   0:00  |   \_ /usr/bin/gnome-keyring-daemon --foreground --components=pkcs11,secrets --control-directory=/run/user/1000/keyring
…
   5727 ?        Ss     0:01  |   \_ /usr/lib/gnupg/keyboxd --supervised
   5729 ?        SLsl   0:03  |   \_ /usr/bin/gpg-agent --supervised
   5731 ?        SLl    0:00  |   |   \_ scdaemon --multi-server

Chances are you're using https://wiki.archlinux.org/title/GnuPG#gpg-agent as ssh-agent and are running into https://wiki.archlinux.org/title/GnuPG# … ent_socket

----
Sidebar

178388 pts/3    S+     0:00  |                                   \_ curl -F file=@- 0x0.st

You got a link that you can share - there's really no point in copying around the internet.

Offline

#20 2026-02-10 11:27:39

kennyisalive
Member
Registered: 2026-01-26
Posts: 29

Re: [Solved] SSH client works only by sudo

loginctl session-status:

 c1 - mt (1000)
  Since: Mon 2026-02-09 09:08:50 MSK; 1 day 4h ago
  State: active
 Leader: 1005 (lemurs)
   Seat: seat0; vc2
    TTY: tty2
 Remote: no
Service: lemurs
   Type: wayland
  Class: user
   Idle: no
   Unit: session-c1.scope
         ├─  1005 /usr/bin/lemurs
         ├─  1246 sway
         ├─  1288 nextcloud --background
         ├─  1289 localsend --hidden
         ├─  1369 /usr/lib/firefox/firefox
         ├─  1378 /usr/lib/firefox/crashhelper 1369 9 /tmp/ 11
         ├─  1691 Xwayland :0 -rootless -core -terminate 10 -listenfd 36 -listenfd 37 -displayfd 122 -wm 119
         ├─  1720 /usr/lib/firefox/firefox -contentproc -ipcHandle 0 -signalPipe 1 -initialChannelId {0f8ce272-d93b-4a52-acdf-f0e6fb31ce4c} -paren>
         ├─  1863 "/usr/lib/firefox/firefox -contentproc -parentBuildID 20260203190549 -prefsHandle 0:50108 -prefMapHandle 1:285540 -sandboxReport>
         ├─  1909 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50173 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─  1910 /usr/lib/thunderbird/thunderbird
         ├─  1920 "/usr/lib/firefox/firefox -contentproc -parentBuildID 20260203190549 -prefsHandle 0:50173 -prefMapHandle 1:285540 -sandboxReport>
         ├─  1985 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50211 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─  2109 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─  2116 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─  2130 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─  2141 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─  2165 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─  2175 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─  2202 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─  2216 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─  2239 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─  2282 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─  2314 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─  2338 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─  2366 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─  2391 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─  2407 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─  2438 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:38632 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─  2638 Telegram
         ├─  2736 "/usr/lib/firefox/firefox -contentproc -parentBuildID 20260203190549 -sandboxingKind 0 -prefsHandle 0:62165 -prefMapHandle 1:285>
         ├─  2753 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:49910 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─  3091 remmina
         ├─  3093 /usr/bin/python /usr/bin/blueman-applet
         ├─  3218 /usr/bin/python /usr/bin/blueman-tray
         ├─  4664 localsend --hidden
         ├─  4709 swaybg -o "*" -i /home/mt/Pictures/wallpapers/desktop/arch5.png -m fill
         ├─  4710 waybar -b bar-0
         ├─  9616 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:49962 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─ 10645 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:49962 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─ 10704 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:49962 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─ 27399 /usr/lib/wine/../../bin/wineserver
         ├─ 27405 "C:\\windows\\system32\\services.exe"
         ├─ 27408 "C:\\windows\\system32\\winedevice.exe"
         ├─ 27418 "C:\\windows\\system32\\svchost.exe" -k LocalServiceNetworkRestricted
         ├─ 27423 "C:\\windows\\system32\\plugplay.exe"
         ├─ 27436 "C:\\Program Files (x86)\\AnyDesk-116242bd\\AnyDesk-116242bd.exe" --service
         ├─ 27476 "C:\\windows\\system32\\explorer.exe" /desktop
         ├─ 27504 "C:\\windows\\system32\\rpcss.exe"
         ├─ 27552 "C:\\Program Files (x86)\\AnyDesk-116242bd\\AnyDesk-116242bd.exe" --control
         ├─131963 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50230 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─132063 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50230 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─524665 alacritty
         ├─524674 /usr/bin/zsh
         ├─524718 /usr/bin/zsh
         ├─524719 /usr/bin/zsh
         ├─524722 /usr/bin/zsh
         ├─524727 /usr/share/zsh-theme-powerlevel10k/gitstatus/usrbin/gitstatusd -G v1.5.4 -s -1 -u -1 -d -1 -c -1 -m -1 -v FATAL -t 24
         ├─524769 ssh adminko@s-opensearch
         ├─526481 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50377 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─527309 alacritty
         ├─527318 /usr/bin/zsh
         ├─527322 /usr/bin/zsh
         ├─527352 /usr/bin/zsh
         ├─527353 /usr/bin/zsh
         ├─527355 /usr/share/zsh-theme-powerlevel10k/gitstatus/usrbin/gitstatusd -G v1.5.4 -s -1 -u -1 -d -1 -c -1 -m -1 -v FATAL -t 24
         ├─639203 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50379 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─639210 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50379 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─639972 "/usr/lib/firefox/firefox -contentproc -isForBrowser -prefsHandle 0:50379 -prefMapHandle 1:285540 -jsInitHandle 2:223968 -parent>
         ├─640865 loginctl session-status
         └─640866 less

фев 10 11:20:34 dwarch sudo[584617]: pam_unix(sudo:session): session closed for user root
фев 10 11:22:38 dwarch sudo[582569]: pam_unix(sudo:session): session closed for user root
фев 10 11:22:58 dwarch sudo[585555]: pam_unix(sudo:auth): authentication failure; logname= uid=1000 euid=0 tty=/dev/pts/2 ruser=mt rhost=  user=mt
фев 10 11:23:01 dwarch sudo[585555]:       mt : TTY=pts/2 ; PWD=/home/mt ; USER=root ; COMMAND=/usr/bin/ssh adminko@s-opensearch-dev
фев 10 11:23:01 dwarch sudo[585555]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=1000)
фев 10 11:23:15 dwarch sudo[585555]: pam_unix(sudo:session): session closed for user root
фев 10 11:23:17 dwarch sudo[585673]:       mt : TTY=pts/2 ; PWD=/home/mt ; USER=root ; COMMAND=/usr/bin/ssh adminko@s-opensearch-dev
фев 10 11:23:17 dwarch sudo[585673]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=1000)
фев 10 11:24:11 dwarch sudo[585673]: pam_unix(sudo:session): session closed for user root
фев 10 13:50:04 dwarch Telegram[2638]: Corrupt JPEG data: premature end of data segment

printenv:

 
ALACRITTY_LOG=/tmp/Alacritty-527309.log
ALACRITTY_SOCKET=/run/user/1000/Alacritty-wayland-1-527309.sock
ALACRITTY_WINDOW_ID=94668871100656
COLORTERM=truecolor
DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus
DEBUGINFOD_URLS=https://debuginfod.archlinux.org
DISPLAY=:0
GRADLE_HOME=/usr/share/java/gradle
HOME=/home/mt
I3SOCK=/run/user/1000/sway-ipc.1000.1246.sock
INVOCATION_ID=99345e3e18d6441d960aa2a74dc5bf90
LANG=en_US.UTF-8
LC_ADDRESS=ru_RU.UTF-8
LC_COLLATE=ru_RU.UTF-8
LC_CTYPE=ru_RU.UTF-8
LC_IDENTIFICATION=ru_RU.UTF-8
LC_MEASUREMENT=ru_RU.UTF-8
LC_MESSAGES=en_US.UTF-8
LC_MONETARY=en_US.UTF-8
LC_NAME=ru_RU.UTF-8
LC_NUMERIC=ru_RU.UTF-8
LC_PAPER=ru_RU.UTF-8
LC_TELEPHONE=ru_RU.UTF-8
LC_TIME=ru_RU.UTF-8
LOGNAME=mt
MAIL=/var/spool/mail/mt
MEMORY_PRESSURE_WATCH=/sys/fs/cgroup/system.slice/lemurs.service/memory.pressure
MEMORY_PRESSURE_WRITE=c29tZSAyMDAwMDAgMjAwMDAwMAA=
MOTD_SHOWN=pam
PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/opt/android-sdk/platform-tools:/var/lib/flatpak/exports/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/home/mt/.local/bin
PSTEST_PROFILE_LOAD=61924976-22e1-48bd-951e-8897d67549c9
PWD=/home/mt
SHELL=/usr/bin/zsh
SHLVL=1
SWAYSOCK=/run/user/1000/sway-ipc.1000.1246.sock
SYSTEMD_EXEC_PID=1005
TERM=alacritty
TERMINAL=alacritty
USER=mt
WAYLAND_DISPLAY=wayland-1
WINDOWID=94668871100656
XCURSOR_SIZE=24
XDG_CACHE_HOME=/home/mt/.cache
XDG_CONFIG_DIRS=/etc/xdg
XDG_CONFIG_HOME=/home/mt/.config
XDG_DATA_DIRS=/home/mt/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share
XDG_DATA_HOME=/home/mt/.local/share
XDG_RUNTIME_DIR=/run/user/1000
XDG_SEAT=seat0
XDG_SESSION_CLASS=user
XDG_SESSION_ID=c1
XDG_SESSION_TYPE=wayland
XDG_STATE_HOME=/home/mt/.local/state
XDG_VTNR=2
_=/usr/bin/printenv
OLDPWD=/home/mt
P9K_TTY=old
_P9K_TTY=/dev/pts/0
ZSH=/home/mt/.oh-my-zsh
UPDATE_ZSH_DAYS=13
PAGER=less
LESS=-R
LSCOLORS=Gxfxcxdxbxegedabagacad
LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.7z=01;31:*.ace=01;31:*.alz=01;31:*.apk=01;31:*.arc=01;31:*.arj=01;31:*.bz=01;31:*.bz2=01;31:*.cab=01;31:*.cpio=01;31:*.crate=01;31:*.deb=01;31:*.drpm=01;31:*.dwm=01;31:*.dz=01;31:*.ear=01;31:*.egg=01;31:*.esd=01;31:*.gz=01;31:*.jar=01;31:*.lha=01;31:*.lrz=01;31:*.lz=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.lzo=01;31:*.pyz=01;31:*.rar=01;31:*.rpm=01;31:*.rz=01;31:*.sar=01;31:*.swm=01;31:*.t7z=01;31:*.tar=01;31:*.taz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tgz=01;31:*.tlz=01;31:*.txz=01;31:*.tz=01;31:*.tzo=01;31:*.tzst=01;31:*.udeb=01;31:*.war=01;31:*.whl=01;31:*.wim=01;31:*.xz=01;31:*.z=01;31:*.zip=01;31:*.zoo=01;31:*.zst=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.jxl=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:
P9K_SSH=0
_P9K_SSH_TTY=/dev/pts/0
VISUAL=vim
EDITOR=vim
PASSWORD_STORE_CHARACTER_SET=123456789abcdefghjklmnpqrstuvwxyzABCDEFGHJKMNPQRSTUVWXYZ!@#$%^&*{}[]:;,.|

About Ly: I usually use Ly, but I tried Lemurus as an experiment.

Chances are you're using https://wiki.archlinux.org/title/GnuPG#gpg-agent as ssh-agent and are running into https://wiki.archlinux.org/title/GnuPG# … ent_socket

my echo $XDG_RUNTIME_DIR/keyring/ssh:                                                                         

/run/user/1000/keyring/ssh

The article recommends disabling gcr-ssh-agent.service and gcr-ssh-agent.socket But I don't have these services:

sudo systemctl status gcr-ssh-agent.service                                                                    
Unit gcr-ssh-agent.service could not be found.

sudo systemctl status gcr-ssh-agent.socket                                                                   
Unit gcr-ssh-agent.socket could not be found.

Offline

#21 2026-02-10 14:38:49

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 73,365

Re: [Solved] SSH client works only by sudo

ZSH=/home/mt/.oh-my-zsh

For good measure and because OMZ is usually at fault: Get rid of that.

PASSWORD_STORE_CHARACTER_SET=123456789abcdefghjklmnpqrstuvwxyzABCDEFGHJKMNPQRSTUVWXYZ!@#$%^&*{}[]:;,.|

Are you (also) using https://wiki.archlinux.org/title/Pass#C … H_example) ?

sudo systemctl status gcr-ssh-agent.service                                                                   
Unit gcr-ssh-agent.service could not be found.

sudo systemctl status gcr-ssh-agent.socket                                                                   
Unit gcr-ssh-agent.socket could not be found.

Those are user services/sockets

systemct --user status gcr-ssh-agent.service

and please generally keep your hands of random sudo invocation

SSH_AUTH_SOCK isn't set at all.
Maybe we should start this at the other end.
How do you *intend* to manage you ssh keys and/or passwords?

----
Fwwi, 0x0.st probably fails on https://en.wikipedia.org/wiki/HTTP_451 - courtesy of your friendly local dicktator roll

Offline

#22 2026-02-12 13:30:04

kennyisalive
Member
Registered: 2026-01-26
Posts: 29

Re: [Solved] SSH client works only by sudo

seth wrote:
ZSH=/home/mt/.oh-my-zsh

For good measure and because OMZ is usually at fault: Get rid of that.

PASSWORD_STORE_CHARACTER_SET=123456789abcdefghjklmnpqrstuvwxyzABCDEFGHJKMNPQRSTUVWXYZ!@#$%^&*{}[]:;,.|

Are you (also) using https://wiki.archlinux.org/title/Pass#C … H_example) ?

Yes, I need it for exclude O letter and zero.

sudo systemctl status gcr-ssh-agent.service                                                                   
Unit gcr-ssh-agent.service could not be found.

sudo systemctl status gcr-ssh-agent.socket                                                                   
Unit gcr-ssh-agent.socket could not be found.
Those are user services/sockets

systemct --user status gcr-ssh-agent.service

and please generally keep your hands of random sudo invocation

I was disable it, but no changes. Steel
ssh_askpass: exec(/usr/lib/ssh/ssh-askpass): No such file or directory

SSH_AUTH_SOCK isn't set at all.
Maybe we should start this at the other end.
How do you *intend* to manage you ssh keys and/or passwords?

I dont know how it works by default.

Offline

#23 2026-02-12 13:40:25

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 73,365

Re: [Solved] SSH client works only by sudo

seth wrote:

How do you *intend* to manage you ssh keys and/or passwords?

The thing is that your setup is a complete mess, you're apparently using multiple password managers, seemingly gpg as ssh agent, but there was at least at some point also another ssh-agent instance running and SSH_AUTH_SOCK is either not properly set or gets overridden.
So the plan forward is to clean this up, you explain how you would like the system to function (what password manager and whether you want to use any ssh agent at all) and then we'll change the system into that direction.

Offline

#24 2026-02-13 05:48:35

kennyisalive
Member
Registered: 2026-01-26
Posts: 29

Re: [Solved] SSH client works only by sudo

seth wrote:
seth wrote:

How do you *intend* to manage you ssh keys and/or passwords?

The thing is that your setup is a complete mess, you're apparently using multiple password managers, seemingly gpg as ssh agent, but there was at least at some point also another ssh-agent instance running and SSH_AUTH_SOCK is either not properly set or gets overridden.
So the plan forward is to clean this up, you explain how you would like the system to function (what password manager and whether you want to use any ssh agent at all) and then we'll change the system into that direction.

I always thought that everything related to SSH was handled by openSSH, including authentication management.

I wouldn't want SSH passwords for hosts stored anywhere. I want to enter them every time I'm prompted. Only RSA keys should be stored.

I use gpg for pass. But pass has nothing to do with ssh-agent, and shouldn't have anything to do with it.

Offline

#25 2026-02-13 15:42:03

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 73,365

Re: [Solved] SSH client works only by sudo

I use gpg for pass. But pass has nothing to do with ssh-agent, and shouldn't have anything to do with it.

Yes "should" …
pass will likely invoke gpg and somehow the gpg-agent-ssh.socket, https://wiki.archlinux.org/title/GnuPG#gpg-agent
Try to mask that

systemctl --user mask gpg-agent-ssh.socket

and see whether you still run into it.

The question is why ssh triggers the socket, ie likely runs but omits the result of "gpgconf --list-dirs agent-ssh-socket"

Offline

Board footer

Powered by FluxBB