Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • It's weird. I have rebooted. But it seems like didn't update the database. And after that, it turns out that that package dose not exists. But using "apt-get install" , I can't find that package. Using "apt-file search", many package include this lib, and how can i install that lib correctly?
    – Ziu
    Commented Oct 4, 2013 at 3:06
  • @Ziu you need to run updatedb to update the database, rebooting is irrelevant. Anyway, check the dependencies of mplayer: apt-cache depends mplayer | grep -i libgl that will return the packages that mplayer depends on. One of them should be libgl1-mesa-glx.
    – terdon
    Commented Oct 4, 2013 at 3:18
  • Finally fix it. It is libgl1-mes-glx, but when I try to install that, it reminds me have installed the latest version. Then I thought that maybe it is something wrong with the graphics drive. So i uninstall it, and it works correctly. and the libGL:libGL.so.1 => /usr/lib/x86_64-linux-gnu/mesa/libGL.so.1 (0x00007f1e83fa7000). Then i install the amd drive again, and it still works. But the dependency changes. libGL:libGL.so.1 => /usr/lib/libGL.so.1 (0x00007fe24e687000) . Thanks
    – Ziu
    Commented Oct 5, 2013 at 8:57