0538.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>In Place Upgrade Debian 10 Buster to 11 Bullseye</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="How To,Tutorial,i12bretro,Upgrade,Update,In Place Upgrade,Debian,Bullseye">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="In Place Upgrade Debian 10 Buster to 11 Bullseye">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  12. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  13. <script type="text/javascript" src="includes/js/steps.js"></script>
  14. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  15. </head>
  16. <body>
  17. <div id="gridContainer">
  18. <div class="topMargin"></div>
  19. <div id="listName" class="topMargin">
  20. <h1>In Place Upgrade Debian 10 Buster to 11 Bullseye</h1>
  21. </div>
  22. <div></div>
  23. <div id="content">
  24. <ol>
  25. <li>Log into the Debian 10 device</li>
  26. <li>Run the following commands in a terminal window
  27. <div class="codeBlock"># clean apt cache<br />
  28. sudo apt clean<br />
  29. # update apt repositories to bullseye<br />
  30. find /etc/apt -type f -name &quot;*.list&quot; -print0 | xargs -0 sudo sed -i.bak &quot;s/buster\/updates/bullseye-security/g;s/buster/bullseye/g&quot;<br />
  31. # update software repositories<br />
  32. sudo apt update<br />
  33. # install software updates<br />
  34. sudo apt dist-upgrade -y<br />
  35. # clean apt cache<br />
  36. sudo apt clean<br />
  37. # reboot<br />
  38. sudo reboot now</div>
  39. </li>
  40. <li>That&#39;s it, Debian 10 Buster has been updated in place to Debian 11 Bullseye</li>
  41. </ol>
  42. </div>
  43. </div>
  44. </body>
  45. </html>