- In the VM (running or stopped):
Hardware > Hard disk, on the toolbarDisk action > Resize
- Set the number of GBs to add, then validate
- Start the VM if not already
- Install partitionning tool:
apt install parted
This guide will help people that wants to use their nvidia gpu
chmod +x NVIDIA-Linux-x86_64-580.95.05.runapt install pve-headers./NVIDIA-Linux-x86_64-580.95.05.run --dkmsnvidia-smiDone in proxmox 9
/etc/kernel/cmdline: iommu=pt (no need of pcie_acs_override=downstream,multifunction as we don't need separate iommu groups, no need of intel_iommu=on for kernels >=6.8)proxmox-boot-tool refreshnano /etc/modules-load.d/pci-pass-through.conf:vfio
vfio_iommu_type1
| # Add this line in your container that needs to mount a share. | |
| # The target path will be relative to the root of the container. | |
| # Note the missing slash '/' in the target path. In the example, the mount point will be at /<target path> | |
| # Without 'create=dir', the container won't be able to start as the /<target path> have to exist to mount properly | |
| lxc.mount.entry = /mnt/user/<the share name> <target path> none bind,create=dir 0 0 |
| #!/usr/bin/env bash | |
| #### | |
| # This script use .env where should be defined DB_FOLDER (the PG data folder) and DB_BACKUPS_FOLDER (the backups location). | |
| # It stops the immich stack then make the backup by zipping the db data to a tar file. | |
| #### | |
| set -a | |
| source .env |
| import com.fasterxml.jackson.core.Version; | |
| import com.fasterxml.jackson.databind.AnnotationIntrospector; | |
| import com.fasterxml.jackson.databind.introspect.Annotated; | |
| import com.fasterxml.jackson.databind.introspect.AnnotatedMember; | |
| import com.fasterxml.jackson.databind.module.SimpleModule; | |
| import java.lang.annotation.Annotation; | |
| basename $(curl -Ls -o /dev/null -w %{url_effective} https://github.com/<user>/<repo>/releases/latest) |
| import com.fasterxml.jackson.databind.ObjectReader; | |
| import com.fasterxml.jackson.dataformat.avro.AvroMapper; | |
| import com.fasterxml.jackson.dataformat.avro.AvroSchema; | |
| import io.confluent.kafka.serializers.AbstractKafkaAvroDeserializer; | |
| import io.confluent.kafka.serializers.KafkaAvroDeserializerConfig; | |
| import lombok.SneakyThrows; | |
| import org.apache.avro.Schema; | |
| import org.apache.kafka.common.errors.SerializationException; | |
| import org.apache.kafka.common.serialization.Deserializer; |
| import io.opentracing.log.Fields | |
| import io.opentracing.tag.Tags | |
| import io.opentracing.util.GlobalTracer | |
| import org.aspectj.lang.ProceedingJoinPoint | |
| import org.aspectj.lang.annotation.Around | |
| import org.aspectj.lang.annotation.Aspect | |
| import org.springframework.stereotype.Component | |
| import reactor.core.publisher.Mono | |
| chattr +i /mountpoint # will prevent writes for /mountpoint, but not prevent mounting |