apt-get 403 Forbidden


15

私は今日新しい仕事を始めました、そして、彼らのWindowsサーバーを通して走るように私の機械をセットアップしようとしています。

サーバーを介してインターネットに接続できるapt-get updateようになりましたが、「403 Forbidden」エラーが表示されて実行できなくなりました。

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

にプロキシがあります。プロキシapt.confがない場合、407 Permission Deniedエラーが発生します。

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

Acquire::http::proxy "http://username:password@192.168.0.2: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

httpsources.listのすべてをに変更することでこれを修正できますがftp、まだppasに問題があります

回答:


15

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

ただし、後でもう一度試してください。または、メインのarchive.ubuntu.comではなく、他の国のサーバーに戻すことをお勧めします。メインのarchive.ubuntu.comは調整されており、フルスピードを体験できません。

サーバーの日付を選択


私はこれらの解決策を試し、すぐに答えをマークします。現在、デュアルブートで他の問題が発生しているため、テストできません。
Lerp

あなたは正しかった、サーバーがダウンしていた。現在、プロキシなどは必要ありません。ありがとう!
レープ

すみません、それを与えるのを忘れました!
Lerp


0

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

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

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

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

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

試してみる sudo rm -r /var/cache/apt/archives/partial/*


私は/var/cache/apt/archives/partial/空のディレクトリですが、私はまだこの403エラー持って
nbv4
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.