-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a7e7eb1
commit e3f3384
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
title: Proxmox | ||
--- | ||
|
||
# Proxmox | ||
|
||
Proxmox ist eine Virtualisierungsplattform. | ||
|
||
## Festplatte vergrößern | ||
|
||
Host: | ||
qm resize [VM_ID] [DISK_NAME] +[SIZE_INCREASE]G | ||
qm resize 301 scsi0 +2G | ||
|
||
Guest: | ||
fdisk -l | ||
parted | ||
|
||
## Fertige image nutzen | ||
|
||
Vorbereitung: | ||
VM erstellen | ||
Festplatte löschen | ||
|
||
wget https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-nocloud-amd64.qcow2 | ||
qm importdisk 302 debian-12-nocloud-amd64.qcow2 local-lvm | ||
|
||
Festplatte Bus umstellen auf Sata | ||
SSD Emulation: AN | ||
Discard: AN | ||
|
||
Option: | ||
Boot-Reihenfolge: sata0 einschalten | ||
sata0 nach oben schieben | ||
|
||
SSH aktivieren: | ||
dpkg-reconfigure openssh-server | ||
|
||
Quelle: https://www.youtube.com/watch?v=k6-miz1Tb80 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# SSH | ||
|
||
Secure Shell oder Secure Socket Shell ist ein Netzwerkprotokoll das zur administration von Linux Server dient. | ||
|
||
## SSH key auf einen entfernten Server kopieren | ||
|
||
ssh-copy-id [email protected] | ||
|
||
## Generieren eines neuen SSH-Schlüssels | ||
|
||
ssh-keygen -t ed25519 -C "[email protected]" | ||
|
||
|