@RobWhalley I think in the beginning i had that option enabled in my backup jobs, but found it was a hassle to move VMs between hosts with it on so i turned it off for all backups. Might be why my jobs worked because i had already done that switch in the past.

marcoi
@marcoi
Regular IT Guy with a passion for hardware and all things tech.
Best posts made by marcoi
-
RE: XO Community edition backups dont work as of build 6b263
-
RE: XO Community edition backups dont work as of build 6b263
posted in the other thread as well but Xen Orchestra, commit 1a7b5 backups are working again. I tested configure and vm backups. They are being backup to NFS share.
-
RE: XCP-ng 8.3 updates announcements and testing
updated on my three servers no issues.
-
RE: Backups started to fail again (overall status: failure, but both snapshot and transfer returns success)
try downgrading your nfs to use version 3. I think version 4.x has performance issues.
in you settings-->remote, you can edit the nfs mount for backups and add in the -o options section.I dont know the exact command but you can try using nfsvers=3 and see if that helps.
-
RE: XO Community edition backups dont work as of build 6b263
scratch that prior comment. My backups are all setup as delta backup with schedule 2nd run that forces full backup. So i believe both are working correctly.
if you can also try deleting all the backup snapshots of the VMs in the backup and running full backup then the delta backup jobs.
-
RE: XO (self build) tasks spamming
looks good
Xen Orchestra, commit 384bb
Master, commit 384bbthanks for quick fix
Latest posts made by marcoi
-
RE: Feature request add open in new tab to XO GUI
@tc-atwork thanks for post, i wasnt able to get xo6 setup as i havent had time to play with it. I look forward to when it released. For now I just keep using xo-lite to open the console window.
-
RE: Feature request add open in new tab to XO GUI
I will have to figure out how to get XO 6 up and running.
-
RE: Feature request add open in new tab to XO GUI
just for reference. Under console tab in XO you have all the extra around the display
which is fine for quick access to do something but becomes a hassle when trying to work with the vm display.XO lite open in a new tab is clean interface. And it expands with the broswer.
PS looking forward to the copy/paste feature being implemented.
-
RE: Feature request add open in new tab to XO GUI
@probain I tried that just now, not really doing anything in XO. I am under console tab on a VM.
On a side note, seem like the url for the new tab function in xo lite is
https://MasterHostIP/#/vm/5de057e5-97a0-937f-15d6-ef8793c54331/console?ui=0
Maybe because of the IP being the host and not XO it may be harder to implement as a button on XO? -
Feature request add open in new tab to XO GUI
I found under XO lite the open console in new tab an awesome feature. Its better then remote desktop especially for linux based VMs. I would like a button to provide the same feature in XO if possible.
Maybe somewhere in this group of buttons.
-
RE: No mem stats under Windows Server
Mine seems to work okay.
Xen Orchestra, commit 1c01f
Master, commit 1c01f -
RE: XCP-ng 8.3 updates announcements and testing
updated on my three servers no issues.
-
RE: PCI device doesn't show in XO or xe pci-list
so it seems like when i make the igpu pass through, i see the starting lines of xcp-ng but it never gets to the console screen. which is what i expect.
When I add the pcie devices (igpu/hdmi audio) to a vm and start it up, I get and update to the screen and it shows a red number counting which is part of the console.
So it seems that when the VM re-initializes the igpu, dom/xcp retakes it over.
I confirmed that by using the keyboard to move around and it reshowing the console and filling the missing details as i move around.
So why is the dom/xcp retaking the video device over again when it should be blocked from accessing it? -
RE: PCI device doesn't show in XO or xe pci-list
is there anyway to block igpu from being used by xcp-ng during boot? I have it setup for pass through but it fails under the VM. I think it because xcp-ng still displaying the console screen and does not want to give it up.
-
Bash script to work with pci passthrough on host
I wrote a simple script to help those of us who want to do pci passthrough and running into xe limits.
Not responsible for issues/use/etc... use at own risk.
Feel free to github/maintain it, i wont be planning on doing any more on it.
I did this to work with pci passthrough and issues i been having while testing a new build. I found out that adding new devices while enabled pci for devices showing in xe can lead to issues and having to do pci hide reset. So i added that. I also added a enable pci device that is on xe so you can do it via app on host or still do it on gui using XO. Finally added a menu to add non xe pci device directly to vm.
Vm list is my list so you need to update that with what you want to enable.Hope this helps someone else
So grab the code, save it to /root/pcishare.sh and chmod +x it to run it.
This is on the host directly.#!/bin/bash # pcieDevices[x] is the name of the device # pcieDevicesID[x] is the id of the device from lspci # pcieDevicesUUID[x] is uuid from xe list if available ######## Add Devices to check and make passthrough ######################### #format pcieDevices[x]='' #make sure to use single quotes are special chars will mess up. ############################################################################## pcieDevices[0]='USB controller: ASMedia Technology Inc. ASM2142/ASM3142 USB 3.1 Host Controller' pcieDevices[1]='VGA compatible controller: NVIDIA Corporation GK208 [GeForce GT 720] (rev a1)' pcieDevices[2]='Audio device: NVIDIA Corporation GK208 HDMI/DP Audio Controller (rev a1)' pcieDevices[3]='SATA controller: JMicron Technology Corp. JMB58x AHCI SATA controller' ############################################################################### #Startup pcieCount=${#pcieDevices[@]} #load lspci into array lspciDevices##### mapfile -t lspciDevices < <(lspci) ##################################################################################### #function to request a reboot function rebootPC { read -n 1 -p "Need to reboot host. Y/N to reboot?: " doReboot case $doReboot in y|Y ) reboot;; *|n|N ) clear; echo "please reboot"; exit;; esac } ###################################################################################### # remove old hide list / request reboot function resetDOMPCIE { echo "" echo " Clearing out xen-pciback list " /opt/xensource/libexec/xen-cmdline --delete-dom0 xen-pciback.hide echo "Completed" rebootPC } ###################################################################################### # List variables to confirm which pcie the script is working with function confirmPCIList { clear echo "" echo "***************************************" for (( j=0; j<${#pcieDevices[@]}; j++ )); do echo "*${pcieDevices[$j]}" done echo "***************************************" exit } ###################################################################################### function enablePCI { clear echo "**************************************************" echo "* Please select Index to enable pci passthrough *" echo "**************************************************" echo "" for (( j=0; j<${#pcieDevices[@]}; j++ )); do if [ -n "${pcieDevicesUUID[$j]}" ]; then echo "Index $j: ${pcieDevicesUUID[$j]}-${pcieDevicesID[$j]}:${pcieDevices[$j]}" fi done echo "" echo "" read -n 1 -p "Please make a selection or (E)xit: " menuEnablePCIEchoice; case $menuEnablePCIEchoice in [0-99] ) echo "" xe pci-disable-dom0-access uuid=${pcieDevicesUUID[$menuEnablePCIEchoice]} echo "" rebootPC ;; e|E ) exit;; * ) exit ;; esac } ####################################################################################### function addPCIEVM { clear echo "********************************************************" echo "* Please select Index to enable pci passthrough on VM *" echo "********************************************************" echo "" for (( j=0; j<${#pcieDevices[@]}; j++ )); do if [ -z "${pcieDevicesUUID[$j]}" ]; then echo "Index $j: ${pcieDevicesUUID[$j]}-${pcieDevicesID[$j]}:${pcieDevices[$j]}" fi done echo "" echo "" read -n 1 -p "Please make a selection or (E)xit: " menuAddPCIEchoice; case $menuAddPCIEchoice in [0-99] ) echo "" read -p "Please provide the VM UUID: " vmID; echo "" xe vm-param-set other-config:pci=0/0000:${pcieDevicesID[$menuAddPCIEchoice]} uuid=$vmID echo "" ;; e|E ) exit;; * ) exit ;; esac } ###################################################################################### function setPCIE { ######################################### # Fill in pci ID into pcieDevicesID/UUID # Offer to toggle devices and add non xe device to VM ######################################### clear # build list for (( i=0; i<"${#lspciDevices[@]}"; i++ )); do for (( j=0; j<${#pcieDevices[@]}; j++ )); do if [[ ${lspciDevices[$i]} == *"${pcieDevices[$j]}"* ]]; then pcieDevicesID[$j]="${lspciDevices[$i]%% *}" tempUUID="" tempUUID=$(xe pci-list |grep -B 3 ${pcieDevicesID[$j]} |head -n 1| cut -d ':' -f2 | tr -d ' ') if [ -z "$tempUUID" ]; then echo "Index $j UUID not found for Device: ${pcieDevicesID[$j]} - ${pcieDevices[$j]}" else pcieDevicesUUID[$j]="$tempUUID" echo "Index $j Device:${pcieDevicesUUID[$j]}: ${pcieDevicesID[$j]} - ${pcieDevices[$j]} " fi fi done done echo "**************************************************" echo "* Would you like to: *" echo "* (E)nable pcie device for passthrough *" echo "* (A)dd pcie directly to VM for non UUID *" echo "* (Q)uit *" echo "**************************************************" read -n 1 -p "Please make a selection: " menuPCIEchoice; case $menuPCIEchoice in e|E ) enablePCI;; a|A ) addPCIEVM;; q|Q ) exit ;; * ) exit ;; esac } ################################################## # Menu - App choices below ################################################# clear echo "****************************************" echo "* Please make sure to add your devices *" echo "* to the varible list before running *" echo "* *" echo "* Menu *" echo "* Select options below to continue *" echo "* 1. Reset PCIE hide list and DOM *" echo "* 2. Show PCIE variable list *" echo "* 3. Set pci devices *" echo "* Any other key to exit *" echo "****************************************" read -n 1 -p "Please make a selection: " menuChoice; case $menuChoice in 1 ) resetDOMPCIE;; 2 ) confirmPCIList;; 3 ) setPCIE ;; 4 ) echo "" ;; * ) clear ; exit ;; esac