web-dev-qa-db-ja.com

apt-get 403 Forbidden

今日、新しい仕事を始めました。Windowsサーバーを介して実行するようにマシンをセットアップしようとしています。

サーバーを介してインターネットに接続できるようになりましたが、「403 Forbidden」エラーが発生するため、apt-get updateを実行できません。

これは、translations(?)を除き、私のソースリストの下にあるすべてのレポ用です。

apt.confにプロキシがあります。プロキシがない場合、407 Permission Deniedエラーが表示されます。

これが私のapt.confファイルです(ユーザー名とパスワードを省略しました)

Acquire::http::proxy "http://username:[email protected]:8080/";

これが私のsources.listです

#deb cdrom:[Ubuntu 12.04.2 LTS _Precise Pangolin_ - Release AMD64 (20130213)]/ dists/precise/main/binary-i386/

#deb cdrom:[Ubuntu 12.04.2 LTS _Precise Pangolin_ - Release AMD64 (20130213)]/ dists/precise/restricted/binary-i386/
#deb cdrom:[Ubuntu 12.04.2 LTS _Precise Pangolin_ - Release AMD64 (20130213)]/ precise main restricted

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

## Major bug fix updates produced after the final release of the
## distribution.
deb http://gb.archive.ubuntu.com/ubuntu/ precise-updates main restricted
deb-src http://gb.archive.ubuntu.com/ubuntu/ precise-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://gb.archive.ubuntu.com/ubuntu/ precise universe
deb-src http://gb.archive.ubuntu.com/ubuntu/ precise universe
deb http://gb.archive.ubuntu.com/ubuntu/ precise-updates universe
deb-src http://gb.archive.ubuntu.com/ubuntu/ precise-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://gb.archive.ubuntu.com/ubuntu/ precise multiverse
deb-src http://gb.archive.ubuntu.com/ubuntu/ precise multiverse
deb http://gb.archive.ubuntu.com/ubuntu/ precise-updates multiverse
deb-src http://gb.archive.ubuntu.com/ubuntu/ precise-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://gb.archive.ubuntu.com/ubuntu/ precise-backports main restricted universe multiverse
deb-src http://gb.archive.ubuntu.com/ubuntu/ precise-backports main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu precise-security main restricted
deb-src http://security.ubuntu.com/ubuntu precise-security main restricted
deb http://security.ubuntu.com/ubuntu precise-security universe
deb-src http://security.ubuntu.com/ubuntu precise-security universe
deb http://security.ubuntu.com/ubuntu precise-security multiverse
deb-src http://security.ubuntu.com/ubuntu precise-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 precise partner
# deb-src http://archive.canonical.com/ubuntu precise partner

## This software is not part of Ubuntu, but is offered by third-party
## developers who want to ship their latest software.
deb http://extras.ubuntu.com/ubuntu precise main
deb-src http://extras.ubuntu.com/ubuntu precise main

Sources.list内のすべてのhttpftpに変更することで、この問題を修正できますが、ppasにはまだ問題があります

15
Lerp

このエラーはサーバーが原因であり、完全にあなたのせいではありません。リポジトリがメンテナンスのためにオフラインだったことが原因である可能性があります。

ただし、後でもう一度試してください。または、メインのarchive.ubuntu.comではなく、他の国のサーバーに戻すことをお勧めします。

Choose server udate

15
Radu Rădeanu

次の上位2つの回答をご覧ください。

プロキシ経由で接続されたシステムにapt-getでパッケージをインストールする方法?


試してみると何が得られますか?:

Sudo http_proxy='http://user:[email protected]:8080/' apt-get update

3
david6

メインサーバーを使用している場合でも、このエラーが頻繁に発生します。これは、何らかの理由でapt-getプロセスが中断したときに発生することがわかりました。たとえば、apt-get updateを実行している場合、一部のファイルのダウンロードは完了しません。その特定のファイルに対して403エラーが発生すると、そこに表示されます。

Apt-getの更新中に、これらの部分的にダウンロードされたファイル(ファイルが正確かどうかはわかりません)が/var/lib/apt/lists/partial/に保存されることを学びました

だから私はSudo rm -r /var/lib/apt/lists/partial/*(ディレクトリ内のすべてのファイルを削除した)

この後、403エラーは発生しませんでした。

apt-get installまたはapt-get upgradeまたはapt-get dist-upgradeの実行中にエラーが発生した場合

Sudo rm -r /var/cache/apt/archives/partial/*を試してください

0
jaseem