2

Which RPM provides the file resolv.conf in Centos 6?

Helvick
  • 20,019
  • 4
  • 38
  • 55
edotan
  • 1,876
  • 13
  • 39
  • 57

1 Answers1

5

That's easy to discover. Just run:

rpm -qf /etc/resolv.conf

You will see the answer is:

file /etc/resolv.conf is not owned by any package

That's because it's generated by the system at installation time, and later managed by the sysadmin (that is hopefully you) or NetworkManager.

Michael Hampton
  • 244,070
  • 43
  • 506
  • 972