Project

General

Profile

Debian 9 to 10 » History » Version 4

Jamila Khan, 03/06/2020 12:50 PM

1 1 Jamila Khan
{{lastupdated_at}} by {{lastupdated_by}}
2
3
{{>toc}}
4
5
h1. Debian 9 to 10
6
7
h2. Update sources list
8
9 4 Jamila Khan
check which sources exist that point to stretch
10
<pre>
11
cd /etc/apt
12
grep -nr stretch .
13
</pre>
14
15
Edit the main list, and any others that come up
16
17 1 Jamila Khan
<pre>
18
vim /etc/apt/sources.list
19
</pre>
20
21
<pre>
22
:%s/stretch/buster/g
23
</pre>
24
25
h2. Upgrade the system
26
27
h3. Check for Necessary Disk Space
28
29
<pre>apt-get -o APT::Get::Trivial-Only=true dist-upgrade</pre>
30
31
h3. Update the sources
32
33
<pre>
34
apt-get update
35
</pre>
36
37
h3. Minimal Upgrade
38
39
<pre> apt-get upgrade</pre>
40
41
h3. Full Upgrade
42
43
<pre>
44
apt-get dist-upgrade
45
</pre>
46
47
h3. Upgrade MySQL databases (if MySQL/MariaDB installed)
48
49
<pre>
50
mysql_upgrade
51
</pre>
52
53
h2. Common problems
54 2 Jamila Khan
55
h3. borg
56
57
* Changes needed to the borg backupninja jobs #48568-1
58
** need to add @encryption = none@ just above the passphrase
59 3 Jamila Khan
** change the path to the directory to be the complete full path, not use the tilde for home, and must start with a slash
Go to top