12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>In Place Upgrade Debian 10 Buster to 11 Bullseye</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="How To,Tutorial,i12bretro,Upgrade,Update,In Place Upgrade,Debian,Bullseye">
- <meta name="author" content="i12bretro">
- <meta name="description" content="In Place Upgrade Debian 10 Buster to 11 Bullseye">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>In Place Upgrade Debian 10 Buster to 11 Bullseye</h1>
- </div>
- <div></div>
- <div id="content">
- <ol>
- <li>Log into the Debian 10 device</li>
- <li>Run the following commands in a terminal window
- <div class="codeBlock"># clean apt cache<br />
- sudo apt clean<br />
- # update apt repositories to bullseye<br />
- find /etc/apt -type f -name "*.list" -print0 | xargs -0 sudo sed -i.bak "s/buster\/updates/bullseye-security/g;s/buster/bullseye/g"<br />
- # update software repositories<br />
- sudo apt update<br />
- # install software updates<br />
- sudo apt dist-upgrade -y<br />
- # clean apt cache<br />
- sudo apt clean<br />
- # reboot<br />
- sudo reboot now</div>
- </li>
- <li>That's it, Debian 10 Buster has been updated in place to Debian 11 Bullseye</li>
- </ol>
- </div>
- </div>
- </body>
- </html>
-
|