arm64 server from 19.10 upgrade to 20.04 failed
I tried to do the version upgrade as the title said.
while doing this command:
sudo do-release-upgrade --mode='server'
it will output as below
-------
Get:1 Upgrade tool signature [1,554 B]
Get:2 Upgrade tool [1,341 kB]
Fetched 1,343 kB in 0s (0 B/s)
authenticate 'focal.tar.gz' against 'focal.tar.gz.gpg'
extracting 'focal.tar.gz'
E:Failed to fetch
http://
404 Not Found [IP: 91.189.88.142 80], E:Failed to fetch
http://
404 Not Found [IP: 91.189.88.142 80], E:Failed to fetch
http://
404 Not Found [IP: 91.189.88.142 80], E:Failed to fetch
http://
404 Not Found [IP: 91.189.88.142 80], E:Some index files failed to
download. They have been ignored, or old ones used instead.
Restoring original system state
Aborting
Reading package lists... Done
Building dependency tree
Reading state information... Done
=== Command detached from window (Tue Feb 16 08:02:17 2021) ===
=== Command terminated with exit status 1 (Tue Feb 16 08:02:27 2021) ===
-------
then I try to access the URL which shows 404
http://
there does not contain any binary-arm64 folder,
but the release note said there should be
ddf39beb27be50
b1524b8a6c921c
dd5faa5b49de3a
74191269978b49
please help,
thank you
Question information
- Language:
- English Edit question
- Status:
- Solved
- For:
- Ubuntu Edit question
- Assignee:
- No assignee Edit question
- Solved by:
- Manfred Hampl
- Solved:
- 2021-02-16
- Last query:
- 2021-02-16
- Last reply:
- 2021-02-16
|
#1 |
The archive.ubuntu.com repository server contains only the packages for amd64 and i386 architecture.
The packages for other processor architectures are on the ports.ubuntu.com server.
The problem that you see is not related to a release upgrade, but your package management system seems to be wrongly configured such that even a normal package update does not work.
What is the output of the commands
uname -a
lsb_release -crid
dpkg --print-
dpkg --print-
sudo apt update
cat -n /etc/apt/
Lindroos Hsu (tommady) said : | #2 |
uname -a
Linux worker-node-2 5.3.0-1030-raspi2 #32-Ubuntu SMP Sun Jul 12 21:20:28 UTC 2020 aarch64 aarch64 aarch64 GNU/Linux
lsb_release -crid
Distributor ID: Ubuntu
Description: Ubuntu 19.10
Release: 19.10
Codename: eoan
dpkg --print-
arm64
dpkg --print-
(no output)
sudo apt update
Hit:1 https:/
Hit:2 http://
Hit:3 http://
Hit:4 http://
Hit:5 http://
Reading package lists... Done
Building dependency tree
Reading state information... Done
All packages are up to date.
cat -n /etc/apt/
1 ## Note, this file is written by cloud-init on first boot of an instance
2 ## modifications made here will not survive a re-bundle.
3 ## if you wish to make changes you can:
4 ## a.) add 'apt_preserve_
5 ## or do the same in user-data
6 ## b.) add sources in /etc/apt/
7 ## c.) make changes to template file /etc/cloud/
8
9 # See http://
10 # newer versions of the distribution.
11 deb http://
12 # deb-src http://
13
14 ## Major bug fix updates produced after the final release of the
15 ## distribution.
16 deb http://
17 # deb-src http://
18
19 ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
20 ## team. Also, please note that software in universe WILL NOT receive any
21 ## review or updates from the Ubuntu security team.
22 deb http://
23 # deb-src http://
24 deb http://
25 # deb-src http://
26
27 ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
28 ## team, and may not be under a free licence. Please satisfy yourself as to
29 ## your rights to use the software. Also, please note that software in
30 ## multiverse WILL NOT receive any review or updates from the Ubuntu
31 ## security team.
32 deb http://
33 # deb-src http://
34 deb http://
35 # deb-src http://
36
37 ## N.B. software from this repository may not have been tested as
38 ## extensively as that contained in the main release, although it includes
39 ## newer versions of some applications which may provide useful features.
40 ## Also, please note that software in backports WILL NOT receive any review
41 ## or updates from the Ubuntu security team.
42 deb http://
43 # deb-src http://
44
45 ## Uncomment the following two lines to add software from Canonical's
46 ## 'partner' repository.
47 ## This software is not part of Ubuntu, but is offered by Canonical and the
48 ## respective vendors as a service to Ubuntu users.
49 # deb http://
50 # deb-src http://
51
52 deb http://
53 # deb-src http://
54 deb http://
55 # deb-src http://
56 deb http://
57 deb http://
58 # deb-src http://
59 # deb-src http://
Lindroos Hsu (tommady) said : | #4 |
thank you Manfred Hampl, you mentioned a very important point,
arm64 is under ports.ubuntu.com domain name
so I change back the source.list from old-release.
then its success.
thanks again!
Lindroos Hsu (tommady) said : | #5 |
Thanks Manfred Hampl, that solved my question.