Files
proxmox/README.md
2023-04-08 17:43:27 +00:00

41 lines
905 B
Markdown

# proxmox
## Setup
- [Download](https://www.proxmox.com/en/downloads/category/iso-images-pve)
- [Setup and official Information](https://www.proxmox.com/en/proxmox-ve/get-started)
- [System Administration](https://pve.proxmox.com/pve-docs/chapter-sysadmin.html)
```bash
#/etc/apt/sources.list
deb http://ftp.pt.debian.org/debian bullseye main contrib non-free
deb http://ftp.pt.debian.org/debian bullseye-updates main contrib non-free
deb http://download.proxmox.com/debian/pve bullseye pve-no-subscription
# security updates
deb http://security.debian.org bullseye-security main contrib non-free
```
add to all packages
non-free
## Workstation UI
``` bash
apt install gnome
apt install lightdm
```
#disable
systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
#enable
systemctl unmask sleep.target suspend.target hibernate.target hybrid-sleep.target
```