Project

General

Profile

Debian 10 to 11 » History » Version 3

Jamila Khan, 12/21/2021 05:04 PM

1 2 Jamila Khan
{{lastupdated_at}} by {{lastupdated_by}}
2
3
{{>toc}}
4
5 1 Jamila Khan
h1. Debian 10 to 11
6
7 2 Jamila Khan
h2. Pre update check
8
9
h3. Stretch check
10
11
Check if any sources still point to stretch
12
13
<pre>
14
cd /etc/apt
15
grep -nr stretch .
16
</pre>
17
18
If so, bring those up to buster and run updates first
19
https://redmine.palantetech.coop/projects/commons/wiki/Debian_9_to_10
20
21
h3. Metapackage check
22
23 1 Jamila Khan
Check to make sure kernel metapackage is installed, not just specific kernel
24
25 2 Jamila Khan
@dpkg -l "linux-image*" | grep ^ii | grep -i meta@ should have results
26
If not, install metapackage
27
https://www.debian.org/releases/bullseye/amd64/release-notes/ch-upgrading.en.html#kernel-metapackage
28 1 Jamila Khan
29 2 Jamila Khan
h3. Purged package check
30
31
List and purge removed packages with config files remaining
32
https://www.debian.org/releases/bullseye/amd64/release-notes/ch-upgrading.en.html#purge-removed-packages
33
34
<pre>
35
aptitude search '~c'
36
aptitude purge '~c'
37
</pre>
38
39 3 Jamila Khan
h3. Hold check
40
41
These commands should have no results
42
43
<pre>
44
aptitude search "~ahold" 
45
dpkg --get-selections | grep 'hold$'
46
</pre>
47
48 2 Jamila Khan
49
h2. Update sources list
50
51
Check which sources exist that point to buster
52
<pre>
53
cd /etc/apt
54
grep -nr buster .
55
</pre>
56
57
Edit the main list, and any others that come up
58
59
<pre>
60
vim /etc/apt/sources.list
61
</pre>
62
63
<pre>
64
:%s/buster/bullseye/g
65
</pre>
66
67
h2. Upgrade the system
68
69
h3. Check for Necessary Disk Space
70
71
<pre>apt-get -o APT::Get::Trivial-Only=true dist-upgrade</pre>
72
73
h3. Update the sources
74
75
<pre>
76
apt-get update
77
</pre>
78
79
h3. Minimal Upgrade
80
81
<pre> apt-get upgrade</pre>
82
83
* if it asks whether to change /etc/apt/trusted.gpg.d/debian-archive-jessie-security-automatic.gpg, say yes
84
* other things it asks to change, say no, keep the existing file
85
86
h3. Full Upgrade
87
88
<pre>
89
apt-get dist-upgrade
90
</pre>
91
92
h3. Upgrade MySQL databases (if MySQL/MariaDB installed)
93
94
<pre>
95
mysql_upgrade
96
</pre>
97
98
h3. Check that things are up
99
100
* if a web server, make sure websites are up
101
* if an infrastructure server, test and make sure all parts of the infrastructure are working properly
102
* if a PTC server check the "recovery plan":https://redmine.palantetech.coop/projects/pt/wiki/Recovery_Plan entry for that server to make sure everything has recovered
103
104
h3. Check what packages were removed
105
106
* @cat /var/log/apt/history.log | grep Remove@
107
* make sure there was nothing important in there
108
109
110
h2. Common problems
111
112
tbd
Go to top