0596.html 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>In-Place Upgrade Proxmox VE from 7 to 8</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Home Lab,Home Lab Ideas,Hypervisor,Install Guide,Self-Hosted,In Place Upgrade,Proxmox,Update,Upgrade,VM Host,Virtual Machine Host,Virtual Machine Hypervisor,Debian,Debian 11,Debian 12,Debian Bullseye,Debian Bookworm,Update Proxmox 7 To 8,In-Place Linux Upgrade,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="In-Place Upgrade Proxmox VE from 7 to 8">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="06/29/2023 07:44:17 AM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>In-Place Upgrade Proxmox VE from 7 to 8</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <p>💡 <em>NOTE: These steps are for a single standalone Proxmox server. They have not been tested in a clustered environment</em></p>
  26. <p>🚨 <em>WARNING: Make sure to create external backups of all important VMs and CTs just in case something goes wrong. You&#39;ve been warned.</em></p>
  27. <ol>
  28. <li>Log into Proxmox VE, either at the console or the web UI and launch the web shell</li>
  29. <li>Stop all running VMs and CTs</li>
  30. <li>Run the following commands to make sure Proxmox VE is running the latest 7 updates
  31. <div class="codeBlock"># disable proxmox commmercial repo<br />
  32. sed -i &quot;s/^deb/\#deb/&quot; /etc/apt/sources.list.d/pve-enterprise.list<br />
  33. # add the proxmox community repo<br />
  34. echo &quot;deb http://download.proxmox.com/debian/pve $(grep &quot;VERSION=&quot; /etc/os-release | sed -n &#39;s/.*(\(.*\)).*/\1/p&#39;) pve-no-subscription&quot; &gt; /etc/apt/sources.list.d/pve-community.list<br />
  35. # update software repositories<br />
  36. apt update<br />
  37. # install software updates<br />
  38. apt dist-upgrade -y<br />
  39. # clean apt cache<br />
  40. apt clean<br />
  41. # run the upgrade checklist utility, resolve any issues reported before continuing<br />
  42. pve7to8 --full<br />
  43. # update apt repositories to bullseye<br />
  44. sed -i &#39;s/bullseye/bookworm/g&#39; /etc/apt/sources.list &amp;&amp; sed -i &#39;s/bullseye/bookworm/g&#39; /etc/apt/sources.list.d/pve-community.list &amp;&amp; sed -i &#39;s/bullseye/bookworm/g&#39; /etc/apt/sources.list.d/pve-enterprise.list<br />
  45. # update software repositories<br />
  46. apt update<br />
  47. # install software updates<br />
  48. apt dist-upgrade -y<br />
  49. # clean apt cache<br />
  50. apt clean<br />
  51. # reboot<br />
  52. reboot now</div>
  53. </li>
  54. <li>That&#39;s it, Proxmox VE has now been updated to the latest v8.x</li>
  55. </ol>
  56. <p>Source and Additional Info: <a href="https://pve.proxmox.com/wiki/Upgrade_from_7_to_8" target="_blank">https://pve.proxmox.com/wiki/Upgrade_from_7_to_8</a></p> </div>
  57. </div>
  58. </body>
  59. </html>