W:ターゲット翻訳

W:ターゲット翻訳

私はLinux Mint Mateを実行していて、askubuntuが私のOSのヘルプをサポートしていないので、私の質問と一緒にここに送られました。ここで誰かが助けてくれることを願っています。この質問が既に投稿されている場合はお詫び申し上げます。

私のソースリストを開いたときに何もないように見えるので、これらの場所をどこにインポートするのかわかりません。

sudo apt-get update
Ign:1 http://packages.linuxmint.com sarah InRelease
Ign:2 http://dl.google.com/linux/chrome/deb stable InRelease                   
Hit:3 http://packages.linuxmint.com sarah Release                              
Hit:4 http://dl.google.com/linux/chrome/deb stable Release                     
Hit:5 http://archive.ubuntu.com/ubuntu xenial InRelease                        
Hit:6 http://ppa.launchpad.net/team-xbmc/ppa/ubuntu xenial InRelease           
Hit:7 http://archive.canonical.com/ubuntu xenial InRelease                     
Get:8 http://security.ubuntu.com/ubuntu xenial-security InRelease [94.5 kB]    
Hit:10 http://archive.ubuntu.com/ubuntu xenial-updates InRelease               
Hit:12 http://archive.ubuntu.com/ubuntu xenial-backports InRelease             
Fetched 94.5 kB in 1s (74.0 kB/s)                                              
Reading package lists... Done
W: Target Packages (main/binary-amd64/Packages) 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 Packages (main/binary-all/Packages) 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 Translations (main/i18n/Translation-en_US) 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 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
N: Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'http://dl.google.com/linux/chrome/deb stable InRelease' doesn't support architecture 'i386'
W: Target Packages (main/binary-amd64/Packages) 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 Packages (main/binary-all/Packages) 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 Translations (main/i18n/Translation-en_US) 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 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

Pythonソリューションを試しましたが、何も起こりません。

sources.list含む

### THIS FILE IS AUTOMATICALLY CONFIGURED ###

# You may comment out this entry, but any other modifications may be lost.
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

/etc/apt/sources.list.d/google.list含む

deb http://dl.google.com/linux/chrome/deb/ stable main

そして/etc/apt/sources.list.d/google-chrome.list包含

### THIS FILE IS AUTOMATICALLY CONFIGURED ###
# You may comment out this entry, but any other modifications may be lost.
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

ベストアンサー1

警告は、重複した項目がどこにあるかを示します。

W: Target Packages (main/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list.d/google-chrome.list:3 and /etc/apt/sources.list.d/google.list:1

/etc/apt/sources.list.d/google-chrome.listとを見なければなりません/etc/apt/sources.list.d/google.list。両方とも同じリポジトリを定義しますが、リポジトリを削除する必要があることamd64を指定するため、前者が優れていますgoogle.list

sudo rm /etc/apt/sources.list.d/google.list

おすすめ記事