apt-get 403 proibito


15

Ho iniziato un nuovo lavoro oggi e sto cercando di configurare la mia macchina per funzionare attraverso il loro server Windows.

Sono riuscito a ottenere una connessione Internet attraverso il server ora, ma ora non riesco a eseguire apt-get updatepoiché visualizzo un errore "403 vietato".

Questo è per ogni repo nel mio elenco di fonti, a parte le traduzioni (?).

Ho un proxy in apt.conf, se non ce l'ho ricevo un errore di autorizzazione negata 407.

Ecco il mio apt.conffile (ho omesso il mio nome utente e password)

Acquire::http::proxy "http://username:password@192.168.0.2:8080/";

Ecco il mio 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

Posso risolvere il problema cambiando tutto httpin in sources.list ftpma ho ancora problemi con ppas

Risposte:


15

Questo errore è dovuto al server e non è completamente colpa tua. Potrebbe essere perché il repository era offline per manutenzione.

Tuttavia, dovresti riprovare più tardi o / e suggerirei di tornare al server di un altro paese anziché al principale archive.ubuntu.com, che è limitato e non ti permetterà di sperimentare la massima velocità.

Scegli server udate


Proverò queste soluzioni e segnerò presto una risposta, al momento sto riscontrando altri problemi con il dual boot, quindi non posso provarli.
Lerp,

Avevi ragione, i server erano inattivi. Non ho bisogno del proxy o altro adesso. Grazie!
Lerp,

Spiacenti, ho dimenticato di darlo!
Lerp,


0

Ho riscontrato spesso questo errore, anche quando si utilizza il server principale. Ho notato che ciò accade quando il processo apt-get si interrompe per qualche motivo. Ad esempio, quando si esegue il apt-get updatedownload di alcuni file non può essere completato. Dopo questo errore otterrai 403 per quel particolare file.

Ho imparato che questi file parzialmente scaricati (non sono sicuro che siano esattamente i file) durante l'aggiornamento di apt-get sono memorizzati /var/lib/apt/lists/partial/

Così ho fatto sudo rm -r /var/lib/apt/lists/partial/* ( eliminato tutti i file nella directory)

Dopo questo non ricevo l'errore 403.

Se viene visualizzato l'errore durante l'esecuzione apt-get installoapt-get upgrade oapt-get dist-upgrade

provare sudo rm -r /var/cache/apt/archives/partial/*


my /var/cache/apt/archives/partial/è una directory vuota, ma ho ancora questo errore 403
nbv4,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.