Linux & Android - copy files using ADB instead of MTP

Published on Author admin

When using MTP is too slow or is totally not working, you can use ADB to copy files from/to your Android phone via USB cable. Install Android tools on Fedora: yum install android-tools Enable debug USB mode on Android phone Connect your Android phone to PC via USB cable List connected Android devices, should show… Continue reading Linux & Android - copy files using ADB instead of MTP

Linux - reload Intel wireless card kernel module

Published on Author admin

Use lspci for displaying information about PCI buses in the system and devices connected to them, to get information about kernel modules being used: # lspci -nnk 04:00.0 Network controller [0280]: Intel Corporation Wireless 8260 [8086:24f3] (rev 3a)     Subsystem: Intel Corporation Device [8086:0130]     Kernel driver in use: iwlwifi     Kernel… Continue reading Linux - reload Intel wireless card kernel module

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