We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4d1b20 commit e134064Copy full SHA for e134064
src/content/docs/getting-started/probe-setup.mdx
@@ -24,7 +24,14 @@ users without root privileges access to the debug probes as well.
24
devices.
25
26
If you're still unable to access the debug probes after following these steps,
27
-try adding your user to the plugdev group.
+try adding your user to the plugdev group. This group needs to be a system group
28
+if you use systemd version higher than v258. In this case you can try the following
29
+commands to fix the udev rules :
30
+
31
+```bash
32
+sudo groupadd --system plugdev
33
+sudo usermod -a -G plugdev $USER
34
+```
35
36
[^1]: The file needs to have an initial number lower than 73, otherwise the udev
37
rules do not get applied properly. See
0 commit comments