You are not logged in.
After installing firewalld by
sudo pacman -S firewalld
systemctl enable --now firewalldand trying to run
firewall-appletthis error message appears:
Traceback (most recent call last):
File "/usr/bin/firewall-applet", line 24, in <module>
from PyQt5 import QtGui, QtCore, QtWidgets
ModuleNotFoundError: No module named 'PyQt5'Installing PyQt5 manually with
pip install PyQt5the error changes to
Traceback (most recent call last):
File "/usr/bin/firewall-applet", line 31, in <module>
from dbus.mainloop.pyqt5 import DBusQtMainLoop
ModuleNotFoundError: No module named 'dbus.mainloop.pyqt5'Any idea how to solve this in order to get the little firewall icon in the taskbar working?
Last edited by DanielHCoding (2022-10-16 12:17:17)
Offline
Pacman told you when you installed firewalld that to use the applet you also need to install python-pyqt5.
Offline
That's the solution. I simply overlooked that the applet is optional. After installing the optional dependencies
sudo pacman -S nm-connection-editor python-pyqt5and rebooting everything works fine.
Thanks a lot for the quick help!
Last edited by DanielHCoding (2022-10-16 16:31:05)
Offline