summaryrefslogtreecommitdiff
path: root/doc/9_00_q_and_a.adoc
blob: a143ab02c697e4b1e640c02b48f6d60fdd46da2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
----