Hello, "P. p. phalantha" skribis: > Invoking nm-connection-editor from the command line and repeating these > steps gave the informative error message: > > ``` > (nm-connection-editor:1751): GLib-GIO-ERROR **: 02:02:58.502: Settings > schema 'org.gnome.nm-applet.eap' is not installed > Trace/breakpoint trap > ``` > > I found a fix via the installation of libnma, thanks to a 2012 thread on > LinuxQuestions.org: > https://www.linuxquestions.org/questions/slackware-14/network-manager-applet-1-16-0-i586-1-package-is-missing-%27org-gnome-nm-applet%27-schema-4175670946/. > After the installation of libnma I was able to successfully add the network. I experienced this problem just today and your bug report was helpful! Actually, both libnma and network-manager-applet provide the relevant schema file, but they’re different: --8<---------------cut here---------------start------------->8--- $ find $(guix build libnma) -name \*nm-applet\* /gnu/store/hh0mq79nqhcwkpx7v68dibcv9lbha7sn-libnma-1.10.2/share/glib-2.0/schemas/org.gnome.nm-applet.gschema.xml $ diff -u /gnu/store/9hl2p2xzlkkwibankp8604ngha880yn2-network-manager-applet-1.30.0/share/glib-2.0/schemas/org.gnome.nm-applet.gschema.xml /gnu/store/hh0mq79nqhcwkpx7v68dibcv9lbha7sn-libnma-1.10.2/share/glib-2.0/schemas/org.gnome.nm-applet.gschema.xml --- /gnu/store/9hl2p2xzlkkwibankp8604ngha880yn2-network-manager-applet-1.30.0/share/glib-2.0/schemas/org.gnome.nm-applet.gschema.xml 1970-01-01 01:00:01.000000000 +0100 +++ /gnu/store/hh0mq79nqhcwkpx7v68dibcv9lbha7sn-libnma-1.10.2/share/glib-2.0/schemas/org.gnome.nm-applet.gschema.xml 1970-01-01 01:00:01.000000000 +0100 @@ -1,6 +1,6 @@ - + false Disable connected notifications @@ -37,4 +37,16 @@ Set to FALSE to disable displaying the applet in the notification area. + + + false + Ignore CA certificate + Set this to true to disable warnings about CA certificates in EAP authentication. + + + false + Ignore CA certificate + Set this to true to disable warnings about CA certificates in phase 2 of EAP authentication. + + --8<---------------cut here---------------end--------------->8--- The one in libnma has the extra “.eap” thing. The attached hack works, but it looks like something’s wrong, maybe related to ? Ludo’.