124 lines
2.9 KiB
Markdown
124 lines
2.9 KiB
Markdown
|
|
|
|
# Proxmox ohne Subscription
|
|
|
|
Free-Repository aktivieren und Enterprise-Repository deaktivieren:
|
|
|
|
|
|
```bash
|
|
sudo mv /etc/apt/sources.list.d/pve-enterprise.list /etc/apt/pve-enterprise.list
|
|
echo deb http://download.proxmox.com/debian stretch pve-no-subscription > /etc/apt/sources.list.d/pve-no-subscription.list
|
|
```
|
|
No-Subscription-Hinweis in der Weboberfläche deaktivieren:
|
|
```bash
|
|
sudo sed -i.bak 's/\/nodes\/localhost\/subscription/\/version/g' /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js
|
|
```
|
|
|
|
um ein aktuelles Logging zu machen :
|
|
2 Website öffnen dort die Shell starten und in der Shell :
|
|
```bash
|
|
journalctl -f
|
|
```
|
|
|
|
## LHX Templates
|
|
|
|
https://tteck.github.io/Proxmox/
|
|
|
|
|
|
|
|
|
|
Gitea Migration Zugangstoken 6a9061b60424cb3c56953cc919a2f1860208cf8d
|
|
|
|
|
|
|
|
### Festplatte durchreichen
|
|
|
|
Disk-ID der gewünschten Festplatte herausfinden: Nutz den Befehl
|
|
ls -lah /dev/disk/by-id/
|
|
|
|
ACHTUNG: Ersetze bei BEDARF den Wert “-scsi” durch die in Schritt 3 gewonnen Erkenntnis!
|
|
Vorher am besten die VM runterfahren
|
|
qm set 104 -sata2 /dev/disk/by-id/ata-ST20000NM007D-3DJ103_ZVT7ENML
|
|
|
|
danach die VM starten oder neustarten und dann ist sie da.
|
|
|
|
|
|
### Image file as Disk importieren
|
|
|
|
**qm disk import 100 rr.img local-lvm**
|
|
qm disk import Befehl
|
|
100 VID der VM
|
|
rr.img Image file
|
|
local-lvm Storage location on the Server
|
|
|
|
|
|
## NextcludTurnkey
|
|
|
|
[INFO] login: root
|
|
[INFO] password: d4kmKavq0d8=
|
|
|
|
admin
|
|
.Bunte135.
|
|
|
|
|
|
reset mysql password:
|
|
|
|
/usr/lib/inithooks/bin/mysqlconf.py
|
|
|
|
|
|
|
|
Web: http://192.168.132.246 │
|
|
│ https://192.168.132.246 │
|
|
│ Webmin: https://192.168.132.246:12321 │
|
|
│ Adminer: https://192.168.132.246:12322 │
|
|
│ SSH/SFTP: root@192.168.132.246 (port 22)
|
|
|
|
|
|
|
|
|
|
|
|
## Mein Proxmox Server :
|
|
|
|
nvme auf dem Mainboard oben hat die Seriennr. AA243030420
|
|
HIer ist das System installiert !!!
|
|
nvme auf dem Mainboard unten hat die Seriennr. AA243010422
|
|
|
|
/dev/sda 20TB Exynos obere Platte hat ZVT7RNML als Seriennummer
|
|
/dev/sdb 20TB Exynos untere Platte hat ZVT6VP4J als Seriennummer
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### DSM on Proxmox Qemu Guest Agent
|
|
|
|
Install Simple Permission Manager
|
|
Install QEMU Guest Agent
|
|
Allow in Simple Permission Manager the Qemu Guets Agent and User
|
|
|
|
SSH to synology and run as root:
|
|
```bash
|
|
sudo sed -i 's/package/root/g' /var/packages/qemu-ga/conf/privilege
|
|
```
|
|
|
|
Stop VM then activate Guest Agent in Options
|
|
Start VM again
|
|
|
|
|
|
|
|
### Import OVA VM to Proxmox
|
|
|
|
|
|
**Import ganze VM**
|
|
qm importovf {vmid} {VM name}.ovf {target storage}
|
|
```bash
|
|
qm importovf 100 Server.ovf local-zfs
|
|
```
|
|
**Import only Disk**
|
|
qm disk import {target VMID} {vmdk file} {target storage}
|
|
```bash
|
|
qm disk import 104 Server.vmdk local-zfs
|
|
```
|
|
|