Reputation: 11
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
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