1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-04-04 07:47:45 +02:00

Structure:

- main wiki folder added
- removed partition into software-types
- thinking about partition by software/general
This commit is contained in:
TiynGER 2020-10-22 20:13:26 +02:00
parent 8b26722073
commit f04a6752f7
45 changed files with 31 additions and 35 deletions

View File

@ -1,22 +0,0 @@
# Virtualization
## Docker
Docker is a virtualization software that deploys docker containers.
Due to easy handlin and reproducable environments it is a useful tool.
## Enable Nvidia GPUs
To use Nvidia GPUs with docker you need to install the nvidia-cuda-toolkit.
There is a [guide on marmelab](https://marmelab.com/blog/2018/03/21/using-nvidia-gpu-within-docker-container.html) that focusses on that topic.
## Proxmox
Proxmox Virtual Envoronment is a virtualization software for servers.
It's made for VM and container deployment.
## PCI/GPU passthrough
To use GPUs or other PCI devices you need to work with PCI passthrough.
For documentation you can look in the [Proxmox wiki](https://pve.proxmox.com/wiki/Pci_passthrough).
There is also an [article](https://www.reddit.com/r/homelab/comments/b5xpua/the_ultimate_beginners_guide_to_gpu_passthrough) on reddit, that focusses especially on windows 10 VMs with GPU passthrough.

View File

@ -1,19 +1,8 @@
# Proxmox
# Disk Management
Proxmox is an environment for virtual machines and containers.
## Disk Management
### Enlarging disk of a VM
## Grow non-LVM ext4 partition
ATTENTION: Please note that the partition to enlarge has to be the last one with the free space after it.
This guide does not consider LVMs and is written for partitions with ext4 filesystems.
SSH into Proxmox.
Enlarge a disk by using:
`qm resize <vmid> <vm-disk-to-enlarge> <size>`
For example:
`qm resize 100 ide0 +100G`
SSH into the VM.
- run `lsblk` check if the disk size has changed

10
wiki/docker.md Normal file
View File

@ -0,0 +1,10 @@
# Docker
Docker is a virtualization software that deploys docker containers.
Due to easy handling and reproducable environments it is a useful tool.
## Enable Nvidia GPUs
To use Nvidia GPUs with docker you need to install the nvidia-cuda-toolkit.
There is a [guide on marmelab](https://marmelab.com/blog/2018/03/21/using-nvidia-gpu-within-docker-container.html) that focusses on that topic.

19
wiki/proxmox.md Normal file
View File

@ -0,0 +1,19 @@
# Proxmox
Proxmox is an environment for virtual machines and containers.
## Disk Management
### Enlarging disk of a VM
SSH into Proxmox.
Enlarge a disk by using:
`qm resize <vmid> <vm-disk-to-enlarge> <size>`
For example:
`qm resize 100 ide0 +100G`
## PCI/GPU passthrough
To use GPUs or other PCI devices you need to work with PCI passthrough.
For documentation you can look in the [Proxmox wiki](https://pve.proxmox.com/wiki/Pci_passthrough).
There is also an [article](https://www.reddit.com/r/homelab/comments/b5xpua/the_ultimate_beginners_guide_to_gpu_passthrough) on reddit, that focusses especially on windows 10 VMs with GPU passthrough.