Projects/Solid/Plasma-nm: Difference between revisions

From KDE TechBase
(Created page with "'''TBD''' == How to report a bug == Go to [http://bugs.kde.org bugs.kde.org] and choose plasma-nm product. If your bug is related to the applet (e.g. some information is not ...")
 
No edit summary
Line 21: Line 21:
nmcli connection show your_connection_name
nmcli connection show your_connection_name
</syntaxhighlight>
</syntaxhighlight>
=== My connection in the applet shows wrong information ===
This includes wrong connection state (e.g. the connecting indicator keeps spinning), wrong information in the connection details, wrong icon and so on.

Revision as of 09:09, 29 September 2015

TBD

How to report a bug

Go to bugs.kde.org and choose plasma-nm product. If your bug is related to the applet (e.g. some information is not displayed correctly) then select "applet" component, if your bug is related to the editor (e.g. you are unable to save your connection or edit some option) then select "editor" component, otherwise choose "general" component if you are not sure where your issue should belong. When providing description, try to provide as much information you can. This should include plasma-nm and NetworkManager versions, because this is typically our first question. Also, if your issue is similar/related to the ones mentioned below, provide please information as described below.

Plasma-nm doesn't remember my password

  • Check whether plasma-nm kded module is running (in case of Plasma 5)
if `qdbus org.kde.kded5 /kded org.kde.kded5.loadedModules | grep networkmanagement > /dev/null`; then echo "running"; else echo "not running"; fi
  • Check whether plasma-nm kded module is running (in case of KDE 4)
if `qdbus org.kde.kded /kded org.kde.kded.loadedModules | grep networkmanagement > /dev/null`; then echo "running"; else echo "not running"; fi
  • Provide NetworkManager log and don't forget to add it as an attachment, nobody want's to read full log as a comment
journalctl -u NetworkManager --since today
  • Use nmcli to get information about your connection (replace your_connection_name by an actual name)
nmcli connection show your_connection_name

My connection in the applet shows wrong information

This includes wrong connection state (e.g. the connecting indicator keeps spinning), wrong information in the connection details, wrong icon and so on.