Recent content by GeorgiL

  1. G

    VM read/write optimization

    Greetings, I'm trying to analyze and optimize read and write performance of a VM which is performing the role of NAS and has control over some of the storage. Setup is as following Virtual Environment 5.3-12 VM config (some parts removed): balloon: 0 boot: dcn bootdisk: scsi0 cores: 2 cpu...
  2. G

    LXC user mappings

    Greetings, My question is related to user mapping of unprivileged container to be able to write to NFS share attached to host. As far as i understand I need to map a user from that container to root user on the host. However what worries me is that this same user within container runs multiple...
  3. G

    Stuck on shutdown

    Been an old topic but there is new information about it. I did update my PVE (but we are still speaking for PVE 5.3, not 5.4) as you mentioned and did use a hookscript and it was working fine until I discovered another case where PVE fails to proceed with shutdown, probably again because of NFS...
  4. G

    Stuck on shutdown

    This is new, clean install of PVE 5.3 mid January 2019 and its been allowed to update from security repo: root@vm:~# pveversion -v proxmox-ve: 5.3-1 (running kernel: 4.15.18-9-pve) pve-manager: 5.3-5 (running version: 5.3-5/97ae681d) pve-kernel-4.15: 5.2-12 pve-kernel-4.15.18-9-pve: 4.15.18-30...
  5. G

    Stuck on shutdown

    Few things: - examples folder does not exist for me for some reason, but i did find this: https://code.forksand.com/proxmox/pve-docs/src/branch/master/examples/guest-example-hookscript.pl - I made following script: use strict; use warnings; print "GUEST HOOK: " . join(' ', @ARGV). "\n"; my...
  6. G

    openSUSE containers problem

    Greetings, Is it me or both templates for openSUSE 42.3 and Leap 15.0 appear kind of broken - Leap 15.0 is fully inaccessible via console or ssh - console is literally empty just with marker for typing and Leap 42.3 does load a console, refuse root login, sometimes stuck while typing password...
  7. G

    Stuck on shutdown

    Greetings In Proxmox I had to perform a shutdown recently and the system did not shutdown and was not accessible from web interface. When I connected to the server with display it was stuck on "reached target shutdown". I noticed that before that there was a message along those lines [FAILED]...
  8. G

    Mounting VM lvm-thin image in lxc

    What if I mount that partition as loop device and read-only, within Proxmox and then bind mount that in LXC? PMS within the LXC doesn't need write access to that data, it just need to be able to see and read the multimedia from it. I did some testing with that but it seems, once partition is...
  9. G

    Mounting VM lvm-thin image in lxc

    I will look into that. I wonder if it is going to work - after all that same partition is technically been used by the VM and the LXC simultaneously? It is expected for the LXC to do just reads but not guaranteed and VM is focused on writes.
  10. G

    Mounting VM lvm-thin image in lxc

    Greetings! I'm trying to mount VM's disk image in LXC. Disk of interest is listed as following with fdisk -l Disk /dev/mapper/pve-vm--100--disk--0: 200 GiB, 214748364800 bytes, 419430400 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O...
  11. G

    Shared storage between VM and LXC

    Let me describe my use case more precisely. Currently I have a VM with Rockstor (a NAS system) which also have rock-ons (simply addons) and in this case it have Plex Media Server (or PMS) as an addon. Rockstor addons are docker containers based on official documentation. PMS transcoding can be...
  12. G

    Shared storage between VM and LXC

    Greetings, Is it possible to create a container with direct access to the storage of another VM without stuff like network sharing directories between both?