sudo find / -name "*libdrm*"
Or starting in a more specific directory:
sudo find ./Documents -name "*libdrm*"
Or starting in the current directory:
sudo find -name "*libdrm*"
And no need for wildcards if you know the file name:
sudo find / -name "libdrm.pc"