You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
REPO_LINE="deb http://mirror.kakao.com/ubuntu/ noble main universe"
if ! grep -Fxq "$REPO_LINE" /etc/apt/sources.list; then
echo "$REPO_LINE" | sudo tee -a /etc/apt/sources.list
echo "Repository line added successfully."
else
echo "Repository line already exists."
fi
sudo apt-get update