OS(56)
-
Ubuntu dns cache 삭제
# systemed-resolved 상태 확인systemctl is-active systemd-resolved# active이면, 서비스 재기동sudo systemctl restart systemd-resolved
2025.03.21 -
Ubuntu dns 설정
# 환경설정sudo vi /etc/systemd/resolved.conf-------------------------------[Resolve]DNS={dns ip}FallbackDNS=8.8.8.8-------------------------------# 적용sudo systemctl restart systemd-resolved
2025.03.04 -
Ubunbu에 chrome 설치하기
sudo apt updatesudo apt install wget -ywget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.debsudo dpkg -i ./google-chrome-stable_current_amd64.deb
2025.03.03 -
hostname을 fully qualified domain name (FQDN)으로 표시
hostname -f# pod안에서 결과kafka-0.kafka-headless.default.svc.cluster.local
2025.02.28 -
DNS 설정
sudo vi /etc/systemd/resolved.conf-----------------------------------------[Resolve]DNS={DNS Server IP}-----------------------------------------sudo systemctl restart systemd-resolved# 확인nslookup {DNS Server에 등록된 도메인}
2025.02.24 -
Ubuntu swap memory 상세 확인: smem
# 설치sudo apt updatesudo apt install smem -y# 확인smem -s swap -r
2025.02.22