asmine
asmine

Reputation: 11

NetworkManager: error while loading shared libraries: libsoup-2.4.so.1: cannot open shared object file: No such file or directory

I got this problem when i did this:sudo unlink /usr/lib/x86_64-linux-gnu/libsoup-2.4.so.1,and then the ubuntu system seemed to be abnormal,the network icon was disappeared,and some icon i clicked without any response.Is here anyone who can help me?Thanks

Upvotes: 1

Views: 3379

Answers (1)

Rahul R Dhobi
Rahul R Dhobi

Reputation: 5816

You need to reinstall libsoup2.4-1 in your system

sudo apt-get install libsoup2.4-1

Or you can remove libsoup2.4-1 from synaptic package manager and reinstall same.

Or you can make link

sudo ln -s /usr/lib/x86_64-linux-gnu/libsoup-2.4.so.1.5.0 /usr/lib/x86_64-linux-gnu/libsoup-2.4.so.1

Upvotes: 1

Related Questions