undefined reference to `GDALAllRegister’ [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Ask Ubuntu. Closed 8 years ago. Improve this question I have problem with gdal. I am currently working on Ubuntu and the IDE is Eclipse CDT i have given my code below … Read more

Can not run evince. Says shared library is missing [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Ask Ubuntu. Closed 7 years ago. Improve this question When trying to start evince Ubuntu 12.04 responds me: % evince evince: error while loading shared libraries: libSM.so.6: cannot open shared object file: … Read more

How can I run an c/c++ program that use GNU Scientific Library (GSL)?

I’m trying to run 2 simple examples in c/c++ using the GNU Scientific Library. That are the codes: 1st: An Example Program #include <stdio.h> #include <gsl/gsl_sf_bessel.h> int main (void) { double x = 5.0; double y = gsl_sf_bessel_J0 (x); printf (“J0(%g) = %.18e\n”, x, y); return 0; } 2nd: Example programs for matrices #include <stdio.h> … Read more

How do I find what library was compiled with lto 4.0 instead of 4.1?

All of a sudden I’ve been getting the following error (something probably updated my gcc or something): lto1: fatal error: bytecode stream generated with LTO version 4.0 instead of the expected 4.1 However, I’m not exactly sure which library is causing it. How would I find out? Answer AttributionSource : Link , Question Author : … Read more

Trying to install Popcorn Time 3.10 on Ubuntu 16.04, but getting an error

Hello there when i try to install Popcorn Time 3.10 with this command: ./Popcorn-Time i get this error: ./Popcorn-Time: error while loading shared libraries: libnw.so: cannot open shared object file: No such file or directory ps: those are my files when i extract the Popcorn-Time-0.3.10-Linux-64.tar.xz file: /locales /node_modules /src /minidump_stackwalk /nacl_helper /natives_blob.bin /payload /Popcorn-Time Answer … Read more

Shotwell refuses to run after upgrade to Zesty [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Ask Ubuntu. Closed 3 months ago. Improve this question I’ve been having trouble getting Shotwell 0.26.1 to run since upgrading to Zesty. Running from a terminal, I get the following error message: … Read more

Error while loading shared libraries: libQt5Network.so.5:

I was installing GNU octave on my Ubuntu 18.04 (from the terminal). After installation octave wouldn’t open when I tried to launch it using the desktop icon. So I tried launching from the terminal and this showed up /usr/lib/x86_64-linux-gnu/octave/4.2.2/exec/x86_64-pc-linux-gnu/octave-gui: error while loading shared libraries: libQt5Network.so.5: cannot open shared object file: No such file or directory … Read more

Which MPI library are packages linked against? Open MPI?

Some packages in the Ubuntu repositories provide pre-compiled binaries of shared libraries (*.so). For example, the package fftw2 provides the FFTW library (version 2), including the MPI-related library files /usr/lib/libfftw_mpi.so.2 and /usr/lib/librfftw_mpi.so.2. This evokes the question of which of the numerous MPI libraries these files are actually linked against. On my system (amd64), ldd /usr/lib/libfftw_mpi.so.2 shows … Read more