summaryrefslogtreecommitdiff
path: root/doc/website/bugs.html
blob: 13cf528306e237b7c0a351900b305087af1de5b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>colord - Reporting Bugs</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<link rel="stylesheet" href="style.css" type="text/css" media="screen"/>
</head>
<body>

<p>Back to the <a href="index.html">main page</a></p>

<h1>Reporting Bugs</h1>

<p>
First, please look at the <a href="http://tinyurl.com/2s4tnt">list of bugs</a>
so that you are sure the bug you are reporting isn't a duplicate bug that
someone else has fixed or reported.
If not present, then please create a new bug attaching all the information
to this new bug.
</p>

<h2>General Bugs</h2>

<p>
When colord doesn't work, there is lots that could be wrong.
To help us diagnose the problem, please supply the following information:
</p>

<ul>
<li>The version of colord installed</li>
<li>The version of gnome-color-manager installed</li>
<li>The installation method you used (i.e. distribution RPM, tarball)</li>
<li>Your distribution and version</li>
<li>The verbose debugging from colord</li>
<li>Any other information that may be relevant</li>
</ul>

<h2>colord Verbose Trace</h2>

<p>
This will turn on verbose debugging for the colord daemon that will be
useful when debugging problems.
</p>

<pre>
sudo killall colord
sudo /usr/libexec/colord --verbose
</pre>

<h2>Segfaults or random crashes</h2>
<p>
We would really appreciate it if you could send us more information about the
crash, specifically a backtrace with gdb.
Make sure you have the colord-debuginfo or colord-gdb package installed,
else the reports from gdb won't mean much to any of us.
</p>

<pre>
gdb /usr/libexec/colord
</pre>
<p>
The GNU debugger (gdb) will start and put you at a prompt:
</p>
<pre>
(gdb) _
</pre>

<p>
Then type the following.
</p>

<pre>
(gdb) run --verbose
</pre>

<p>
In another command window, you may have to exeute the action that is crashing
the daemon, for instance selecting a profile in the gnome-color-manager profile viewer.
</p>
<p>
You should be back in the gdb shell if the daemon has crashed.
Then type bt at the prompt and send us all the output that follows.
This will tell us exactly what the program was doing when it crashed.
</p>
<p>
This <a href="http://sources.redhat.com/gdb/current/onlinedocs/gdb_toc.html">link</a> will
give you more information.
</p>
<p>Back to the <a href="index.html">main page</a></p>

<p class="footer">
 Copyright <a href="mailto:richard@hughsie.com">Richard Hughes 2011</a><br/>
 <a href="http://validator.w3.org/check/referer">Optimized</a>
 for <a href="http://www.w3.org/">standards</a>.
</p>

</body>
</html>