Opensnitch with different user accounts #719
-
Hello, The user interface is automatically launched in the application in /home/flopez/.config/autostart/opensnitch_ui.desktop When you switch to another user account the UI of opensnitch does not launch properly with the following error message:
I think that the problem is with the ""Address already in use" message ¿Is it possible to use opensnitch from different user accounts or are there any plan to do it possible? Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
hi @ifernandolopez , it's not possible to use the GUI from a different user account while the GUI is running on another user session. The GUI is composed of 2 components: a grpc server and the GUI itself. In order to use the Qt GUI from different user accounts (local or remote), we should:
Decoupling the server from the UI would allow us to have different UIs (TUI, GUI, web UI, ...). I worked on it a couple of years ago, but I haven't had time to update it https://github.com/gustavo-iniguez-goya/opensnitch/tree/cli/server |
Beta Was this translation helpful? Give feedback.
hi @ifernandolopez , it's not possible to use the GUI from a different user account while the GUI is running on another user session.
The GUI is composed of 2 components: a grpc server and the GUI itself. In order to use the Qt GUI from different user accounts (local or remote), we should:
Decoupling the server from the UI would allow us to have different UIs (TUI, GUI, web UI, ...). I worked on it a couple of years ago, but I haven't had time to update it https://github.com/gustavo-iniguez-goya/opensnitch/tree/c…