summaryrefslogtreecommitdiff
path: root/doc/9_00_q_and_a.adoc
blob: dea8126c8581df94e7218077401ea5ef5bee9670 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Q and A
=======

== FAQ

.Q: I get this error
----
error while loading shared libraries: libcolm-0.13.0.4.so: cannot open shared object file: No such file or directory
----

*A*: You probably configured and installed colm with the '--prexix' argument
You can find the dynamic library and symlink it to a familiar place.

[source,bash]
----
sudo updatedb
ln -s `locate libcolm-0.13.0.4.so` /usr/lib/libcolm-0.13.0.4.so
----