몇 년 동안 Linux 시스템에서 DNS를 설정하는 것은 간단했습니다. 몇 개의 항목 만 추가하면 /etc/resolv.conf
완료됩니다.
# Use Google's public DNS servers.
nameserver 8.8.4.4
nameserver 8.8.8.8
그러나 상황이 변하고 이제는 그렇게 간단하지 않습니다. 이제 /etc/resolv.conf
Ubuntu에서 편집하면 편집 내용이 임시임을 알 수 있습니다. 컴퓨터를 다시 시작하거나 최대 절전 모드로 전환하면 기본 내용으로 컴퓨터를 덮어 씁니다.
nameserver 127.0.0.53
search Home
그래도 수정하는 것은 매우 간단합니다.
-
resolvconf
패키지를 설치하십시오 .
sudo apt install resolvconf
-
/etc/resolvconf/resolv.conf.d/head
다음을 편집 하고 추가하십시오.
# Make edits to /etc/resolvconf/resolv.conf.d/head.
nameserver 8.8.4.4
nameserver 8.8.8.8
-
resolvconf
서비스를 다시 시작하십시오 .
sudo service resolvconf restart
수정은 영구적이어야합니다.