On 4/18/24 05:34, eben@gmx.us wrote:
On 4/18/24 05:27, David Christensen wrote:On 4/17/24 12:37, Richmond wrote:What are the permissions on the nm-applet binary? maybe it doesn't have permission to execute, or the process which starts it doesn't have permission.2024-04-18 02:24:20 root@laalaa ~ # ls -l `which nm-applet` -rwxr-xr-x 1 root root 250784 Feb 27 2021 /usr/bin/nm-applet I do not know what binary starts nm-applet, but here is a WAG: 2024-04-18 02:27:13 root@laalaa ~ # ll -l `which xfce4-panel` -rwxr-xr-x 1 root root 363328 2021-02-27 08:29:44 /usr/bin/xfce4-panelCan PPID tell you?
Yes. xfce4-session is the parent of nm-applet: 2024-04-18 10:27:32 dpchrist@laalaa ~ $ ps -Ao "%p %P %a" | grep nm-applet 1530 1379 nm-applet 3937 3865 grep nm-applet 2024-04-18 10:27:44 dpchrist@laalaa ~ $ ps -Ao "%p %P %a" | grep 1379 1379 1344 xfce4-session 1421 1379 /usr/bin/ssh-agent x-session-manager1458 1379 xfwm4 --display :0.0 --sm-client-id 2d1bdc0a5-06f2-4835-944e-7e402203bd9f 1471 1379 xfsettingsd --display :0.0 --sm-client-id 29896f657-477c-498a-8156-db9d51f74bcf 1497 1379 xfce4-panel --display :0.0 --sm-client-id 23fd394e3-a4ee-485b-b43c-38bf845d6699 1501 1379 xfdesktop --display :0.0 --sm-client-id 2c913de99-acac-4d70-b6e9-8eda44b6f6da 1506 1379 xfce4-power-manager --restart --sm-client-id 24cebdb39-bdc2-496f-aab0-7b11397b48d3
1513 1379 /usr/lib/x86_64-linux-gnu/xfce4/notifyd/xfce4-notifyd 1515 1379 light-locker 1516 1379 /usr/bin/python3 /usr/share/system-config-printer/applet.py1517 1379 /usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1
1524 1379 xiccd 1530 1379 nm-applet 3940 3865 grep 1379 2024-04-18 10:29:20 dpchrist@laalaa ~ $ ls -l `which xfce4-session` -rwxr-xr-x 1 root root 260496 Dec 23 2020 /usr/bin/xfce4-session David