Advertisement
mogaj

resolv.conf

Jun 4th, 2013
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. ~$ ls -l /etc/resolv.conf
  2. ls: cannot access /etc/resolv.conf: No such file or directory
  3.  
  4. ~$ ls -l /run/resolvconf
  5. total 0
  6. drwxr-xr-x 2 root root 40 Jun 4 18:22 interface
  7. -rw-r--r-- 1 root root 0 Jun 4 18:22 postponed-update
  8.  
  9. ~$ ls -l /run/resolvconf/interface
  10. total 0
  11.  
  12. ~$ for F in /run/resolvconf/interface/* ; do echo "=== $F ===" ; cat "$F" ; done
  13. === /run/resolvconf/interface/* ===
  14. cat: /run/resolvconf/interface/*: No such file or directory
  15.  
  16. ~$ for F in /etc/resolvconf/resolv.conf.d/* ; do echo "=== $F ===" ; cat "$F" ; done
  17. === /etc/resolvconf/resolv.conf.d/base ===
  18. === /etc/resolvconf/resolv.conf.d/head ===
  19. # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
  20. # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement