Flute777

Members
  • Posts

    3
  • Joined

Flute777's Achievements

Noob

Noob (1/14)

2

Reputation

  1. VirtioFS doesen't like the simlink to the true disk location that the new exclusive shares feature sets up. Unraid's VM manager automatically points to the simlink location instead of the disk location. The below changes basically bypass the (simlink) middleman and play nice with virtiofs. You can resolve this without the NFS workaround by changing the <source dir=' '/> path in your VM's XML. BEFORE <filesystem type='mount' accessmode='passthrough'> <driver type='virtiofs' queue='1024'/> <binary path='/usr/libexec/virtiofsd' xattr='on'> <cache mode='always'/> <sandbox mode='chroot'/> </binary> <source dir='/mnt/user/some_share_name'/> <target dir='vm_storage'/> <address type='pci' domain='0x0000' bus='0x01' slot='0x00' function='0x0'/> </filesystem> AFTER <filesystem type='mount' accessmode='passthrough'> <driver type='virtiofs' queue='1024'/> <binary path='/usr/libexec/virtiofsd' xattr='on'> <cache mode='always'/> <sandbox mode='chroot'/> </binary> <source dir='/mnt/cache_ssd/some_share_name'/> <target dir='vm_storage'/> <address type='pci' domain='0x0000' bus='0x01' slot='0x00' function='0x0'/> </filesystem>
  2. Same thing happened to me today. Resolved (perhaps temporarily) by disabling and re-enabling docker via WebUI.
  3. Here is another to add to the list. https://github.com/White-Raven/PowerEdge-shutup This script makes a genuine effort at automatic control and uses input from multiple sensors. I have been using it on a Dell R520 for a few months now. I would love to see integration of this or better scripts into the IPMI Tool plugin.