Debian 9 to 10 » History » Revision 2
Revision 1 (Jamila Khan, 02/25/2020 10:10 PM) → Revision 2/12 (Jamila Khan, 02/25/2020 10:13 PM)
{{lastupdated_at}} by {{lastupdated_by}}
{{>toc}}
h1. Debian 9 to 10
h2. Update sources list
<pre>
vim /etc/apt/sources.list
</pre>
<pre>
:%s/stretch/buster/g
</pre>
h2. Upgrade the system
h3. Check for Necessary Disk Space
<pre>apt-get -o APT::Get::Trivial-Only=true dist-upgrade</pre>
h3. Update the sources
<pre>
apt-get update
</pre>
h3. Minimal Upgrade
<pre> apt-get upgrade</pre>
h3. Full Upgrade
<pre>
apt-get dist-upgrade
</pre>
h3. Upgrade MySQL databases (if MySQL/MariaDB installed)
<pre>
mysql_upgrade
</pre>
h2. Common problems
h3. borg
* Changes needed to the borg backupninja jobs #48568-1
** need to add @encryption = none@ just above the passphrase
** change the path to the directory to be the complete full path, not use the tilde for home like ~/backups/borgbackups/offal, and must start with a slash so @/home/members/srlp/backups/srlp-sync/borgbackups@ not @borgbackups/@
Go to top