Running nested VMware ESXi host under KVM hypervisor

Published on Author admin

Prerequisites: hardware support for VT-x enabled nested virtualization for KVM Use below command to create KVM virtual machine containing VMware ESXi: virt-install --virt-type=kvm --name=vmware-esxi1 \ --ram 4096 --vcpus=4 \ --virt-type=kvm --hvm \ --cdrom /home/pawel/ISO/VMware/VMware-VMvisor-Installer-6.7.0.update01-10302608.x86_64.iso \ --network network:default,model=e1000 \ --graphics vnc --video qxl \ --disk pool=default,size=128,sparse=true,bus=ide,format=qcow2 \ --boot cdrom,hd --noautoconsole --force \ --cpu host-passthrough I was… Continue reading Running nested VMware ESXi host under KVM hypervisor

Running Nextcloud as Flatpak on Fedora

Published on Author admin

Download Flathub repository file: https://flathub.org/repo/flathub.flatpakrepo Open downloaded file with Software Install option Install Nextcloud app from Flathub repo: flatpak install flathub org.nextcloud.Nextcloud List installed Flatpack apps: flatpak list Run Nextcloud app: flatpak run org.nextcloud.Nextcloud You can also copy nextcloud.cfg config file from your previous standalone nextcloud client: cp ./.config/Nextcloud/nextcloud.cfg ./.var/app/org.nextcloud.Nextcloud/config/Nextcloud/nextcloud.cfg

Linux - increase USB mouse pooling

Published on Author admin

To increase USB polling rate under Linux: Check current value: cat /sys/module/usbhid/parameters/mousepoll #or systool -avm usbhid Change temporary: echo 2 > /sys/module/usbhid/parameters/mousepoll Then disconnect the mouse from the USB port and plug it in again To make it permanent add above line to /etc/rc.local echo 'echo 2 > /sys/module/usbhid/parameters/mousepoll' >> /etc/rc.local Values meaning: 1 -… Continue reading Linux - increase USB mouse pooling