libssl.so.10: cannot open shared object file: No such file or directory
Im trying to use twoBitToFa, which is a small program released by the University of California Santa Cruz, that uncompresses large genome files and I get this error:
error while loading shared libraries: libssl.so.10: cannot open shared object file: No such file or directory
I tried searching for what package provides it. I switched from Fedora which had yum provides
but when looking for the Ubuntu equivalent, I came across apt-file search
but when I tried that I got a command not found error.
How can I get this libssl file, and more generally, how can I search for what package provides a file so I can do this by myself in the future?
shared-library
add a comment |
Im trying to use twoBitToFa, which is a small program released by the University of California Santa Cruz, that uncompresses large genome files and I get this error:
error while loading shared libraries: libssl.so.10: cannot open shared object file: No such file or directory
I tried searching for what package provides it. I switched from Fedora which had yum provides
but when looking for the Ubuntu equivalent, I came across apt-file search
but when I tried that I got a command not found error.
How can I get this libssl file, and more generally, how can I search for what package provides a file so I can do this by myself in the future?
shared-library
You need to installapt-file
withsudo apt-get install apt-file
and then you need to runsudo apt-get update
andsudo apt-get install apt-file
andsudo apt-file update
.
– mchid
Feb 6 at 16:26
add a comment |
Im trying to use twoBitToFa, which is a small program released by the University of California Santa Cruz, that uncompresses large genome files and I get this error:
error while loading shared libraries: libssl.so.10: cannot open shared object file: No such file or directory
I tried searching for what package provides it. I switched from Fedora which had yum provides
but when looking for the Ubuntu equivalent, I came across apt-file search
but when I tried that I got a command not found error.
How can I get this libssl file, and more generally, how can I search for what package provides a file so I can do this by myself in the future?
shared-library
Im trying to use twoBitToFa, which is a small program released by the University of California Santa Cruz, that uncompresses large genome files and I get this error:
error while loading shared libraries: libssl.so.10: cannot open shared object file: No such file or directory
I tried searching for what package provides it. I switched from Fedora which had yum provides
but when looking for the Ubuntu equivalent, I came across apt-file search
but when I tried that I got a command not found error.
How can I get this libssl file, and more generally, how can I search for what package provides a file so I can do this by myself in the future?
shared-library
shared-library
edited Feb 6 at 16:27
mchid
23.2k25284
23.2k25284
asked Aug 30 '13 at 14:49
von Misesvon Mises
288138
288138
You need to installapt-file
withsudo apt-get install apt-file
and then you need to runsudo apt-get update
andsudo apt-get install apt-file
andsudo apt-file update
.
– mchid
Feb 6 at 16:26
add a comment |
You need to installapt-file
withsudo apt-get install apt-file
and then you need to runsudo apt-get update
andsudo apt-get install apt-file
andsudo apt-file update
.
– mchid
Feb 6 at 16:26
You need to install
apt-file
with sudo apt-get install apt-file
and then you need to run sudo apt-get update
and sudo apt-get install apt-file
and sudo apt-file update
.– mchid
Feb 6 at 16:26
You need to install
apt-file
with sudo apt-get install apt-file
and then you need to run sudo apt-get update
and sudo apt-get install apt-file
and sudo apt-file update
.– mchid
Feb 6 at 16:26
add a comment |
6 Answers
6
active
oldest
votes
Lets make sure that you have your SSL installed and updated:
sudo apt-get update
sudo apt-get install libssl1.0.0 libssl-dev
Now lets fix the naming of the file by creating a link:
cd /lib/x86_64-linux-gnu
sudo ln -s libssl.so.1.0.0 libssl.so.10
sudo ln -s libcrypto.so.1.0.0 libcrypto.so.10
And finally, lets inform the developer about this flaw so he can fix it :)
3
In my case (bedToBigBed from UCSC) I also had to run a similar command for "libcrypto" in addition to the above answer: sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10
– user2821352
Oct 25 '13 at 16:55
2
In my case i needed toreinstall
the packages.sudo apt-get install libssl1.0.0 libssl-dev --reinstall
– Edward Wilde
Jan 9 '17 at 10:30
Thanks @EdwardWilde,reinstall
seems the easiest!sudo apt-get install libssl1.0.0 libssl-dev --reinstall
– Stéphane Bruckert
Jun 26 '18 at 11:21
After the apt-get commands, I'm still not seeing any libssl* files in /lib/x86_64-linux-gnu. (Ubuntu 18)
– MiloDC
Aug 19 '18 at 0:00
1
on 18.04, the library was installed on /usr/lib/x86_64-linux-gnu
– Sa'ad
Nov 5 '18 at 13:39
|
show 1 more comment
Seems that mongo is expecting libssl files in /usr/lib/
:
sudo ln -s /lib/x86_64-linux-gnu/libssl.so.1.0.0 /usr/lib/libssl.so.10
sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10
add a comment |
I am one of the developers of these tools. Our binaries don't support Ubuntu officially (yet). The official way to fix this problem is to recompile from source, which just has gotten extremely simple (see https://github.com/NullModel/kentUtils). We are currently trying to build static binaries without the libssl dependency.
add a comment |
In my case, I was foolishly using an application compiled for Red Hat Enterprise Linux on my Ubuntu machine. Merely using the Ubuntu version solved the problem.
This is similar to the lack of support for Ubuntu that Max describes.
Same here. Not absolutely sure this is the primary reason but it might just be. Fyi - software was RoyalRender.
– bossi
Oct 25 '15 at 20:16
yeah, in my case I downloaded mongotar.gz
for not ubuntu (another Linux). When download mongo see dropdown list on mongo site and choose ubuntu.
– Maxim Yefremov
Jul 9 '16 at 7:34
1
same here... New to Ubuntu... this answer saved me after about 45mins of googling and trials
– CodeBurner
May 14 '17 at 21:24
Same here.1
How did the others managed to get it to work? Perhaps they missed the "Ubuntu" reference in the OP?2
Why would a distro matter? Isn't it compiled against the same architecture?
– Ryuu
Jan 8 at 10:13
add a comment |
I somehow got my symlinks corrupted when installing a newer version of OpenSSL. To fix this situation, I fixed my symlinks in /usr/lib64. E.g. sudo ln -sf libssl.so.0.9.8e libssl.so.10
add a comment |
Regarding apt-file, first you have to install it
sudo apt install apt-file
and update its cache
sudo apt-file update
Then apt-file search some-file should work.
Regarding the package installations, I think you shouldn't need libssl-dev, you need only libssl1.0.0 - this is the runtime library. The second one is for development
add a comment |
protected by Community♦ May 28 '16 at 11:46
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
Lets make sure that you have your SSL installed and updated:
sudo apt-get update
sudo apt-get install libssl1.0.0 libssl-dev
Now lets fix the naming of the file by creating a link:
cd /lib/x86_64-linux-gnu
sudo ln -s libssl.so.1.0.0 libssl.so.10
sudo ln -s libcrypto.so.1.0.0 libcrypto.so.10
And finally, lets inform the developer about this flaw so he can fix it :)
3
In my case (bedToBigBed from UCSC) I also had to run a similar command for "libcrypto" in addition to the above answer: sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10
– user2821352
Oct 25 '13 at 16:55
2
In my case i needed toreinstall
the packages.sudo apt-get install libssl1.0.0 libssl-dev --reinstall
– Edward Wilde
Jan 9 '17 at 10:30
Thanks @EdwardWilde,reinstall
seems the easiest!sudo apt-get install libssl1.0.0 libssl-dev --reinstall
– Stéphane Bruckert
Jun 26 '18 at 11:21
After the apt-get commands, I'm still not seeing any libssl* files in /lib/x86_64-linux-gnu. (Ubuntu 18)
– MiloDC
Aug 19 '18 at 0:00
1
on 18.04, the library was installed on /usr/lib/x86_64-linux-gnu
– Sa'ad
Nov 5 '18 at 13:39
|
show 1 more comment
Lets make sure that you have your SSL installed and updated:
sudo apt-get update
sudo apt-get install libssl1.0.0 libssl-dev
Now lets fix the naming of the file by creating a link:
cd /lib/x86_64-linux-gnu
sudo ln -s libssl.so.1.0.0 libssl.so.10
sudo ln -s libcrypto.so.1.0.0 libcrypto.so.10
And finally, lets inform the developer about this flaw so he can fix it :)
3
In my case (bedToBigBed from UCSC) I also had to run a similar command for "libcrypto" in addition to the above answer: sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10
– user2821352
Oct 25 '13 at 16:55
2
In my case i needed toreinstall
the packages.sudo apt-get install libssl1.0.0 libssl-dev --reinstall
– Edward Wilde
Jan 9 '17 at 10:30
Thanks @EdwardWilde,reinstall
seems the easiest!sudo apt-get install libssl1.0.0 libssl-dev --reinstall
– Stéphane Bruckert
Jun 26 '18 at 11:21
After the apt-get commands, I'm still not seeing any libssl* files in /lib/x86_64-linux-gnu. (Ubuntu 18)
– MiloDC
Aug 19 '18 at 0:00
1
on 18.04, the library was installed on /usr/lib/x86_64-linux-gnu
– Sa'ad
Nov 5 '18 at 13:39
|
show 1 more comment
Lets make sure that you have your SSL installed and updated:
sudo apt-get update
sudo apt-get install libssl1.0.0 libssl-dev
Now lets fix the naming of the file by creating a link:
cd /lib/x86_64-linux-gnu
sudo ln -s libssl.so.1.0.0 libssl.so.10
sudo ln -s libcrypto.so.1.0.0 libcrypto.so.10
And finally, lets inform the developer about this flaw so he can fix it :)
Lets make sure that you have your SSL installed and updated:
sudo apt-get update
sudo apt-get install libssl1.0.0 libssl-dev
Now lets fix the naming of the file by creating a link:
cd /lib/x86_64-linux-gnu
sudo ln -s libssl.so.1.0.0 libssl.so.10
sudo ln -s libcrypto.so.1.0.0 libcrypto.so.10
And finally, lets inform the developer about this flaw so he can fix it :)
edited Dec 9 '13 at 22:35
mmorris
7502612
7502612
answered Aug 30 '13 at 15:20
Hugo VieiraHugo Vieira
1,042810
1,042810
3
In my case (bedToBigBed from UCSC) I also had to run a similar command for "libcrypto" in addition to the above answer: sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10
– user2821352
Oct 25 '13 at 16:55
2
In my case i needed toreinstall
the packages.sudo apt-get install libssl1.0.0 libssl-dev --reinstall
– Edward Wilde
Jan 9 '17 at 10:30
Thanks @EdwardWilde,reinstall
seems the easiest!sudo apt-get install libssl1.0.0 libssl-dev --reinstall
– Stéphane Bruckert
Jun 26 '18 at 11:21
After the apt-get commands, I'm still not seeing any libssl* files in /lib/x86_64-linux-gnu. (Ubuntu 18)
– MiloDC
Aug 19 '18 at 0:00
1
on 18.04, the library was installed on /usr/lib/x86_64-linux-gnu
– Sa'ad
Nov 5 '18 at 13:39
|
show 1 more comment
3
In my case (bedToBigBed from UCSC) I also had to run a similar command for "libcrypto" in addition to the above answer: sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10
– user2821352
Oct 25 '13 at 16:55
2
In my case i needed toreinstall
the packages.sudo apt-get install libssl1.0.0 libssl-dev --reinstall
– Edward Wilde
Jan 9 '17 at 10:30
Thanks @EdwardWilde,reinstall
seems the easiest!sudo apt-get install libssl1.0.0 libssl-dev --reinstall
– Stéphane Bruckert
Jun 26 '18 at 11:21
After the apt-get commands, I'm still not seeing any libssl* files in /lib/x86_64-linux-gnu. (Ubuntu 18)
– MiloDC
Aug 19 '18 at 0:00
1
on 18.04, the library was installed on /usr/lib/x86_64-linux-gnu
– Sa'ad
Nov 5 '18 at 13:39
3
3
In my case (bedToBigBed from UCSC) I also had to run a similar command for "libcrypto" in addition to the above answer: sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10
– user2821352
Oct 25 '13 at 16:55
In my case (bedToBigBed from UCSC) I also had to run a similar command for "libcrypto" in addition to the above answer: sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10
– user2821352
Oct 25 '13 at 16:55
2
2
In my case i needed to
reinstall
the packages. sudo apt-get install libssl1.0.0 libssl-dev --reinstall
– Edward Wilde
Jan 9 '17 at 10:30
In my case i needed to
reinstall
the packages. sudo apt-get install libssl1.0.0 libssl-dev --reinstall
– Edward Wilde
Jan 9 '17 at 10:30
Thanks @EdwardWilde,
reinstall
seems the easiest! sudo apt-get install libssl1.0.0 libssl-dev --reinstall
– Stéphane Bruckert
Jun 26 '18 at 11:21
Thanks @EdwardWilde,
reinstall
seems the easiest! sudo apt-get install libssl1.0.0 libssl-dev --reinstall
– Stéphane Bruckert
Jun 26 '18 at 11:21
After the apt-get commands, I'm still not seeing any libssl* files in /lib/x86_64-linux-gnu. (Ubuntu 18)
– MiloDC
Aug 19 '18 at 0:00
After the apt-get commands, I'm still not seeing any libssl* files in /lib/x86_64-linux-gnu. (Ubuntu 18)
– MiloDC
Aug 19 '18 at 0:00
1
1
on 18.04, the library was installed on /usr/lib/x86_64-linux-gnu
– Sa'ad
Nov 5 '18 at 13:39
on 18.04, the library was installed on /usr/lib/x86_64-linux-gnu
– Sa'ad
Nov 5 '18 at 13:39
|
show 1 more comment
Seems that mongo is expecting libssl files in /usr/lib/
:
sudo ln -s /lib/x86_64-linux-gnu/libssl.so.1.0.0 /usr/lib/libssl.so.10
sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10
add a comment |
Seems that mongo is expecting libssl files in /usr/lib/
:
sudo ln -s /lib/x86_64-linux-gnu/libssl.so.1.0.0 /usr/lib/libssl.so.10
sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10
add a comment |
Seems that mongo is expecting libssl files in /usr/lib/
:
sudo ln -s /lib/x86_64-linux-gnu/libssl.so.1.0.0 /usr/lib/libssl.so.10
sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10
Seems that mongo is expecting libssl files in /usr/lib/
:
sudo ln -s /lib/x86_64-linux-gnu/libssl.so.1.0.0 /usr/lib/libssl.so.10
sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10
edited Dec 23 '15 at 9:15
answered Dec 21 '15 at 15:29
DziamidDziamid
2512516
2512516
add a comment |
add a comment |
I am one of the developers of these tools. Our binaries don't support Ubuntu officially (yet). The official way to fix this problem is to recompile from source, which just has gotten extremely simple (see https://github.com/NullModel/kentUtils). We are currently trying to build static binaries without the libssl dependency.
add a comment |
I am one of the developers of these tools. Our binaries don't support Ubuntu officially (yet). The official way to fix this problem is to recompile from source, which just has gotten extremely simple (see https://github.com/NullModel/kentUtils). We are currently trying to build static binaries without the libssl dependency.
add a comment |
I am one of the developers of these tools. Our binaries don't support Ubuntu officially (yet). The official way to fix this problem is to recompile from source, which just has gotten extremely simple (see https://github.com/NullModel/kentUtils). We are currently trying to build static binaries without the libssl dependency.
I am one of the developers of these tools. Our binaries don't support Ubuntu officially (yet). The official way to fix this problem is to recompile from source, which just has gotten extremely simple (see https://github.com/NullModel/kentUtils). We are currently trying to build static binaries without the libssl dependency.
answered Nov 5 '13 at 23:43
MaxMax
18113
18113
add a comment |
add a comment |
In my case, I was foolishly using an application compiled for Red Hat Enterprise Linux on my Ubuntu machine. Merely using the Ubuntu version solved the problem.
This is similar to the lack of support for Ubuntu that Max describes.
Same here. Not absolutely sure this is the primary reason but it might just be. Fyi - software was RoyalRender.
– bossi
Oct 25 '15 at 20:16
yeah, in my case I downloaded mongotar.gz
for not ubuntu (another Linux). When download mongo see dropdown list on mongo site and choose ubuntu.
– Maxim Yefremov
Jul 9 '16 at 7:34
1
same here... New to Ubuntu... this answer saved me after about 45mins of googling and trials
– CodeBurner
May 14 '17 at 21:24
Same here.1
How did the others managed to get it to work? Perhaps they missed the "Ubuntu" reference in the OP?2
Why would a distro matter? Isn't it compiled against the same architecture?
– Ryuu
Jan 8 at 10:13
add a comment |
In my case, I was foolishly using an application compiled for Red Hat Enterprise Linux on my Ubuntu machine. Merely using the Ubuntu version solved the problem.
This is similar to the lack of support for Ubuntu that Max describes.
Same here. Not absolutely sure this is the primary reason but it might just be. Fyi - software was RoyalRender.
– bossi
Oct 25 '15 at 20:16
yeah, in my case I downloaded mongotar.gz
for not ubuntu (another Linux). When download mongo see dropdown list on mongo site and choose ubuntu.
– Maxim Yefremov
Jul 9 '16 at 7:34
1
same here... New to Ubuntu... this answer saved me after about 45mins of googling and trials
– CodeBurner
May 14 '17 at 21:24
Same here.1
How did the others managed to get it to work? Perhaps they missed the "Ubuntu" reference in the OP?2
Why would a distro matter? Isn't it compiled against the same architecture?
– Ryuu
Jan 8 at 10:13
add a comment |
In my case, I was foolishly using an application compiled for Red Hat Enterprise Linux on my Ubuntu machine. Merely using the Ubuntu version solved the problem.
This is similar to the lack of support for Ubuntu that Max describes.
In my case, I was foolishly using an application compiled for Red Hat Enterprise Linux on my Ubuntu machine. Merely using the Ubuntu version solved the problem.
This is similar to the lack of support for Ubuntu that Max describes.
answered Apr 27 '15 at 18:22
John McGeheeJohn McGehee
16715
16715
Same here. Not absolutely sure this is the primary reason but it might just be. Fyi - software was RoyalRender.
– bossi
Oct 25 '15 at 20:16
yeah, in my case I downloaded mongotar.gz
for not ubuntu (another Linux). When download mongo see dropdown list on mongo site and choose ubuntu.
– Maxim Yefremov
Jul 9 '16 at 7:34
1
same here... New to Ubuntu... this answer saved me after about 45mins of googling and trials
– CodeBurner
May 14 '17 at 21:24
Same here.1
How did the others managed to get it to work? Perhaps they missed the "Ubuntu" reference in the OP?2
Why would a distro matter? Isn't it compiled against the same architecture?
– Ryuu
Jan 8 at 10:13
add a comment |
Same here. Not absolutely sure this is the primary reason but it might just be. Fyi - software was RoyalRender.
– bossi
Oct 25 '15 at 20:16
yeah, in my case I downloaded mongotar.gz
for not ubuntu (another Linux). When download mongo see dropdown list on mongo site and choose ubuntu.
– Maxim Yefremov
Jul 9 '16 at 7:34
1
same here... New to Ubuntu... this answer saved me after about 45mins of googling and trials
– CodeBurner
May 14 '17 at 21:24
Same here.1
How did the others managed to get it to work? Perhaps they missed the "Ubuntu" reference in the OP?2
Why would a distro matter? Isn't it compiled against the same architecture?
– Ryuu
Jan 8 at 10:13
Same here. Not absolutely sure this is the primary reason but it might just be. Fyi - software was RoyalRender.
– bossi
Oct 25 '15 at 20:16
Same here. Not absolutely sure this is the primary reason but it might just be. Fyi - software was RoyalRender.
– bossi
Oct 25 '15 at 20:16
yeah, in my case I downloaded mongo
tar.gz
for not ubuntu (another Linux). When download mongo see dropdown list on mongo site and choose ubuntu.– Maxim Yefremov
Jul 9 '16 at 7:34
yeah, in my case I downloaded mongo
tar.gz
for not ubuntu (another Linux). When download mongo see dropdown list on mongo site and choose ubuntu.– Maxim Yefremov
Jul 9 '16 at 7:34
1
1
same here... New to Ubuntu... this answer saved me after about 45mins of googling and trials
– CodeBurner
May 14 '17 at 21:24
same here... New to Ubuntu... this answer saved me after about 45mins of googling and trials
– CodeBurner
May 14 '17 at 21:24
Same here.
1
How did the others managed to get it to work? Perhaps they missed the "Ubuntu" reference in the OP? 2
Why would a distro matter? Isn't it compiled against the same architecture?– Ryuu
Jan 8 at 10:13
Same here.
1
How did the others managed to get it to work? Perhaps they missed the "Ubuntu" reference in the OP? 2
Why would a distro matter? Isn't it compiled against the same architecture?– Ryuu
Jan 8 at 10:13
add a comment |
I somehow got my symlinks corrupted when installing a newer version of OpenSSL. To fix this situation, I fixed my symlinks in /usr/lib64. E.g. sudo ln -sf libssl.so.0.9.8e libssl.so.10
add a comment |
I somehow got my symlinks corrupted when installing a newer version of OpenSSL. To fix this situation, I fixed my symlinks in /usr/lib64. E.g. sudo ln -sf libssl.so.0.9.8e libssl.so.10
add a comment |
I somehow got my symlinks corrupted when installing a newer version of OpenSSL. To fix this situation, I fixed my symlinks in /usr/lib64. E.g. sudo ln -sf libssl.so.0.9.8e libssl.so.10
I somehow got my symlinks corrupted when installing a newer version of OpenSSL. To fix this situation, I fixed my symlinks in /usr/lib64. E.g. sudo ln -sf libssl.so.0.9.8e libssl.so.10
answered Nov 27 '17 at 21:28
Michael FayadMichael Fayad
22327
22327
add a comment |
add a comment |
Regarding apt-file, first you have to install it
sudo apt install apt-file
and update its cache
sudo apt-file update
Then apt-file search some-file should work.
Regarding the package installations, I think you shouldn't need libssl-dev, you need only libssl1.0.0 - this is the runtime library. The second one is for development
add a comment |
Regarding apt-file, first you have to install it
sudo apt install apt-file
and update its cache
sudo apt-file update
Then apt-file search some-file should work.
Regarding the package installations, I think you shouldn't need libssl-dev, you need only libssl1.0.0 - this is the runtime library. The second one is for development
add a comment |
Regarding apt-file, first you have to install it
sudo apt install apt-file
and update its cache
sudo apt-file update
Then apt-file search some-file should work.
Regarding the package installations, I think you shouldn't need libssl-dev, you need only libssl1.0.0 - this is the runtime library. The second one is for development
Regarding apt-file, first you have to install it
sudo apt install apt-file
and update its cache
sudo apt-file update
Then apt-file search some-file should work.
Regarding the package installations, I think you shouldn't need libssl-dev, you need only libssl1.0.0 - this is the runtime library. The second one is for development
answered Sep 6 '18 at 7:44
Michel SamiaMichel Samia
44145
44145
add a comment |
add a comment |
protected by Community♦ May 28 '16 at 11:46
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
You need to install
apt-file
withsudo apt-get install apt-file
and then you need to runsudo apt-get update
andsudo apt-get install apt-file
andsudo apt-file update
.– mchid
Feb 6 at 16:26