Project

General

Profile

Debian 9 to 10 » History » Version 3

Jamila Khan, 02/25/2020 10:15 PM
removing client info

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
<pre>
10
vim /etc/apt/sources.list
11
</pre>
12
13
<pre>
14
:%s/stretch/buster/g
15
</pre>
16
17
h2. Upgrade the system
18
19
h3. Check for Necessary Disk Space
20
21
<pre>apt-get -o APT::Get::Trivial-Only=true dist-upgrade</pre>
22
23
h3. Update the sources
24
25
<pre>
26
apt-get update
27
</pre>
28
29
h3. Minimal Upgrade
30
31
<pre> apt-get upgrade</pre>
32
33
h3. Full Upgrade
34
35
<pre>
36
apt-get dist-upgrade
37
</pre>
38
39
h3. Upgrade MySQL databases (if MySQL/MariaDB installed)
40
41
<pre>
42
mysql_upgrade
43
</pre>
44
45
h2. Common problems
46 2 Jamila Khan
47
h3. borg
48
49
* Changes needed to the borg backupninja jobs #48568-1
50
** need to add @encryption = none@ just above the passphrase
51 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