Add method to solving error which happened frequently

Mass Carl
2020-04-16 03:00:49 +08:00
parent aa42680a88
commit 47ba6ca49d

@@ -76,3 +76,12 @@ A documentation about running qBittorrent without GUI is available [[Running-qBi
To set up qbittorrent as a deamon see [https://github.com/qbittorrent/qBittorrent/wiki/Setting-up-qBittorrent-as-a-daemon-on-CentOS-7 this guide] or just run
qbittorrent-nox
== Troubleshooting ==
If are you facing a problem like this
qbittorrent-nox: error while loading shared libraries: libtorrent-rasterbar.so.10: cannot open shared object file: No such file or directory
This often happened when you are using 64-bit CentOS 7.x. And it's because of the libraries that the qBittorrent need are not in the "/usr/lib64/". You can simply create a soft link to solve it. Do it like this.
ln -s /usr/lib/libtorrent-rasterbar.so.10 /usr/lib64/libtorrent-rasterbar.so.10
For missing "libboost_system.so.1.72.0"
ln -s /opt/boost/lib/libboost_system.so.1.72.0 /usr/lib64/libboost_system.so.1.72.0