modified: README.md
All checks were successful
/ build-docker-image (push) Successful in 9s

renamed:    documentation/workstation.md -> docs/workstation.md
This commit is contained in:
2025-10-25 17:28:57 +00:00
parent ffa6306b38
commit d0d121f59d
2 changed files with 38 additions and 31 deletions

View File

@@ -1,19 +1,24 @@
# Proxmox # Proxmox
- [Setup](#setup)
- [Quorum and qdevice](#quorum-and-qdevice)
- [Power Management](#power-management)
- [As Workstation](#as-workstation)
- [Migatrion](#migatrion)
- [GPU Passthrought](#gpu-passthrought)
- [Misc](#misc)
## Setup ## Setup
- [Download](https://www.proxmox.com/en/downloads/category/iso-images-pve) - [Download](https://www.proxmox.com/en/downloads/category/iso-images-pve)
- [Setup and official Information](https://www.proxmox.com/en/proxmox-ve/get-started) - [Setup and official Information](https://www.proxmox.com/en/proxmox-ve/get-started)
- [System Administration](https://pve.proxmox.com/pve-docs/chapter-sysadmin.html) - [System Administration](https://pve.proxmox.com/pve-docs/chapter-sysadmin.html)
## misc
https://dannyda.com/2020/05/10/how-to-delete-remove-local-lvm-from-proxmox-ve-pve-and-some-lvm-basics-commands/
## Quorum and qdevice ## Quorum and qdevice
Required if cluster with two nodes Required if cluster with two nodes
``` ``` bash
#check quorum status #check quorum status
pvecm status pvecm status
@@ -54,6 +59,7 @@ pvecm status
``` ```
### Power Management ### Power Management
```bash ```bash
#disable #disable
systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
@@ -77,24 +83,25 @@ powertop --auto-tune
@reboot powertop --auto-tune >/dev/null 2>&1 @reboot powertop --auto-tune >/dev/null 2>&1
``` ```
## As Workstation
[check](./docs/workstation.md) for more information how to setup proxmox instalation as an graphical workstation.
## As workstation
[check](documentation/workstation.md) for more information how to setup proxmox instalation as workstation
## Migatrion ## Migatrion
[7 to 8](https://pve.proxmox.com/wiki/Upgrade_from_7_to_8) [7 to 8](https://pve.proxmox.com/wiki/Upgrade_from_7_to_8)
## GPU Passthrought ## GPU Passthrought
- https://gist.github.com/qubidt/64f617e959725e934992b080e677656f
- https://wiki.archlinux.org/title/PCI_passthrough_via_OVMF
- https://forum.level1techs.com/t/5700g-single-dgpu-passthrough-with-host-on-igp/175772/8
- https://gist.github.com/matt22207/bb1ba1811a08a715e32f106450b0418a
- https://forum.proxmox.com/threads/amd-ryzen-7-renoir-4750g-apu-and-igpu-pass-thru-to-windows-10-guest.84849/
- https://news.knowledia.com/US/en/articles/testing-gpu-passthrough-on-amd-ryzen-7-5700g-apu-e89e8062cb50e042ec14588098caca55592881f1
- https://www.reddit.com/r/VFIO/comments/sgfqys/ryzen_7_5700g_igpu_passthrough_proxmox/
Atenção a este!!! - https://gist.github.com/qubidt/64f617e959725e934992b080e677656f
https://www.reddit.com/r/Proxmox/comments/lcnn5w/proxmox_pcie_passthrough_in_2_minutes/ - https://wiki.archlinux.org/title/PCI_passthrough_via_OVMF
- https://forum.level1techs.com/t/5700g-single-dgpu-passthrough-with-host-on-igp/175772/8
- https://gist.github.com/matt22207/bb1ba1811a08a715e32f106450b0418a
- https://forum.proxmox.com/threads/amd-ryzen-7-renoir-4750g-apu-and-igpu-pass-thru-to-windows-10-guest.84849/
- https://news.knowledia.com/US/en/articles/testing-gpu-passthrough-on-amd-ryzen-7-5700g-apu-e89e8062cb50e042ec14588098caca55592881f1
- https://www.reddit.com/r/VFIO/comments/sgfqys/ryzen_7_5700g_igpu_passthrough_proxmox/
- https://www.reddit.com/r/Proxmox/comments/lcnn5w/proxmox_pcie_passthrough_in_2_minutes/
## Misc
https://dannyda.com/2020/05/10/how-to-delete-remove-local-lvm-from-proxmox-ve-pve-and-some-lvm-basics-commands/

View File

@@ -1,18 +1,18 @@
# Proxmox as a workstation # Proxmox as a workstation
## sources
https://pve.proxmox.com/wiki/Developer_Workstations_with_Proxmox_VE_and_X11
## Destop Enviroment - [xfce4/lightdm](#xfce4lightdm)
- [Gnome](#gnome)
- [kde](#kde)
### lightdm ## xfce4/lightdm
``` bash ``` bash
apt install xfce4 chromium lightdm apt install xfce4 lightdm
``` ```
## lightdm auto login **lightdm auto login:**
```bash ```bash
# /etc/lightdm/lightdm.conf # /etc/lightdm/lightdm.conf
@@ -23,15 +23,14 @@ autologin-user-timeout=5
#greeter-session=unity-greeter #greeter-session=unity-greeter
``` ```
**Disable ligthdm black scren idle:**
## Disable ligthdm black scren idle
```bash ```bash
# /etc/lightdm/lightdm.conf # /etc/lightdm/lightdm.conf
[Seat:*] [Seat:*]
xserver-command=X -s 0 dpms xserver-command=X -s 0 dpms
``` ```
## Gnome ## Gnome
``` bash ``` bash
@@ -41,7 +40,8 @@ xserver-command=X -s 0 dpms
gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-ac-timeout 0 gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-ac-timeout 0
``` ```
## kde
``` bash
sudo sudo apt install kde-plasma
```