Getting 403 forbidden error in sudo apt-get update
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I want to upgrade version 13.10 to 14.04. This is output that I get:
W: Failed to fetch http://old-releases.ubuntu.com/ubuntu/dists/saucy-security/universe/binary-i386/Packages 403 Forbidden
W: Failed to fetch http://old-releases.ubuntu.com/ubuntu/dists/saucy-security/multiverse/binary-i386/Packages 403 Forbidden
E: Some index files failed to download. They have been ignored, or old ones used instead.
My Ubuntu version is 13.10 Saucy.
ubuntu apt
add a comment |Â
up vote
0
down vote
favorite
I want to upgrade version 13.10 to 14.04. This is output that I get:
W: Failed to fetch http://old-releases.ubuntu.com/ubuntu/dists/saucy-security/universe/binary-i386/Packages 403 Forbidden
W: Failed to fetch http://old-releases.ubuntu.com/ubuntu/dists/saucy-security/multiverse/binary-i386/Packages 403 Forbidden
E: Some index files failed to download. They have been ignored, or old ones used instead.
My Ubuntu version is 13.10 Saucy.
ubuntu apt
A 403 error would be a problem with the remote web site...
â Celada
Sep 1 '15 at 10:38
1
Please, paste command that you typed, as well as yoursources.list
file.
â MatthewRock
Sep 1 '15 at 10:57
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I want to upgrade version 13.10 to 14.04. This is output that I get:
W: Failed to fetch http://old-releases.ubuntu.com/ubuntu/dists/saucy-security/universe/binary-i386/Packages 403 Forbidden
W: Failed to fetch http://old-releases.ubuntu.com/ubuntu/dists/saucy-security/multiverse/binary-i386/Packages 403 Forbidden
E: Some index files failed to download. They have been ignored, or old ones used instead.
My Ubuntu version is 13.10 Saucy.
ubuntu apt
I want to upgrade version 13.10 to 14.04. This is output that I get:
W: Failed to fetch http://old-releases.ubuntu.com/ubuntu/dists/saucy-security/universe/binary-i386/Packages 403 Forbidden
W: Failed to fetch http://old-releases.ubuntu.com/ubuntu/dists/saucy-security/multiverse/binary-i386/Packages 403 Forbidden
E: Some index files failed to download. They have been ignored, or old ones used instead.
My Ubuntu version is 13.10 Saucy.
ubuntu apt
ubuntu apt
edited Sep 1 '15 at 11:05
A.B.
2,499726
2,499726
asked Sep 1 '15 at 10:34
user2852196
1111
1111
A 403 error would be a problem with the remote web site...
â Celada
Sep 1 '15 at 10:38
1
Please, paste command that you typed, as well as yoursources.list
file.
â MatthewRock
Sep 1 '15 at 10:57
add a comment |Â
A 403 error would be a problem with the remote web site...
â Celada
Sep 1 '15 at 10:38
1
Please, paste command that you typed, as well as yoursources.list
file.
â MatthewRock
Sep 1 '15 at 10:57
A 403 error would be a problem with the remote web site...
â Celada
Sep 1 '15 at 10:38
A 403 error would be a problem with the remote web site...
â Celada
Sep 1 '15 at 10:38
1
1
Please, paste command that you typed, as well as your
sources.list
file.â MatthewRock
Sep 1 '15 at 10:57
Please, paste command that you typed, as well as your
sources.list
file.â MatthewRock
Sep 1 '15 at 10:57
add a comment |Â
4 Answers
4
active
oldest
votes
up vote
4
down vote
Opening the URL directly in a web browser gives this more informative error message
The requested URL /ubuntu/dists/saucy-security/universe/binary-i386/Packages was not found on this server.
From this it's a short step to checking whether Saucy still exists. Looking at http://releases.ubuntu.com/ it's possible to see that it's not mainline, but that http://old-releases.ubuntu.com/releases/ suggests it should be available.
Looking more closely with a web browser shows that although http://old-releases.ubuntu.com/ubuntu/dists/saucy-security/universe/binary-i386/Packages doesn't exist, the same file with a .bz2
and .gz
suffix does exist. Furthermore the same configuration exists for the current live distribution.
Searching for this scenario finds Why can't apt find Packages file when compressed versions exist? on AskUbuntu, which suggests that the solution is as follows:
Turns out something was corrupt in my local apt repository. Resetting
it usingsudo rm -fr /var/lib/apt/lists/*
fixed things.
add a comment |Â
up vote
0
down vote
Tye to use this:sed -i s/http/ftp/ /etc/apt/sources.list && apt-get update
New contributor
add a comment |Â
up vote
-1
down vote
try adding the host below from /etc/hosts/ on the last line
91.189.92.201 ph.archive.ubuntu.com
first to check the address "E: Failed to fetch http://ph.archive.ubuntu.com/ubuntu/pool/main/libx/libxinerama/libxinerama1_1.1.3-1_i386.deb 403 Forbidden [IP: 202.90.159.172 80]
change the address "ph.archive.ubuntu.com" from 202.90.159.172 to 91.189.92.201
here is the command:
vi /etc/hosts/
.
.
.
91.189.92.201 ph.archive.ubuntu.com
then save it :x!
91.189.92.201 (current rDNS urayuli.canonical.com) doesn't have thesaucy-security
package lists, so using it doesn't help in OP's case.
â n.st
Mar 26 '16 at 8:02
add a comment |Â
up vote
-1
down vote
Try changing the server your computer download the updates from.
sudo software-properties-gtk
add a comment |Â
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
Opening the URL directly in a web browser gives this more informative error message
The requested URL /ubuntu/dists/saucy-security/universe/binary-i386/Packages was not found on this server.
From this it's a short step to checking whether Saucy still exists. Looking at http://releases.ubuntu.com/ it's possible to see that it's not mainline, but that http://old-releases.ubuntu.com/releases/ suggests it should be available.
Looking more closely with a web browser shows that although http://old-releases.ubuntu.com/ubuntu/dists/saucy-security/universe/binary-i386/Packages doesn't exist, the same file with a .bz2
and .gz
suffix does exist. Furthermore the same configuration exists for the current live distribution.
Searching for this scenario finds Why can't apt find Packages file when compressed versions exist? on AskUbuntu, which suggests that the solution is as follows:
Turns out something was corrupt in my local apt repository. Resetting
it usingsudo rm -fr /var/lib/apt/lists/*
fixed things.
add a comment |Â
up vote
4
down vote
Opening the URL directly in a web browser gives this more informative error message
The requested URL /ubuntu/dists/saucy-security/universe/binary-i386/Packages was not found on this server.
From this it's a short step to checking whether Saucy still exists. Looking at http://releases.ubuntu.com/ it's possible to see that it's not mainline, but that http://old-releases.ubuntu.com/releases/ suggests it should be available.
Looking more closely with a web browser shows that although http://old-releases.ubuntu.com/ubuntu/dists/saucy-security/universe/binary-i386/Packages doesn't exist, the same file with a .bz2
and .gz
suffix does exist. Furthermore the same configuration exists for the current live distribution.
Searching for this scenario finds Why can't apt find Packages file when compressed versions exist? on AskUbuntu, which suggests that the solution is as follows:
Turns out something was corrupt in my local apt repository. Resetting
it usingsudo rm -fr /var/lib/apt/lists/*
fixed things.
add a comment |Â
up vote
4
down vote
up vote
4
down vote
Opening the URL directly in a web browser gives this more informative error message
The requested URL /ubuntu/dists/saucy-security/universe/binary-i386/Packages was not found on this server.
From this it's a short step to checking whether Saucy still exists. Looking at http://releases.ubuntu.com/ it's possible to see that it's not mainline, but that http://old-releases.ubuntu.com/releases/ suggests it should be available.
Looking more closely with a web browser shows that although http://old-releases.ubuntu.com/ubuntu/dists/saucy-security/universe/binary-i386/Packages doesn't exist, the same file with a .bz2
and .gz
suffix does exist. Furthermore the same configuration exists for the current live distribution.
Searching for this scenario finds Why can't apt find Packages file when compressed versions exist? on AskUbuntu, which suggests that the solution is as follows:
Turns out something was corrupt in my local apt repository. Resetting
it usingsudo rm -fr /var/lib/apt/lists/*
fixed things.
Opening the URL directly in a web browser gives this more informative error message
The requested URL /ubuntu/dists/saucy-security/universe/binary-i386/Packages was not found on this server.
From this it's a short step to checking whether Saucy still exists. Looking at http://releases.ubuntu.com/ it's possible to see that it's not mainline, but that http://old-releases.ubuntu.com/releases/ suggests it should be available.
Looking more closely with a web browser shows that although http://old-releases.ubuntu.com/ubuntu/dists/saucy-security/universe/binary-i386/Packages doesn't exist, the same file with a .bz2
and .gz
suffix does exist. Furthermore the same configuration exists for the current live distribution.
Searching for this scenario finds Why can't apt find Packages file when compressed versions exist? on AskUbuntu, which suggests that the solution is as follows:
Turns out something was corrupt in my local apt repository. Resetting
it usingsudo rm -fr /var/lib/apt/lists/*
fixed things.
edited Apr 13 '17 at 12:22
Communityâ¦
1
1
answered Sep 1 '15 at 11:04
roaima
41.6k549113
41.6k549113
add a comment |Â
add a comment |Â
up vote
0
down vote
Tye to use this:sed -i s/http/ftp/ /etc/apt/sources.list && apt-get update
New contributor
add a comment |Â
up vote
0
down vote
Tye to use this:sed -i s/http/ftp/ /etc/apt/sources.list && apt-get update
New contributor
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Tye to use this:sed -i s/http/ftp/ /etc/apt/sources.list && apt-get update
New contributor
Tye to use this:sed -i s/http/ftp/ /etc/apt/sources.list && apt-get update
New contributor
New contributor
answered 7 mins ago
SoPhat Vathana
1
1
New contributor
New contributor
add a comment |Â
add a comment |Â
up vote
-1
down vote
try adding the host below from /etc/hosts/ on the last line
91.189.92.201 ph.archive.ubuntu.com
first to check the address "E: Failed to fetch http://ph.archive.ubuntu.com/ubuntu/pool/main/libx/libxinerama/libxinerama1_1.1.3-1_i386.deb 403 Forbidden [IP: 202.90.159.172 80]
change the address "ph.archive.ubuntu.com" from 202.90.159.172 to 91.189.92.201
here is the command:
vi /etc/hosts/
.
.
.
91.189.92.201 ph.archive.ubuntu.com
then save it :x!
91.189.92.201 (current rDNS urayuli.canonical.com) doesn't have thesaucy-security
package lists, so using it doesn't help in OP's case.
â n.st
Mar 26 '16 at 8:02
add a comment |Â
up vote
-1
down vote
try adding the host below from /etc/hosts/ on the last line
91.189.92.201 ph.archive.ubuntu.com
first to check the address "E: Failed to fetch http://ph.archive.ubuntu.com/ubuntu/pool/main/libx/libxinerama/libxinerama1_1.1.3-1_i386.deb 403 Forbidden [IP: 202.90.159.172 80]
change the address "ph.archive.ubuntu.com" from 202.90.159.172 to 91.189.92.201
here is the command:
vi /etc/hosts/
.
.
.
91.189.92.201 ph.archive.ubuntu.com
then save it :x!
91.189.92.201 (current rDNS urayuli.canonical.com) doesn't have thesaucy-security
package lists, so using it doesn't help in OP's case.
â n.st
Mar 26 '16 at 8:02
add a comment |Â
up vote
-1
down vote
up vote
-1
down vote
try adding the host below from /etc/hosts/ on the last line
91.189.92.201 ph.archive.ubuntu.com
first to check the address "E: Failed to fetch http://ph.archive.ubuntu.com/ubuntu/pool/main/libx/libxinerama/libxinerama1_1.1.3-1_i386.deb 403 Forbidden [IP: 202.90.159.172 80]
change the address "ph.archive.ubuntu.com" from 202.90.159.172 to 91.189.92.201
here is the command:
vi /etc/hosts/
.
.
.
91.189.92.201 ph.archive.ubuntu.com
then save it :x!
try adding the host below from /etc/hosts/ on the last line
91.189.92.201 ph.archive.ubuntu.com
first to check the address "E: Failed to fetch http://ph.archive.ubuntu.com/ubuntu/pool/main/libx/libxinerama/libxinerama1_1.1.3-1_i386.deb 403 Forbidden [IP: 202.90.159.172 80]
change the address "ph.archive.ubuntu.com" from 202.90.159.172 to 91.189.92.201
here is the command:
vi /etc/hosts/
.
.
.
91.189.92.201 ph.archive.ubuntu.com
then save it :x!
edited Mar 26 '16 at 4:40
Anthon
59.5k17100162
59.5k17100162
answered Mar 26 '16 at 3:41
Learsi R. Ayubga
1
1
91.189.92.201 (current rDNS urayuli.canonical.com) doesn't have thesaucy-security
package lists, so using it doesn't help in OP's case.
â n.st
Mar 26 '16 at 8:02
add a comment |Â
91.189.92.201 (current rDNS urayuli.canonical.com) doesn't have thesaucy-security
package lists, so using it doesn't help in OP's case.
â n.st
Mar 26 '16 at 8:02
91.189.92.201 (current rDNS urayuli.canonical.com) doesn't have the
saucy-security
package lists, so using it doesn't help in OP's case.â n.st
Mar 26 '16 at 8:02
91.189.92.201 (current rDNS urayuli.canonical.com) doesn't have the
saucy-security
package lists, so using it doesn't help in OP's case.â n.st
Mar 26 '16 at 8:02
add a comment |Â
up vote
-1
down vote
Try changing the server your computer download the updates from.
sudo software-properties-gtk
add a comment |Â
up vote
-1
down vote
Try changing the server your computer download the updates from.
sudo software-properties-gtk
add a comment |Â
up vote
-1
down vote
up vote
-1
down vote
Try changing the server your computer download the updates from.
sudo software-properties-gtk
Try changing the server your computer download the updates from.
sudo software-properties-gtk
edited Aug 18 '16 at 10:00
techraf
4,100102139
4,100102139
answered Aug 18 '16 at 9:55
Santha Kumar
1
1
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f226775%2fgetting-403-forbidden-error-in-sudo-apt-get-update%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
A 403 error would be a problem with the remote web site...
â Celada
Sep 1 '15 at 10:38
1
Please, paste command that you typed, as well as your
sources.list
file.â MatthewRock
Sep 1 '15 at 10:57