問題
apt updateで以下のエラーが生じた。
W: Target Translations (main/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list.d/google-chrome.list:3 and /etc/apt/sources.list.d/google.list:1
W: Target CNF (main/cnf/Commands-amd64) is configured multiple times in /etc/apt/sources.list.d/google-chrome.list:3 and /etc/apt/sources.list.d/google.list:1
W: Target CNF (main/cnf/Commands-all) is configured multiple times in /etc/apt/sources.list.d/google-chrome.list:3 and /etc/apt/sources.list.d/google.list:1
解決方法
# パッケージリストの確認
$ cd /etc/apt/sources.list.d/
$ ll
# chromeに当たりをつけて検索
$ grep chrome *
# 2行出てきたら…
# リストの中身が少ないgoogle.listを削除
$ sudo rm google.list
# 重複再確認
$ grep chrome *
# 再度apt update実行
$ sudo apt update
参照
apt-get update で「ターゲット〜は〜で複数回設定されています」と表示されるときの対処方法 | tarufulog