How to install VemsTune in linux (only for experienced users at 2010-12, but it's intended to make it simple to install)
- Installing wxWidgets On Debian More detail can be found on: http://wiki.wxpython.org/InstallingOnUbuntuOrDebian
- On debian put deb http://apt.wxwidgets.org/ DIST-wx main to '/etc/apt/sources.list Replace the "DIST" text with whatever is appropriate for your system (etch, lenny, etc)
- apt-get update
- apt-get install libwxbase2.8-0 libwxgtk2.8-0 wx-common wx2.8-headers
dpkg -l | grep wx
ii libwxbase2.8-0 2.8.9.2-1
ii libwxgtk2.8-0 2.8.9.2-1
ii wx-common 2.8.9.2-1
ii wx2.8-headers 2.8.9.2-1
</pre>
I installed the library's but still got the error messages about some library's that i cant find...:
goran@goran-Vostro-1015:~/Documents/Vems/v3GUI-linux-release$ ./v3GUI
./v3GUI: error while loading shared libraries: libwxctb-0.8.so: cannot open shared object file: No such file or directory
Notes:
- if you get "missing symbol ...." than it's incompatible library. If "cannot open shared object file: No such file or directory", than library is not installed,
- or perhaps running ldconfig was forgotten
- helpful: ldd ./v3GUI
- we're considering a statically linked (bloatware) binaries, but we want to map which libraries satisfy the dependencies on certain systems (like debian / ubuntu / redhat) so that a 1-liner recommendation can be given
- something like apt-get install audacity libctb...
- yes, audacity has very similar dependencies (eg. wx, libportaudio) so installing audacity is a very good step (useful anyway)
on Debian, dpkg -s audacity
Depends: audacity-data (= 1.3.7-1), libasound2 (>> 1.0.16), libc6 (>= 2.7-1), libexpat1 (>= 1.95.8), libflac6, libflac8, libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.12.0), libgtk2.0-0 (>= 2.12.0), libid3tag0 (>= 0.15.1b), libjack0 (>= 0.109.2), libmad0 (>= 0.15.1b-3), libogg0 (>= 1.0rc3), libsamplerate0, libsndfile1, libsoundtouch1c2 (>= 1.3.1), libstdc6 (>= 4.2.1), libtwolame0, libvorbis0a (>= 1.1.2), libvorbisenc2 (>= 1.1.2), libvorbisfile3 (>= 1.1.2), libwxbase2.8-0 (>= 2.8.7.1), libwxgtk2.8-0 (>= 2.8.7.1)