web-dev-qa-db-ja.com

誰かがUbuntu 15.04の本当の、正確で本物のsources.listを提供できますか?

私はしばらくUbuntuを使用していますが、最近Ubuntu Vividにアップグレードするまで、答えを得るためにスレッドを投稿する必要がないすべての問題がありました。

Ubuntuは素晴らしいですが、Sudo apt-get updateを実行するたびに、/var/lib/apt/listsの重複の通知を返す更新がスムーズに実行されます。

それは問題がどこにあるかではありません。非常にイライラするのは、提案された更新を実行しても、同じ結果が得られることです。

Ubuntu 14.04を使用してから、Vividにアップグレードする前にUbuntu Utopicにアップグレードしました。

私が必要なのは、重複のないソースリストを提供してくれる人です。

お願いします。

よろしくお願いします。

編集:これは、software-properties-gtkのリロードで得られた新しいエラーです。

W: Duplicate sources.list entry http://security.ubuntu.com/ubuntu/ vivid-security/restricted i386 Packages (/var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_vivid-security_restricted_binary-i386_Packages)
W: Duplicate sources.list entry http://security.ubuntu.com/ubuntu/ vivid-security/universe i386 Packages (/var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_vivid-security_universe_binary-i386_Packages)
W: Duplicate sources.list entry http://security.ubuntu.com/ubuntu/ vivid-security/multiverse i386 Packages (/var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_vivid-security_multiverse_binary-i386_Packages)
W: Duplicate sources.list entry http://security.ubuntu.com/ubuntu/ vivid-security/main i386 Packages (/var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_vivid-security_main_binary-i386_Packages)
W: You may want to run apt-get update to correct these problems
7
Mr One ZED

これが私のバージンsources.listです

エントリがsources.listおよびフォルダー/etc/apt/sources.list.dのファイルに含まれている場合にも重複が発生する可能性があります。

# deb cdrom:[Ubuntu-GNOME 15.04 _Vivid Vervet_ - Alpha AMD64 (20150316)]/ vivid main multiverse restricted universe

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://archive.ubuntu.com/ubuntu vivid main restricted
deb-src http://archive.ubuntu.com/ubuntu vivid main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://archive.ubuntu.com/ubuntu vivid-updates main restricted
deb-src http://archive.ubuntu.com/ubuntu vivid-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://archive.ubuntu.com/ubuntu vivid universe
deb-src http://archive.ubuntu.com/ubuntu vivid universe
deb http://archive.ubuntu.com/ubuntu vivid-updates universe
deb-src http://archive.ubuntu.com/ubuntu vivid-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://archive.ubuntu.com/ubuntu vivid multiverse
deb-src http://archive.ubuntu.com/ubuntu vivid multiverse
deb http://archive.ubuntu.com/ubuntu vivid-updates multiverse
deb-src http://archive.ubuntu.com/ubuntu vivid-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://archive.ubuntu.com/ubuntu vivid-backports main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu vivid-backports main restricted universe multiverse

deb http://archive.ubuntu.com/ubuntu vivid-security main restricted
deb-src http://archive.ubuntu.com/ubuntu vivid-security main restricted
deb http://archive.ubuntu.com/ubuntu vivid-security universe
deb-src http://archive.ubuntu.com/ubuntu vivid-security universe
deb http://archive.ubuntu.com/ubuntu vivid-security multiverse
deb-src http://archive.ubuntu.com/ubuntu vivid-security multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu vivid partner
# deb-src http://archive.canonical.com/ubuntu vivid partner

Y PPA Managerで重複を削除できます:

Sudo add-apt-repository ppa:webupd8team/y-ppa-manager
Sudo apt-get update
Sudo apt-get install y-ppa-manager

実行Y PPA Manager

enter image description here

詳細を選択します

enter image description here

重複するPPAをスキャンして削除するを選択します

これが完了したら、更新を開始します。

Sudo apt-get update
5
A.B.

これを行う必要があります(usを国のプレフィックスに置き換えてください):

deb http://us.archive.ubuntu.com/ubuntu/ vivid main universe restricted multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ vivid main universe restricted multiverse

deb http://us.archive.ubuntu.com/ubuntu/ vivid-security main universe restricted multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ vivid-security main universe restricted multiverse

deb http://us.archive.ubuntu.com/ubuntu/ vivid-updates main universe restricted multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ vivid-updates main universe restricted multiverse
3
kos