The Mer Wiki now uses your Mer user account and password (create account on https://bugs.merproject.org/)
Nemo/Debugging
From Mer Wiki
< Nemo(Difference between revisions)
(→debug output from dialer) |
(→Tools and Tips to help in debugging) |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 2: | Line 2: | ||
* Log of console output: | * Log of console output: | ||
<pre> | <pre> | ||
− | more /home/ | + | more /home/nemo/.xsession-errors |
</pre> | </pre> | ||
* Kernel message buffer: | * Kernel message buffer: | ||
Line 17: | Line 17: | ||
</pre> | </pre> | ||
* For starting any libmeegotouch -based application with debug output use: "-output-level debug" | * For starting any libmeegotouch -based application with debug output use: "-output-level debug" | ||
+ | * Checking available keys in contexkt-kit: | ||
+ | <pre> | ||
+ | zypper install contextkit-tests | ||
+ | context-ls | ||
+ | </pre> | ||
+ | * Checking value of property in contextkit | ||
+ | <pre> | ||
+ | zypper install contextkit-tests | ||
+ | su - nemo | ||
+ | export DISPLAY=:0 | ||
+ | context-listen <KEY> | ||
+ | </pre> | ||
+ | * Restarting connman may help in WLAN issues | ||
+ | <pre> | ||
+ | systemctl restart connman.service | ||
+ | </pre> | ||
+ | * Restarting user session which includes, Xorg, home UI, maliit, and all of the other user space daemons. | ||
+ | <pre> | ||
+ | systemctl restart user-session@1000.service | ||
+ | </pre> | ||
+ | In addition to these see Mer Debugging guide: [[Debugging]] | ||
+ | |||
+ | [[Category:Debugging]] |
Latest revision as of 06:50, 23 February 2013
[edit] Tools and Tips to help in debugging
- Log of console output:
more /home/nemo/.xsession-errors
- Kernel message buffer:
dmesg
- List of all keys and values in gconf:
gconftool-2 -R /
- Starting dialer with debug output:
killall dialer; dialer -prestart -output-level debug
- For starting any libmeegotouch -based application with debug output use: "-output-level debug"
- Checking available keys in contexkt-kit:
zypper install contextkit-tests context-ls
- Checking value of property in contextkit
zypper install contextkit-tests su - nemo export DISPLAY=:0 context-listen <KEY>
- Restarting connman may help in WLAN issues
systemctl restart connman.service
- Restarting user session which includes, Xorg, home UI, maliit, and all of the other user space daemons.
systemctl restart user-session@1000.service
In addition to these see Mer Debugging guide: Debugging