Skip to content

Commit aa6dd90

Browse files
feat(video): proxmox 7
1 parent d213161 commit aa6dd90

File tree

1 file changed

+69
-0
lines changed

1 file changed

+69
-0
lines changed

_posts/2021-07-10-proxmox-7.md

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
---
2+
layout: post
3+
title: "Before you upgrade to Proxmox 7, please consider this..."
4+
date: 2021-07-10 14:00:00 -0500
5+
categories: proxmox
6+
tags: homelab proxmox
7+
---
8+
9+
[![Before you upgrade to Proxmox 7, please consider this...](https://img.youtube.com/vi/RCSp6gT7LWs/0.jpg)](https://www.youtube.com/watch?v=RCSp6gT7LWs "Before you upgrade to Proxmox 7, please consider this...")
10+
11+
As you may know, proxmox is my current choice for a hypervisor. Proxmox 7 is here and comes with a host of new features! In this video we're cover all of the new features in Proxmox 7 as well as how to upgrade your Proxmox server safely. We'll also cover all of the "scary" prompts you get while upgrading as well as some of the ways to make sure your upgrade is successful. So, if you're thinking about upgrading your HomeLab to Proxmox 7, be sure to check this video out first.
12+
13+
[Watch Video](https://www.youtube.com/watch?v=RCSp6gT7LWs)
14+
15+
## Commands
16+
17+
18+
Check your upgrade status
19+
20+
```bash
21+
pve6to7 –full
22+
```
23+
24+
First, make sure we have the latest packages
25+
26+
```bash
27+
apt update
28+
apt dist-upgrade
29+
30+
```
31+
32+
Update all Debian repositories to Bullseye
33+
34+
```bash
35+
sed -i 's/buster\/updates/bullseye-security/g;s/buster/bullseye/g' /etc/apt/sources.list
36+
```
37+
38+
We’ll also need to make sure we comment out any Proxmox ve 6.0 repositories.
39+
40+
```bash
41+
nano /apt/sources/list
42+
nano /etc/apt/sources.list.d/pve-enterprise.list
43+
44+
```
45+
46+
Add Proxmox VE & package Repo
47+
48+
```
49+
echo "deb https://enterprise.proxmox.com/debian/pve bullseye pve-enterprise" > /etc/apt/sources.list.d/pve-enterprise.list
50+
```
51+
52+
If you’re using the non-subscription repository (like me) also run
53+
54+
```bash
55+
sed -i -e 's/buster/bullseye/g' /etc/apt/sources.list.d/pve-install-repo.list
56+
```
57+
58+
If you’re running Ceph, you’ll need to run
59+
60+
```
61+
echo "deb http://download.proxmox.com/debian/ceph-octopus bullseye main" > /etc/apt/sources.list.d/ceph.list
62+
```
63+
64+
Do the upgrade
65+
66+
```
67+
apt update
68+
apt dist-upgrade
69+
```

0 commit comments

Comments
 (0)