[Linux] Temporary failure in name resolution 에러 Linux 서버에서 인터넷 연결 확인을 위해 "ping google.com" 과 같은 명령어를 써서 확인을 하는데 $ ping -c3 google.com Temporary failure in name resolution 에러가 발생할 경우,/etc/resolv.conf 에서 DNS IP 주소 명시해주면 해결될 수 있다. $ echo "nameserver 8.8.8.8" >> /etc/resolv.conf$ echo "nameserver 8.8.4.4" >> /etc/resolv.conf/* resolv.conf를 관리해주는 데몬을 재실행시켜준다 */$ sudo systemctl start systemd-resolved