I have /usr/lib32/libstdc++.so.6
library on my Ubuntu system. I would like to know which package brought it there. How to know that?
I have /usr/lib32/libstdc++.so.6
library on my Ubuntu system. I would like to know which package brought it there. How to know that?
Please run
dpkg -S /usr/lib32/libstdc++.so.6
Now that you know which package
/usr/lib32/libstdc++.so.6
came from, you can find out which packages depend onlib32stdc++6
by running:sudo apt-cache rdepends lib32stdc++6
This will give you a list of package(s) that depend/installed
lib32stdc++6
Another solution is to use the tool
apt-file
:Install it using :
Update it's database :
Search for your desired file :
The result should be :
Which lead us to know that the package which installed should be
lib32stdc++6
.You can search it in https://packages.ubuntu.com
For your case will be this link.